Specifications
Table Of Contents
- Revision and Copyright Information
- Warranty and Assistance
- Table of Contents
- CNR4 Net Radiometer
- 1. General Description
- 2. Sensor Specifications
- 3. Installation
- 4. Using the Optional CNF4 Heater/Ventilator Unit
- 5. Using the CNR4 in the Four Separate Components Mode
- 5.1 Measuring Short-wave Solar Radiation with Pyranometer
- 5.2 Measuring Long-wave Far Infrared Radiation with Pyrgeometer
- 5.3 Measuring CNR4 Temperature with Thermistor
- 5.4 Calculation of Albedo
- 5.5 Calculation of Net Short-wave Radiation
- 5.6 Calculation of Net Long-wave Radiation
- 5.7 Calculation of Net (Total) Radiation
- 6. Wiring
- 7. Datalogger Programming
- 8. Troubleshooting
- 9. Maintenance and Recalibration
- Appendix A. CNR4 Performance and Measurements under Different Conditions
- Appendix B. CNF4 Heater/Ventilator
- Appendix C. CR3000 Program for Measuring Pt-100 Temperature Sensor
- Campbell Scientific Contact Information

CNR4 Net Radiometer
'CR5000 Series Datalogger
'
'CNR4 program
'This program measures CNR4 four-component net radiometer
'This program also measures the thermistor inside the CNR4
'
'User must enter the sensitivity values for all four probes in the program and save/compile
'prior to downloading it to the datalogger.
'Search for the text string "unique" to find places to enter the sensitivity values.
'
'Wiring Instructions
'
'ANALOG CHANNELS
'1H CNR4 Pyranometer Upper signal (red)
'1L CNR4 Pyranometer Upper signal reference (blue)
'gnd jumper to 1L
'
'2H CNR4 Pyranometer Lower signal (white)
'2L CNR4 Pyranometer Lower signal reference (black)
'gnd jumnper to 2L
'
'3H CNR4 Pyrgeometer Upper signal (grey)
'3L CNR4 Pyrgeometer Upper signal reference (yellow)
'gnd jumper to 3L
'
'4H CNR4 Pyrgeometer Lower signal (brown)
'4L CNR4 Pyrgeometer Lower signal reference (green)
'gnd jumper to 4L
' CNR4 shield (clear)
'
'
'8H
'8L CNR4 thermistor signal (white)
'gnd CNR4 thermistor signal reference (black)
' CNR4 thermistor shield (clear)
'
'VOLTAGE EXCITATION
'
'VX1 CNR4 thermistor voltage excitation (red)
'
'CNR4 sensor
Public logger_temp, batt_volt
Public cnr4(4)
Alias cnr4(1) = short_up
Alias cnr4(2) = short_dn
Alias cnr4(3) = long_up
Alias cnr4(4) = long_dn
Public cnr4_T_C 'CNR4 thermistor temperature in Celcius
Public cnr4_T_K 'CNR4 thermistor temperature in Kelvin
Public long_up_corr 'Downwelling long-wave radiation with temperature correction
Public long_dn_corr 'Upwelling long-wave radiation with temperature correction
Public Rs_net 'short-wave net radiation
25










