Difference between revisions of "WERC's historic PIR measurements"
Jump to navigation
Jump to search
imported>Ekyoucha (Created page with "EKY Notes: *In July 2017 We reinstalled the radiometers at UKmet and Imn Met. I had them sent back to Eppley for recalibration/repair. I had Rob make up some new cables fo...") |
imported>Ekyoucha |
||
Line 3: | Line 3: | ||
*In July 2017 We reinstalled the radiometers at UKmet and Imn Met. I had them sent back to Eppley for recalibration/repair. I had Rob make up some new cables for the radiometers in 2016. They were wired incorrectly, and nothing seemed to be working right. He had them wired to correct for "Dome Temperature" (optional) instead of "Case Temperature" (required). He originally made them for case temperature, but had Allen rewire them for the dome temperature adjustment. Nothing was working properly. Allen and I made new cables in 2017 and wired them properly, things worked. | *In July 2017 We reinstalled the radiometers at UKmet and Imn Met. I had them sent back to Eppley for recalibration/repair. I had Rob make up some new cables for the radiometers in 2016. They were wired incorrectly, and nothing seemed to be working right. He had them wired to correct for "Dome Temperature" (optional) instead of "Case Temperature" (required). He originally made them for case temperature, but had Allen rewire them for the dome temperature adjustment. Nothing was working properly. Allen and I made new cables in 2017 and wired them properly, things worked. | ||
− | *Upon reviewing an old program | + | *Upon reviewing an old program for FBmet I noticed the PIRs program was using "dome temperature" |
+ | |||
+ | public rad_mV(MUX1_QTY) | ||
+ | alias rad_mV(1) = TLW_mV | ||
+ | alias rad_mV(2) = ALW_mV | ||
+ | alias rad_mV(3) = ISW_mV | ||
+ | alias rad_mV(4) = RSW_mV | ||
+ | Alias rad_mV(5) = Net_rad | ||
+ | |||
+ | Public radiation(MUX1_QTY) | ||
+ | Units radiation() = wpm2 | ||
+ | Alias radiation(1) = TLW | ||
+ | Alias radiation(2) = ALW | ||
+ | Alias radiation(3) = ISW | ||
+ | Alias radiation(4) = RSW | ||
+ | 'alias radiation(5) = Net | ||
+ | |||
+ | Public tc(2) | ||
+ | Units tc() = degC | ||
+ | 'Units tc(2) = degC | ||
+ | Alias tc(1) = TLW_dome | ||
+ | Alias tc(2) = ALW_dome |
Revision as of 14:24, 2 May 2019
EKY Notes:
- In July 2017 We reinstalled the radiometers at UKmet and Imn Met. I had them sent back to Eppley for recalibration/repair. I had Rob make up some new cables for the radiometers in 2016. They were wired incorrectly, and nothing seemed to be working right. He had them wired to correct for "Dome Temperature" (optional) instead of "Case Temperature" (required). He originally made them for case temperature, but had Allen rewire them for the dome temperature adjustment. Nothing was working properly. Allen and I made new cables in 2017 and wired them properly, things worked.
- Upon reviewing an old program for FBmet I noticed the PIRs program was using "dome temperature"
public rad_mV(MUX1_QTY) alias rad_mV(1) = TLW_mV alias rad_mV(2) = ALW_mV alias rad_mV(3) = ISW_mV alias rad_mV(4) = RSW_mV Alias rad_mV(5) = Net_rad
Public radiation(MUX1_QTY) Units radiation() = wpm2 Alias radiation(1) = TLW Alias radiation(2) = ALW Alias radiation(3) = ISW Alias radiation(4) = RSW 'alias radiation(5) = Net
Public tc(2) Units tc() = degC 'Units tc(2) = degC Alias tc(1) = TLW_dome Alias tc(2) = ALW_dome