]> git.mxchange.org Git - flightgear.git/blob - src/AIModel/AIThermal.cxx
toggle fullscreen: also adapt GUI plane when resizing
[flightgear.git] / src / AIModel / AIThermal.cxx
1 // FGAIThermal - FGAIBase-derived class creates an AI thermal
2 //
3 // Copyright (C) 2004  David P. Culp - davidculp2@comcast.net
4 //
5 // An attempt to refine the thermal shape and behaviour by WooT 2009
6 //
7 // Copyright (C) 2009 Patrice Poly ( WooT )
8 //
9 // This program is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU General Public License as
11 // published by the Free Software Foundation; either version 2 of the
12 // License, or (at your option) any later version.
13 //
14 // This program is distributed in the hope that it will be useful, but
15 // WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 // General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
22
23 #ifdef HAVE_CONFIG_H
24 #  include <config.h>
25 #endif
26
27 #include <Main/fg_props.hxx>
28 #include <Main/globals.hxx>
29 #include <Scenery/scenery.hxx>
30 #include <string>
31 #include <math.h>
32
33 using std::string;
34
35 #include "AIThermal.hxx"
36
37
38 FGAIThermal::FGAIThermal() :
39    FGAIBase(otThermal, false)
40 {
41    max_strength = 6.0;
42    diameter = 0.5;
43    strength = factor = 0.0;
44    cycle_timer = 60*(rand()%31); // some random in the birth time
45    ground_elev_ft = 0.0;
46    dt_count=0.9;
47    alt=0.0;
48 }
49
50 FGAIThermal::~FGAIThermal() {
51 }
52
53 void FGAIThermal::readFromScenario(SGPropertyNode* scFileNode) {
54   if (!scFileNode)
55     return;
56
57   FGAIBase::readFromScenario(scFileNode);
58
59   setMaxStrength(scFileNode->getDoubleValue("strength-fps", 8.0)); 
60   setDiameter(scFileNode->getDoubleValue("diameter-ft", 0.0)/6076.11549); 
61   setHeight(scFileNode->getDoubleValue("height-msl", 5000.0));  
62 }
63
64 bool FGAIThermal::init(bool search_in_AI_path) {
65    factor = 8.0 * max_strength / (diameter * diameter * diameter);
66    setAltitude( height );
67    _surface_wind_from_deg_node =
68             fgGetNode("/environment/config/boundary/entry[0]/wind-from-heading-deg", true);
69    _surface_wind_speed_node =
70             fgGetNode("/environment/config/boundary/entry[0]/wind-speed-kt", true);
71    _aloft_wind_from_deg_node =
72             fgGetNode("/environment/config/aloft/entry[2]/wind-from-heading-deg", true);
73    _aloft_wind_speed_node =
74             fgGetNode("/environment/config/aloft/entry[2]/wind-speed-kt", true);
75     do_agl_calc = 1;
76    return FGAIBase::init(search_in_AI_path);
77 }
78
79 void FGAIThermal::bind() {
80     FGAIBase::bind();
81     tie("position/altitude-agl-ft", // for debug and tweak
82                 SGRawValuePointer<double>(&altitude_agl_ft));
83     tie("alt-rel", // for debug and tweak
84                 SGRawValuePointer<double>(&alt_rel));
85     tie("time", // for debug and tweak
86                 SGRawValuePointer<double>(&time));
87     tie("xx", // for debug and tweak
88                 SGRawValuePointer<double>(&xx));
89     tie("is-forming", // for debug abd tweak
90                 SGRawValuePointer<bool>(&is_forming));
91     tie("is-formed", // for debug abd tweak
92                 SGRawValuePointer<bool>(&is_formed));
93     tie("is-dying", // for debug abd tweak
94                 SGRawValuePointer<bool>(&is_dying));
95     tie("is-dead", // for debug abd tweak
96                 SGRawValuePointer<bool>(&is_dead));
97 }
98
99 void FGAIThermal::update(double dt) {
100    FGAIBase::update(dt);
101    Run(dt);
102    Transform();
103 }
104
105
106
107 //the formula to get the available portion of VUpMax depending on altitude
108 //returns a double between 0 and 1
109 double FGAIThermal::get_strength_fac(double alt_frac) {
110
111 double PI = 4.0 * atan(1.0);
112 double fac = 0.0;
113 if ( alt_frac <=0.0 ) { // do submarines get thermals ?
114         fac = 0.0;
115         }
116 else if ( ( alt_frac>0.0 ) && (alt_frac<=0.1) ) { // ground layer
117         fac = ( 0.1*( pow( (10.0*alt_frac),10.0) ) );
118         }
119 else if ( ( alt_frac>0.1 ) && (alt_frac<=1.0) ) {   // main body of the thermal
120         fac = 0.4175 - 0.5825* ( cos ( PI*  (1.0-sqrt(alt_frac) ) +PI) ) ;
121         }
122 else if ( ( alt_frac >1.0 ) && (alt_frac < 1.1 ) ) {  //above the ceiling, but not above the cloud
123         fac = (0.5 * ( 1.0 + cos ( PI*( (-2.0*alt_frac)*5.0 ) ) ) );
124         }
125 else if ( alt_frac >= 1.1 ) {  //above the cloud
126         fac = 0.0;
127         }
128 return fac;
129 }
130
131
132 void FGAIThermal::Run(double dt) {
133
134 // *****************************************
135 // the thermal characteristics and variables
136 // *****************************************
137
138 cycle_timer += dt ;
139
140 // time
141
142 // the time needed for the thermal to be completely formed
143 double tmin1 = 5.0 ;
144 // the time when the thermal begins to die
145 double tmin2 = 20.0 ;
146 // the time when the thermal is completely dead
147 double tmin3 = 25.0;
148 double alive_cycle_time = tmin3*60.0;
149 //the time of the complete cycle, including a period of inactivity
150 double tmin4 = 30.0;
151 // some times expressed in a fraction of tmin3;
152 double t1 = tmin1/tmin3 ;
153 double t2 = tmin2/tmin3 ;
154 double t3 = 1.0 ;
155 double t4 = tmin4/tmin3;
156 // the time elapsed since the thermal was born, in a 0-1 fraction of tmin3
157
158 time = cycle_timer/alive_cycle_time;
159 //comment above and
160 //uncomment below to freeze the time cycle
161  time=0.5;
162
163 if ( time >= t4) { 
164         cycle_timer = 60*(rand()%31);
165         }
166
167
168 //the position of the thermal 'top'
169 double thermal_foot_lat = (pos.getLatitudeDeg());
170 double thermal_foot_lon = (pos.getLongitudeDeg());
171
172 //the max updraft one can expect in this thermal
173 double MaxUpdraft=max_strength;
174 //the max sink one can expect in this thermal, this is a negative number
175 double MinUpdraft=-max_strength*0.25;
176 //the fraction of MaxUpdraft one can expect at our height and time
177 double maxstrengthavail;
178 //max updraft at the user altitude and time
179 double v_up_max;
180 //min updraft at the user altitude and time, this is a negative number
181 double v_up_min;
182 double wind_speed;
183
184
185 //max radius of the the thermal, including the sink area
186 double Rmax = diameter/2.0;
187 // 'shaping' of the thermal, the higher, the more conical the thermal- between 0 and 1
188 double shaping=0.8;
189 //the radius of the thermal at our altitude in FT, including sink
190 double Rsink;
191 //the relative radius of the thermal where we have updraft, between 0 an 1
192 double r_up_frac=0.9;
193 //radius of the thermal where we have updraft, in FT
194 double Rup;
195 //how far are we from the thermal center at our altitude in FEET
196 double dist_center;
197
198 //the position of the center of the thermal slice at our altitude
199 double slice_center_lon;
200 double slice_center_lat;
201
202
203
204 // **************************************
205 // various variables relative to the user
206 // **************************************
207
208 double user_latitude  = manager->get_user_latitude();
209 double user_longitude = manager->get_user_longitude();
210 double user_altitude  = manager->get_user_altitude(); // MSL
211
212 //we need to know the thermal foot AGL altitude
213
214
215 //we could do this only once, as thermal don't move
216 //but then agl info is lost on user reset
217 //so we only do this every 10 seconds to save cpu
218 dt_count += dt;
219 if (dt_count >= 10.0 ) {
220         //double alt;
221         if (getGroundElevationM(SGGeod::fromGeodM(pos, 20000), alt, 0)) {
222         ground_elev_ft =  alt * SG_METER_TO_FEET;
223         do_agl_calc = 0;
224         altitude_agl_ft = height - ground_elev_ft ;
225         dt_count = 0.0;
226         }
227 }
228
229 //user altitude relative to the thermal height, seen AGL from the thermal foot
230 if ( user_altitude < 1.0 ) { user_altitude = 1.0 ;}; // an ugly way to avoid NaNs for users at alt 0
231 double user_altitude_agl= ( user_altitude - ground_elev_ft ) ;
232 alt_rel = user_altitude_agl / altitude_agl_ft;
233
234
235
236 //the updraft user feels !
237 double Vup;
238
239 // *********************
240 // environment variables
241 // *********************
242
243 // the  wind heading at the user alt
244 double wind_heading_rad;
245
246 // the "ambient" sink outside thermals
247 double global_sink = -1.0;
248
249 // **************
250 // some constants
251 // **************
252
253 double PI = 4.0 * atan(1.0);
254
255
256 // ******************
257 // thermal main cycle
258 // ******************
259
260 //we get the max strenght proportion we can expect at the time and altitude, formuled between 0 and 1
261 //double xx;
262 if (time <= t1) {
263         xx= ( time / t1 );
264         maxstrengthavail = xx* get_strength_fac ( alt_rel / xx );
265
266         is_forming=1;is_formed=0;is_dying=0;is_dead=0;
267
268         }
269 else if ( (time > t1) && (time <= t2) ) {
270         maxstrengthavail = get_strength_fac ( (alt_rel) );
271
272         is_forming=0;is_formed=1;is_dying=0;is_dead=0;
273
274         }
275 else if ( (time > t2) && (time <= t3) ) {
276         xx= ( ( time - t2) / (1.0 - t2) ) ;
277         maxstrengthavail = get_strength_fac ( alt_rel - xx );
278
279         is_forming=0;is_formed=0;is_dying=1;is_dead=0;
280
281         }
282 else {
283         maxstrengthavail = 0.0;
284         is_forming=0;is_formed=0;is_dying=0;is_dead=1;
285
286         }
287
288 //we get the diameter of the thermal slice at the user altitude
289 //the thermal has a slight conic shape
290
291 if ( (alt_rel >= 0.0) && (alt_rel < 1.0 ) ) {
292         Rsink = ( shaping*Rmax ) + ( (  (1.0-shaping)*Rmax*alt_rel ) / altitude_agl_ft );  // in the main thermal body
293         }
294 else if ( (alt_rel >=1.0) && (alt_rel < 1.1) ) {
295         Rsink = (Rmax/2.0) * ( 1.0+ cos ( (10.0*PI*alt_rel)-(2.0*PI) ) ); // above the ceiling
296         }
297 else {
298         Rsink = 0.0; // above the cloud
299         }
300
301 //we get the portion of the diameter that produces lift
302 Rup = r_up_frac * Rsink ;
303
304 //we now determine v_up_max and VupMin depending on our altitude
305
306 v_up_max = maxstrengthavail * MaxUpdraft;
307 v_up_min = maxstrengthavail * MinUpdraft;
308
309 // Now we know, for current t and alt, v_up_max, VupMin, Rup, Rsink.
310
311 // We still need to know how far we are from the thermal center
312
313 // To determine the thermal inclinaison in the wind, we use a ugly approximation,
314 // in which we say the thermal bends 20° (0.34906 rad ) for 10 kts wind.
315 // We move the thermal foot upwind, to keep the cloud model over the "center" at ceiling level.
316 // the displacement distance of the center of the thermal slice, at user altitude,
317 // and relative to a hipothetical vertical thermal,  would be:
318
319 // get surface and 9000 ft wind
320
321 double ground_wind_from_deg = _surface_wind_from_deg_node->getDoubleValue();
322 double ground_wind_speed_kts  = _surface_wind_speed_node->getDoubleValue();
323 double aloft_wind_from_deg = _aloft_wind_from_deg_node->getDoubleValue();
324 double aloft_wind_speed_kts  = _aloft_wind_speed_node->getDoubleValue();
325
326 double ground_wind_from_rad = (PI/2.0) - PI*( ground_wind_from_deg/180.0);
327 double aloft_wind_from_rad = (PI/2.0) - PI*( aloft_wind_from_deg/180.0);
328
329 wind_heading_rad= PI+ 0.5*( ground_wind_from_rad + aloft_wind_from_rad );
330
331 wind_speed = ground_wind_speed_kts + user_altitude * ( (aloft_wind_speed_kts -ground_wind_speed_kts ) / 9000.0 );
332
333 double dt_center_alt = -(tan (0.034906*wind_speed)) * ( altitude_agl_ft-user_altitude_agl );
334
335 // now, lets find how far we are from this shifted slice
336
337 double dt_slice_lon_FT = ( dt_center_alt * cos ( wind_heading_rad ));
338 double dt_slice_lat_FT = ( dt_center_alt * sin ( wind_heading_rad ));
339
340 double dt_slice_lon = dt_slice_lon_FT / ft_per_deg_lon;
341 double dt_slice_lat = dt_slice_lat_FT / ft_per_deg_lat;
342
343 slice_center_lon = thermal_foot_lon + dt_slice_lon;
344 slice_center_lat = thermal_foot_lat + dt_slice_lat;
345
346 double dist_center_lon = fabs(slice_center_lon - user_longitude)* ft_per_deg_lon;
347 double dist_center_lat = fabs(slice_center_lat - user_latitude)* ft_per_deg_lat;
348
349 double dist_center_FT = sqrt ( dist_center_lon*dist_center_lon + dist_center_lat*dist_center_lat ); // feet
350
351 dist_center = dist_center_FT/ 6076.11549; //nautic miles
352
353
354 // Now we can calculate Vup
355
356 if ( max_strength >=0.0 ) { // this is a thermal
357
358         if ( ( dist_center >= 0.0 ) && ( dist_center < Rup ) ) {  //user is in the updraft area
359                 Vup = v_up_max * cos ( dist_center* PI/(2.0*Rup) );
360                 }
361         else if ( ( dist_center > Rup ) && ( dist_center <= ((Rup+Rsink)/2.0) ) ) { //user in the 1st half of the sink area
362                 Vup = v_up_min * cos (( dist_center - ( Rup+Rsink)/2.0 ) * PI / ( 2.0* (  ( Rup+Rsink)/2.0 -Rup )));
363                 }
364         else if ( ( dist_center > ((Rup+Rsink)/2.0) ) && dist_center <= Rsink ) {   // user in the 2nd half of the sink area
365                 Vup = ( global_sink + v_up_min )/2.0 + ( global_sink - v_up_min )/2.0 *cos ( (dist_center-Rsink) *PI/ ( (Rsink-Rup )/2.0) );
366                 }
367         else {  // outside the thermal
368                 Vup = global_sink;
369                 } 
370         }
371
372 else { // this is a sink, we don't want updraft on the sides, nor do we want to feel sink near or above ceiling and ground
373         if ( alt_rel <=1.1 ) {
374                 double fac =  ( 1.0 - ( 1.0 - 1.815*alt_rel)*( 1.0 - 1.815*alt_rel) );
375                 Vup = fac * (global_sink + ( ( v_up_max - global_sink )/2.0 ) * ( 1.0+cos ( dist_center* PI / Rmax ) )) ;
376                 }
377         else { Vup = global_sink; }
378 }
379
380 //correct for no global sink above clouds and outside thermals
381 if ( ( (alt_rel > 1.0) && (alt_rel <1.1)) && ( dist_center > Rsink ) ) {
382         Vup = global_sink * ( 11.0 -10.0 * alt_rel );
383         }
384 if ( alt_rel >= 1.1 ) { 
385         Vup = 0.0;
386         }
387
388 strength = Vup;
389 range = dist_center;
390
391 }
392
393
394