PostFrontal Forum
PostFrontal Forum
LK8000_Support_Forum | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 LK8000 International Support
 BUG reporting and solved list
 Wrong TAS for XCVario Driver

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkInsert EmailInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
   

T O P I C    R E V I E W
tvebi Posted - 30/05/2024 : 18:26:35
Hallo,

try to use XCVario driver on my Kobo LK8000 7.4.15.
TAS airspeed indication (km/h) is wrong, IAS airspeed indication is correct.
I logged some records XCVario sends:

Best Regards.

$PXCV,0.0,1.00,0,,1,22.3,1013.0,971.5,426.0,,,,,*27
$PXCV,-0.0,1.00,0,,1,22.3,1013.0,971.7,446.8,,,,,*06
$PXCV,-0.0,1.00,0,,1,22.3,1013.0,971.7,470.0,,,,,*0B
$PXCV,0.0,1.00,0,,1,22.3,1013.0,971.7,494.4,,,,,*28
$PXCV,0.0,1.00,0,,1,22.3,1013.0,971.7,507.8,,,,,*2F
$PXCV,0.1,1.00,0,,0,22.3,1013.0,971.7,518.8,,,,,*21
$PXCV,0.1,1.00,0,,0,22.3,1013.0,971.7,499.3,,,,,*22
$PXCV,0.1,1.00,0,,0,22.3,1013.0,971.7,522.5,,,,,*25
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.7,544.4,,,,,*25
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.6,555.4,,,,,*24
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.7,570.1,,,,,*27
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.6,582.3,,,,,*29
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.7,587.2,,,,,*2C
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.7,596.9,,,,,*27
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.7,596.9,,,,,*27
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.7,620.1,,,,,*21
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.7,631.1,,,,,*21
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.6,640.9,,,,,*2E
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.7,651.9,,,,,*2F
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.7,661.6,,,,,*23
3   L A T E S T    R E P L I E S    (Newest First)
brunotl Posted - 02/08/2024 : 09:47:43
Fixed since 7.4.17
brunotl Posted - 04/06/2024 : 17:21:54
thanks for the feedback, will be fixed asap..
tvebi Posted - 31/05/2024 : 15:16:25
Hallo,

I have done forther investigation on that and I find if static pressure is multiplied by 100.( may be it is used in Pa) the TAS values are as expected. So the code in devXCVario.cpp should be:

quote:

double dyn_press, static_press;
if (ReadChecked(params, static_press)
&& ReadChecked(params[9], dyn_press))
{
// Static && Dynamic pressure in hPa
pGPS->AirspeedAvailable = true;
pGPS->IndicatedAirspeed = sqrt(163.2653061 * dyn_press / 100.);
double qne_alt = StaticPressureToQNEAltitude(static_press*100.);
pGPS->TrueAirspeed = TrueAirSpeed(pGPS->IndicatedAirspeed, qne_alt);
}



quote:
Originally posted by tvebi

Hallo,

try to use XCVario driver on my Kobo LK8000 7.4.15.
TAS airspeed indication (km/h) is wrong, IAS airspeed indication is correct.
I logged some records XCVario sends:

Best Regards.

$PXCV,0.0,1.00,0,,1,22.3,1013.0,971.5,426.0,,,,,*27
$PXCV,-0.0,1.00,0,,1,22.3,1013.0,971.7,446.8,,,,,*06
$PXCV,-0.0,1.00,0,,1,22.3,1013.0,971.7,470.0,,,,,*0B
$PXCV,0.0,1.00,0,,1,22.3,1013.0,971.7,494.4,,,,,*28
$PXCV,0.0,1.00,0,,1,22.3,1013.0,971.7,507.8,,,,,*2F
$PXCV,0.1,1.00,0,,0,22.3,1013.0,971.7,518.8,,,,,*21
$PXCV,0.1,1.00,0,,0,22.3,1013.0,971.7,499.3,,,,,*22
$PXCV,0.1,1.00,0,,0,22.3,1013.0,971.7,522.5,,,,,*25
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.7,544.4,,,,,*25
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.6,555.4,,,,,*24
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.7,570.1,,,,,*27
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.6,582.3,,,,,*29
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.7,587.2,,,,,*2C
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.7,596.9,,,,,*27
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.7,596.9,,,,,*27
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.7,620.1,,,,,*21
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.7,631.1,,,,,*21
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.6,640.9,,,,,*2E
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.7,651.9,,,,,*2F
$PXCV,0.0,1.00,0,,0,22.3,1013.0,971.7,661.6,,,,,*23





PostFrontal Forum © PostFrontal - La community del Volo a Vela Go To Top Of Page
This page was generated in 0.11 seconds. Snitz Forums 2000

Since 2006, owned and maintained by PostFrontal S.A.S. di Giuliano Golfieri & c. - VAT ID: IT05264240960
THIS WEBSITE ONLY USES FUNCTIONAL COOKIES
Privacy & Cookie Policy