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:
and
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!
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
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 
Of course, I should have seen that! Collection built up over years mostly off ebay, buying parts of systems to keep others going.