There i a bug?
Windchill
Windchill
Hi Antoine, I saw that in the setup there is an option to calculate in every condition the heat index and the windchill. I tried to set both, but only heat index works. The windchill continues to be calculated only with temperatures below 5°C.
There i a bug?
There i a bug?
- TiToine
- Site Admin
- Messages : 3356
- Inscription : lun. mars 20, 2006 11:16 am
- Localisation : Montréal
- Contact :
Re: Windchill
What is the plugin? If your history contains already WC, HI, it's normal.
Re: Windchill
I use WS2300 plugin, and yes, the WC value is on the history, but the values are different: while the WC now is shown on history, and in presence of wind is different (more low) from out temperature, on Graph Weather it follow the value of temperature.TiToine a écrit :What is the plugin? If your history contains already WC, HI, it's normal.
- TiToine
- Site Admin
- Messages : 3356
- Inscription : lun. mars 20, 2006 11:16 am
- Localisation : Montréal
- Contact :
Re: Windchill
No, the WS2300 history. dat does not store the WC or HI. It should work...I use the WS2300 plugin and WC/HI with or without weather norms, and it works.
Re: Windchill
Uhmmmm... see this graphic:TiToine a écrit :No, the WS2300 history. dat does not store the WC or HI. It should work...I use the WS2300 plugin and WC/HI with or without weather norms, and it works.
As you can see with wind over 25-30 km/h, the line of WC is not showed... but the values on history are different:
-------------------------------------------------------------------
There are another problem (or bug) with WsWin plugin: the wind on the rose graphic is not showed correctly:
The graphic is taken from the same day.
Vous ne pouvez pas consulter les pièces jointes insérées à ce message.
Dernière modification par Andrea75 le jeu. août 14, 2008 8:52 pm, modifié 1 fois.
- jturlier
- Membre
- Messages : 3150
- Inscription : mar. août 22, 2006 8:38 am
- Localisation : 34410 Sérignan - Languedoc
- Contact :
Re: Windchill
As far as I remember windchill factor is calculated below 10°C and above -50°C
Jean
Station : VP2 Pro Console Vue + anémomètre à Ultra-sons
Logiciels : Cumulus 1.9.4 + Cumulus2SQL
Serveur local : Apache + MySQL +PHP
PC : W10
Support Audio : FR
http://meteoserignan.ddns.net

"Aide-toi d'abord toi-même et les autres t'aideront ... peut-être"
Station : VP2 Pro Console Vue + anémomètre à Ultra-sons
Logiciels : Cumulus 1.9.4 + Cumulus2SQL
Serveur local : Apache + MySQL +PHP
PC : W10
Support Audio : FR
http://meteoserignan.ddns.net

"Aide-toi d'abord toi-même et les autres t'aideront ... peut-être"
Re: Windchill
If you follow norms (that in any case are a little bit different)... but the WS2300 calculate WC in any condition (watch the history).jturlier a écrit :As far as I remember windchill factor is calculated below 10°C and above -50°C
- TiToine
- Site Admin
- Messages : 3356
- Inscription : lun. mars 20, 2006 11:16 am
- Localisation : Montréal
- Contact :
Re: Windchill
Can you send me you history generated by WSWin? The file WSXXXX.DAT
Re: Windchill
Attached here the history.dat....
There is few data on it, because the old history was corrupted, so I have had to reset it today... anyway you can see on this the value of wc that is different from temperature.
--------------------------------------------------------------
Here there is the the .dat of Wswin
There is few data on it, because the old history was corrupted, so I have had to reset it today... anyway you can see on this the value of wc that is different from temperature.
--------------------------------------------------------------
Here there is the the .dat of Wswin
Vous ne pouvez pas consulter les pièces jointes insérées à ce message.
- TiToine
- Site Admin
- Messages : 3356
- Inscription : lun. mars 20, 2006 11:16 am
- Localisation : Montréal
- Contact :
Re: Windchill
I use the following model to compute the wind chill:
WC = 13.13f+0.62f*OT-13.95f*powf(WS,0.16f)+0.486f*OT*powf(WS,0.16f);
The WC Twc computed for a temperature T gives Twc > T. It does not make sense, and internally GW set the Twc to T.
It seems HW use another model.
In all cases, I think to have WC and HI on the same graphic does not make sens.
For the wind direction WSWin encode the wind direction as integer and flush the decimal. A wind direction of 22.5 degrees is encoded as 22 degrees. I have to modify something to fix the problem, so in next release.
WC = 13.13f+0.62f*OT-13.95f*powf(WS,0.16f)+0.486f*OT*powf(WS,0.16f);
The WC Twc computed for a temperature T gives Twc > T. It does not make sense, and internally GW set the Twc to T.
It seems HW use another model.
In all cases, I think to have WC and HI on the same graphic does not make sens.
For the wind direction WSWin encode the wind direction as integer and flush the decimal. A wind direction of 22.5 degrees is encoded as 22 degrees. I have to modify something to fix the problem, so in next release.
Re: Windchill
The problem of wind direction in Wswin plugin is solved with last version!
Thanks Antoine.