Page 3
Limited Warranty “Products manufactured by CSI are warranted by CSI to be free from defects in materials and workmanship under normal use and service for twelve months from the date of shipment unless otherwise specified in the corresponding product manual. (Product manuals are available for review online at www.campbellsci.com.) Products not manufactured by CSI, but that are resold by CSI, are warranted only to the limits extended by the original manufacturer.
Page 4
SCIENTIFIC, INC., phone (435) 227-9000. After an application engineer determines the nature of the problem, an RMA number will be issued. Please write this number clearly on the outside of the shipping container. Campbell Scientific’s shipping address is: CAMPBELL SCIENTIFIC, INC.
Page 5
Periodically (at least yearly) check electrical ground connections. • WHILE EVERY ATTEMPT IS MADE TO EMBODY THE HIGHEST DEGREE OF SAFETY IN ALL CAMPBELL SCIENTIFIC PRODUCTS, THE CUSTOMER ASSUMES ALL RISK FROM ANY INJURY RESULTING FROM IMPROPER INSTALLATION, USE, OR MAINTENANCE OF TRIPODS, TOWERS, OR ATTACHMENTS TO TRIPODS AND TOWERS SUCH AS SENSORS, CROSSARMS, ENCLOSURES, ANTENNAS, ETC.
Table of Contents PDF viewers: These page numbers refer to the printed version of this document. Use the PDF reader bookmarks tab for links to specific sections. 1. Introduction ..............1 2. Precautions ..............1 3. Initial Inspection ............1 Ships With ....................
Page 8
Wind Speed Specifications ..............7 6-2. Wind Direction Specifications ............8 6-3. Physical Specifications ................ 8 7-1. Connections to Campbell Scientific Dataloggers ......11 7-2. Wind Speed Multiplier ..............12 7-3. Parameters for Wind Direction ............13 B-1. Wiring for Example Programs ............B-1 CRBasic Examples B-1.
Upon receipt of the wind monitor, inspect the packaging and contents for damage. File damage claims with the shipping company. Immediately check package contents against the shipping documentation (see Section 3.1, Ships With ). Contact Campbell Scientific about any (p. 2) discrepancies.
Wind Monitor Series The model number and cable length are printed on a label at the • connection end of the cable. Check this information against the shipping documents to ensure the expected product and cable length are received. Ships With...
Wind Monitor Series Wind Monitor pn 17953 NU-RAIL® CM200 Series Crossarm Mounting Pipe (supplied with sensor) FIGURE 4-1. Wind monitor mounted to a CM200 Series Crossarm with pn 17953 NU-RAIL® Step 2 — Use SCWin Short Cut to Program Datalogger...
Page 12
Wind Monitor Series When Short Cut opens, select New Program. Select the Datalogger Model and enter the Scan Interval (default of 5 seconds is OK for most applications). Click Next.
Page 13
Wind Monitor Series Under Available Sensors and Devices, select your sensor, and select the Sensors | Meteorological | Wind Speed & Direction folder. Select 05103 Wind Speed & Direction Sensor, 05106 Wind Speed & Direction Sensor, or 05305-AQ Wind Speed & Direction Sensor. Click to move the selection to the Selected device window.
The R.M. Young Instruction Manual includes additional information on the operating principles, installation, and maintenance of the sensor. The wind monitors are manufactured by R.M. Young and cabled by Campbell Scientific for use with our dataloggers. Lead lengths for the wind monitors are specified when the sensors are ordered.
Compatible with the LLAC4 4-channel Low Level AC Conversion • Module, which increases the number of anemometers one datalogger can measure • Compatible with Campbell Scientific CRBasic dataloggers: CR6, CR200(X) series, CR800, CR850, CR1000, CR3000, CR5000, and CR9000(X) TABLE 6-1. Wind Speed Specifications 05108...
Wind Monitor Series Installation Siting Locate wind sensors away from obstructions such as trees or buildings. Generally, there should be a horizontal distance of at least ten times the height of the obstruction between the Wind Monitor and the obstruction. If the sensors need to be mounted on a roof, the height of the sensors above the roof, should be at least 1.5 times the height of the building.
Wind Monitor Series CM220 CM200-Series Crossarm FIGURE 7-1. CM220 Right Angle Mounting Kit mounted to a crossarm FIGURE 7-2. The CM216 allows the wind monitor to mount atop a tripod...
Wind Monitor Series Wiring Connections to Campbell Scientific dataloggers are given in TABLE 7-1. When Short Cut software is used to create the datalogger program, the sensor should be wired to the channels shown in the wiring diagram created by Short Cut.
Wind Monitor Series import Short Cut code into CRBasic Editor to create or add to a customized program, follow the procedure in Appendix A, Importing Short Cut Code Into CRBasic Editor . Programming basics for CRBasic dataloggers are (p. A-1) provided in the following sections.
Wind Monitor Series band. To overcome this problem all program examples use a delay of 20 ms (20,000 μs) and set any negative wind direction values to 0.0: If WindDir < 0, then WindDir = 0.0. The excitation voltage, range codes, and multipliers for the different datalogger types are listed in TABLE 7-3.
Wind Monitor Series Often Campbell Scientific recommends factory replacement of the NOTE bearings and potentiometer. Refer to the Assistance page of this document for the procedure of acquiring a Returned Materials Authorization (RMA). Mechanically-adept users may choose to replace the bearings or potentiometer themselves. Instructions for replacing the bearings and potentiometer are given in R.M.
Wind Monitor Series 10. References Gill, G.C., 1973: The Helicoid Anemometer Atmosphere, II, 145–155. Baynton, H.W., 1976: Errors in Wind Run Estimates from Rotational Anemometers Bul. Am. Met. Soc., vol. 57, No. 9, 1127–1130. The following references give detailed information on siting wind speed and wind direction sensors.
Appendix A. Importing Short Cut Code Into CRBasic Editor This tutorial shows: • How to import a Short Cut program into a program editor for additional refinement How to import a wiring diagram from Short Cut into the comments of •...
Page 26
Appendix A. Importing Short Cut Code Into CRBasic Editor...
Appendix B. Example Programs The following programs measure the wind monitor 05103 every 5 seconds, and store mean wind speed, unit vector mean direction, and standard deviation of the direction every 60 minutes. Wiring for the examples is given in TABLE B-1.
Appendix B. Example Programs B.2 CR6 Example Program CRBasic Example B-2. CR6 Example Program 'CR6 Series 'Declare Variables and Units Public BattV Public PTemp_C Public WS_ms Public WindDir Units BattV=Volts Units PTemp_C=Deg C Units WS_ms=meters/second Units WindDir=degrees 'Define Data Tables DataTable(Hour,True,-1) DataInterval(0,60,Min,10) WindVector(1,WS_ms,WindDir,FP2,False,0,0,0)
Appendix B. Example Programs B.3 CR200(X) Example Program CRBasic Example B-3. CR200(X) Example Program 'CR200/CR200X Series 'Declare Variables and Units Public BattV Public WS_ms Public WindDir Units BattV=Volts Units WS_ms=meters/second Units WindDir=degrees 'Define Data Tables DataTable(Hour,True,-1) DataInterval(0,60,Min) WindVector(WS_ms,WindDir,False,0,0) FieldNames("WS_ms_S_WVT,WindDir_D1_WVT,WindDir_SD1_WVT") EndTable 'Main Program BeginProg 'Main Scan...
Appendix C. Wind Direction Sensor Orientation C.1 Determining True North and Sensor Orientation Orientation of the wind direction sensor is done after the datalogger has been programmed, and the location of True North has been determined. True North is usually found by reading a magnetic compass and applying the correction for magnetic declination;...
Appendix C. Wind Direction Sensor Orientation FIGURE C-1. Magnetic declination for the contiguous United States (2015) FIGURE C-2. Declination angles east of True North are subtracted from 0 to get True North...
Measurement Theory It is not necessary to understand the concepts in this section for the general operation of the 05103 with Campbell Scientific’s datalogger. FIGURE D-1. 05103 potentiometer in a half bridge circuit The BRHalf CRBasic instruction outputs a precise excitation voltage (V...
Page 36
Appendix D. Wind Direction Measurement Theory...
Page 38
Santo Domingo, Heredia 40305 SOUTH AFRICA COSTA RICA • cleroux@csafrica.co.za • info@campbellsci.cc www.campbellsci.co.za www.campbellsci.cc Campbell Scientific Southeast Asia Co., Ltd. Campbell Scientific Ltd. 877/22 Nirvana@Work, Rama 9 Road Campbell Park Suan Luang Subdistrict, Suan Luang District 80 Hathern Road Bangkok 10250...
Need help?
Do you have a question about the Wind Monitor Series and is the answer not in the manual?
Questions and answers