RS-485 milliamp conversion
RS-485 milliamp conversion
(OP)
I have a flex IO that is reading 4 weather instruments and reporting the data in milliamps, the data logger that it is sending the data to cannot do the calculation to convert 2 of the milliamp signals to w/m^2 and the other 2 to a temperature in Fahrenheit. does anyone know of a device I could use in between the IO and the data logger to do the calculation and send it to the data logger in W/m^2 and Fahrenheit? thanks in advance
RE: RS-485 milliamp conversion
TTFN (ta ta for now)
I can do absolutely anything. I'm an expert! https://www.youtube.com/watch?v=BKorP55Aqvg
FAQ731-376: Eng-Tips.com Forum Policies forum1529: Translation Assistance for Engineers Entire Forum list http://www.eng-tips.com/forumlist.cfm
RE: RS-485 milliamp conversion
Keith Cress
kcress - http://www.flaminsystems.com
RE: RS-485 milliamp conversion
ADAM-6017
RE: RS-485 milliamp conversion
Presumably the weather device has 4-20mA outputs and is internally scaling each 4-20mA to some range in some engineering units. The temperature signal values are likely scaled in units Deg C, not the desired Deg F.
The datalogger has 4-20mA inputs, receives the 4-20mA signals and saves the data, albeit with limited range scaling conversion ability.
Dataloggers typically export data to a .csv file. The subject line mentions RS-485 - the serial export function? The exported data values, from the datalogger, are reported as Deg C values in the .csv file, not Deg F.
The units conversion from the original Deg C to the desired Deg F is done in the spreadsheet used the view the data, not in the 4-20mA signal.
So I don’t get the need for a converter. Tell me again what the devices are; and which signal they have and where the conversion is needed.
RE: RS-485 milliamp conversion
Keith Cress
kcress - http://www.flaminsystems.com
RE: RS-485 milliamp conversion
The loggers I have used actually did allow me to scale the input to units I wanted so I could read the data directly.
RE: RS-485 milliamp conversion
((GHI or POA output /1000) *4) *100 = W/m2
((BOM or Ambient output/1000)-4)/16) *130=(-40) = Deg C Temp
So that the data the manufacturer’s logger gets is in the w/m2 and Deg C temp format. Someone mentioned the ADAM 6017 and I am going to look into that one. Thank you guys for your insight
RE: RS-485 milliamp conversion
OR
To use a logger data one has to actually look at the data in it. To do that you have to use some other program that understands the logged data format. That program is actually where the translation should be. That program also has to know and display the time correctly so the displayed data has temporal relevance. Either find out how to scale the data in that program or simply use a any spread sheet program to create it. Excel or Open Office Calc are excellent examples.
I would seriously oppose doing this electrically. Doing it electrically considerably demotes the system reliability and adds considerably to the maintenance since even more stuff can lose calibration and will need regular calibration.
Keith Cress
kcress - http://www.flaminsystems.com
RE: RS-485 milliamp conversion
TTFN (ta ta for now)
I can do absolutely anything. I'm an expert! https://www.youtube.com/watch?v=BKorP55Aqvg
FAQ731-376: Eng-Tips.com Forum Policies forum1529: Translation Assistance for Engineers Entire Forum list http://www.eng-tips.com/forumlist.cfm
RE: RS-485 milliamp conversion
Link
But there's no documentation (that I could find), so it isn't clear whether the app allows scaling of the 4-20mA inputs to the datalogger, or not.
If the app doesn't do scaling, then I'm in the group that says that if for some reason, the application that uses this data can't re-scale the data, then replacing the datalogger with one that allows you to scale the data to user engineering units is probably the least costly way to go.
There are devices like Red Lion's Data Station Plus that has configurable COM ports and can be either/and/or a Modbus Master or slave simultaneously and has provision for scripting that can do data scaling, but the learning curve is fairly steep if industrial control systems integration is not your day job.
Tell us again why the app that gets this data can't re-scale the data to your desired engineering units?
RE: RS-485 milliamp conversion