Author |
Topic  |
|
ryszard_lewandowski
Pulcino

Poland
51 Posts |
Posted - 03/11/2022 : 10:58:55
|
Hi, currently LK counting NextETE for GA taking the instantaneous speed. WayPointCalc[i].NextETE= WayPointCalc[i].Distance / Basic->Speed;
So the counting is not very useful - especially during turbulence. What do you think about counting average speed (last 10, 30, 60 seconds - hardcoded or even better - configurable interval) and calculate AvgNextETE ?
WayPointCalc[i].AvgNextETE= WayPointCalc[i].Distance / Basic->AvgSpeed;
AvgSpeed it could be a new value for InfoBox. |
http://lotynamotolotni.pl |
|
brunotl
Pterodattilo
    
France
1163 Posts |
Posted - 03/11/2022 : 15:08:02
|
make sens, `AverEffTime` parameter can be used as interval to calculate `AverageGroundSpeed` |
 |
|
ryszard_lewandowski
Pulcino

Poland
51 Posts |
Posted - 07/11/2022 : 09:40:21
|
Yes, that's a good idea. Any estimates - when it can be added?
typedef enum{ ae3seconds=0, ae5seconds, ae10seconds, ae15seconds, ae30seconds, ae45seconds, ae60seconds, ae90seconds, ae2minutes, ae3minutes, } AverEffTime_t; |
http://lotynamotolotni.pl |
 |
|
brunotl
Pterodattilo
    
France
1163 Posts |
Posted - 07/11/2022 : 19:30:27
|
are you able to do it ? it's seem's you already know where and how to do it ... |
 |
|
ryszard_lewandowski
Pulcino

Poland
51 Posts |
|
|
Topic  |
|