WeatherDuino Forum
New Station Using Vector Instruments - Printable Version

+- WeatherDuino Forum (https://www.meteocercal.info/forum)
+-- Forum: Weather Stations - WeatherDuino Pro2 Line (https://www.meteocercal.info/forum/forum-4.html)
+--- Forum: General Talking (https://www.meteocercal.info/forum/forum-23.html)
+--- Thread: New Station Using Vector Instruments (/thread-1153.html)



New Station Using Vector Instruments - JT118 - 01-07-2017

New Station Using Vector Instruments; http://www.windspeed.co.uk/ws/index.html

Using Instruments from this setup bought off ebay: (manufactured 1990's but hardly used)

   

And fit to Weatherduino system along these lines;

   

Using:

.pdf b_a100lk_a100l2.pdf Size: 46,62 KB  Downloads: 338


and

.pdf W200P Windvane.pdf Size: 96,81 KB  Downloads: 324



RE: New Station Using Vector Instruments - JT118 - 01-07-2017

My Questions are:

Will the A100L2, which I have, work?

See spec sheet above and:

   

   

I think it should; it appears that the A100L2 has multiple outputs: mv , mA etc as well as frequency, similar to Inspeed. Wiring as below:

http://www.vectorinstruments.co.uk/ws/index.php?option=faq&task=viewfaq&artid=32&Itemid=5

W200P is just a standard potentiometer output so should be OK.


RE: New Station Using Vector Instruments - werk_ag - 02-07-2017

(01-07-2017, 12:21)JT118 Wrote:  My Questions are:

Will the A100L2, which I have, work?

I think it will work. You will let me know! Smile

Supposing you are using the latest TX software, search for this:

Code:
// --- Vector A100LK ---
#if (WSpeedSensor_Type == 70)   // Vector Intruments, model A100LK : Speed Pulse/sec 0.514444 m/s
#define ClickPerRev  10
#define FORM_FACTOR  0.5144
#endif

immediately after the #endif add this:

Code:
#if (WSpeedSensor_Type == 71)   // Vector Intruments, model A100L2 : Speed Pulse/sec 0.514444 m/s
#define ClickPerRev  13
#define FORM_FACTOR  0.5144
#endif

Now, on the user configurable settings, choose 71 as Anemometer type

Code:
#define WSpeedSensor_Type 71

Waiting to hear from you. If it works, this anemometer model will be added to the list of supported weather instruments.

Regards


RE: New Station Using Vector Instruments - JT118 - 02-07-2017

It works, thank you as always.


RE: New Station Using Vector Instruments - werk_ag - 02-07-2017

Thank you JT118

Please keep monitoring the readings, and if possible compare the wind average speed with the readings of the other weather stations you have.

Theoretically the WeatherDuino Pro2 system can work with any pulse anemometer, provided we know her specifications. However, allowing the user to choose among a list of predefined and tested types makes things easier.


RE: New Station Using Vector Instruments - uncle_bob - 03-07-2017

Those are pro looking instruments there JT118


RE: New Station Using Vector Instruments - danner - 04-07-2017

Very cool!


RE: New Station Using Vector Instruments - JT118 - 04-07-2017

I assume this would work too; ( I also have got an A100R )

// --- Vector A100LK ---
#if (WSpeedSensor_Type == 70)   // Vector Intruments, model A100LK : Speed Pulse/sec 0.514444 m/s
#define ClickPerRev  10
#define FORM_FACTOR  0.5144
#endif

// --- Vector A100L2 ---
#if (WSpeedSensor_Type == 71)   // Vector Intruments, model A100L2 : Speed Pulse/sec 0.514444 m/s
#define ClickPerRev  13
#define FORM_FACTOR  0.5144
#endif

// --- Vector A100R ---
#if (WSpeedSensor_Type == 72)   // Vector Intruments, model A100R : Speed Pulse/sec 0.514444 m/s
#define ClickPerRev  1
#define FORM_FACTOR  0.5144
#endif

http://www.windspeed.co.uk/ws/index.php?option=displaypage&Itemid=48&op=page


RE: New Station Using Vector Instruments - werk_ag - 04-07-2017

I'm afraid that it should be:

Code:
// --- Vector A100R ---
#if (WSpeedSensor_Type == 72)   // Vector Intruments, model A100R : Speed Pulse/sec 1.25 m/s
#define ClickPerRev  1
#define FORM_FACTOR  1.25
#endif

Your collection of weather instruments is impressive. The Weatherduino Pro2 system is thankful for that  Smile


RE: New Station Using Vector Instruments - JT118 - 05-07-2017

(04-07-2017, 23:07)Werk_AG Wrote:  I'm afraid that it should be:

Code:
// --- Vector A100R ---
#if (WSpeedSensor_Type == 72)   // Vector Intruments, model A100R : Speed Pulse/sec 1.25 m/s
#define ClickPerRev  1
#define FORM_FACTOR  1.25
#endif

Your collection of weather instruments is impressive. The Weatherduino Pro2 system is thankful for that  Smile

Of course, I should have seen that! Collection built up over years mostly off ebay, buying parts of systems to keep others going.