]> git.mxchange.org Git - flightgear.git/blob - src/Environment/ridge_lift.cxx
- avoid duplicate computations
[flightgear.git] / src / Environment / ridge_lift.cxx
1 // simulates ridge lift
2 //
3 // Written by Patrice Poly
4 // Copyright (C) 2009 Patrice Poly - p.polypa@gmail.com
5 //
6 //
7 // Entirely based  on the paper : 
8 // http://carrier.csi.cam.ac.uk/forsterlewis/soaring/sim/fsx/dev/sim_probe/sim_probe_paper.html
9 // by Ian Forster-Lewis, University of Cambridge, 26th December 2007
10 //
11 //
12 // This program is free software; you can redistribute it and/or
13 // modify it under the terms of the GNU General Public License as
14 // published by the Free Software Foundation; either version 2 of the
15 // License, or (at your option) any later version.
16 //
17 // This program is distributed in the hope that it will be useful, but
18 // WITHOUT ANY WARRANTY; without even the implied warranty of
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20 // General Public License for more details.
21 //
22 // You should have received a copy of the GNU General Public License
23 // along with this program; if not, write to the Free Software
24 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
25 //
26 //
27
28
29 #ifdef HAVE_CONFIG_H
30 #  include <config.h>
31 #endif
32
33 #include <Main/fg_props.hxx>
34 #include <Main/globals.hxx>
35 #include <Main/util.hxx>
36 #include <Scenery/scenery.hxx>
37 #include <string>
38 #include <math.h>
39
40
41 using std::string;
42
43 #include "ridge_lift.hxx"
44
45 static string CreateIndexedPropertyName(string Property, int index)
46 {
47         std::stringstream str;
48         str << index;
49         string tmp;
50         str >> tmp;
51         return Property + "[" + tmp + "]";
52 }
53
54 static const    double BOUNDARY1_m = 40.0;
55
56 //constructor
57 FGRidgeLift::FGRidgeLift ()
58 {       
59         dist_probe_m[0] = 0.0; // in meters
60         dist_probe_m[1] = 250.0;
61         dist_probe_m[2] = 750.0;
62         dist_probe_m[3] = 2000.0;
63         dist_probe_m[4] = -100.0;
64
65         strength = 0.0;
66         timer = 0.0;
67 }
68
69 //destructor
70 FGRidgeLift::~FGRidgeLift()
71 {
72
73 }
74
75 void FGRidgeLift::init(void)
76 {
77         _ridge_lift_fps_node = fgGetNode("/environment/ridge-lift-fps", true);
78         _surface_wind_from_deg_node =
79                         fgGetNode("/environment/config/boundary/entry[0]/wind-from-heading-deg"
80                         , true);
81         _surface_wind_speed_node =
82                         fgGetNode("/environment/config/boundary/entry[0]/wind-speed-kt"
83                         , true);
84         _earth_radius_node = fgGetNode("/position/sea-level-radius-ft", true);
85         _user_longitude_node = fgGetNode("/position/longitude-deg", true);
86         _user_latitude_node = fgGetNode("/position/latitude-deg", true);
87         _user_altitude_ft_node = fgGetNode("/position/altitude-ft", true);
88         _user_altitude_agl_ft_node = fgGetNode("/position/altitude-agl-ft", true);
89 }
90
91 void FGRidgeLift::bind() {
92         string prop;
93
94         for( int i = 0; i < 5; i++ ) {
95                 prop = CreateIndexedPropertyName("/environment/ridge-lift/probe-elev-m", i );
96                 fgTie( prop.c_str(), this, i, &FGRidgeLift::get_probe_elev_m); // read-only
97
98                 prop = CreateIndexedPropertyName("/environment/ridge-lift/probe-lat-deg", i );
99                 fgTie( prop.c_str(), this, i, &FGRidgeLift::get_probe_lat_deg); // read-only
100
101                 prop = CreateIndexedPropertyName("/environment/ridge-lift/probe-lon-deg", i );
102                 fgTie( prop.c_str(), this, i, &FGRidgeLift::get_probe_lon_deg); // read-only
103         }
104
105         for( int i = 0; i < 4; i++ ) {
106                 prop = CreateIndexedPropertyName("/environment/ridge-lift/slope", i );
107                 fgTie( prop.c_str(), this, i, &FGRidgeLift::get_slope); // read-only
108         }
109 }
110
111 void FGRidgeLift::unbind() {
112         string prop;
113
114         for( int i = 0; i < 5; i++ ) {
115
116                 prop = CreateIndexedPropertyName("/environment/ridge-lift/probe-elev-m", i );
117                 fgUntie( prop.c_str() );
118
119                 prop = CreateIndexedPropertyName("/environment/ridge-lift/probe-lat-deg", i );
120                 fgUntie( prop.c_str() );
121
122                 prop = CreateIndexedPropertyName("/environment/ridge-lift/probe-lon-deg", i );
123                 fgUntie( prop.c_str() );
124         }
125
126         for( int i = 0; i < 4; i++ ) {
127                 prop = CreateIndexedPropertyName("/environment/ridge-lift/slope", i );
128                 fgUntie( prop.c_str() );
129         }
130 }
131
132 void FGRidgeLift::update(double dt) {
133
134         //get the windspeed at ground level
135
136         double ground_wind_from_rad = _surface_wind_from_deg_node->getDoubleValue() * SG_DEGREES_TO_RADIANS;
137         double ground_wind_speed_mps = _surface_wind_speed_node->getDoubleValue() * SG_NM_TO_METER / 3600;
138
139         timer -= dt;
140         if (timer <= 0.0 ) {
141                 // copy values 
142
143                 double user_latitude_rad = _user_latitude_node->getDoubleValue() * SG_DEGREES_TO_RADIANS;
144                 double user_longitude_rad = _user_longitude_node->getDoubleValue() * SG_DEGREES_TO_RADIANS;
145         
146                 double earth_rad_m = _earth_radius_node->getDoubleValue() * SG_FEET_TO_METER;
147                 if( earth_rad_m < SG_EPSILON )
148                                 earth_rad_m = SG_EARTH_RAD * 1000;
149
150                 // Placing the probes
151         
152                 for (int i = 0; i < sizeof(probe_lat_rad)/sizeof(probe_lat_rad[0]); i++) {
153                         double probe_radius_ratio = dist_probe_m[i]/earth_rad_m;
154
155                         probe_lat_rad[i] = asin(sin(user_latitude_rad)*cos(probe_radius_ratio)
156                                         +cos(user_latitude_rad)*sin(probe_radius_ratio)*cos(ground_wind_from_rad));
157                         if (probe_lat_rad[i] < SG_EPSILON ) {
158                                 probe_lon_rad[i] = user_latitude_rad; // probe on a pole        
159                         } else {
160                                 probe_lon_rad[i] = fmod((user_longitude_rad+asin(sin(ground_wind_from_rad)
161                                                         *sin(probe_radius_ratio)/cos(probe_lat_rad[i]))+SG_PI)
162                                                 ,SGD_2PI)-SG_PI;
163                         }
164                         probe_lat_deg[i]= probe_lat_rad[i] * SG_RADIANS_TO_DEGREES;
165                         probe_lon_deg[i]= probe_lon_rad[i] * SG_RADIANS_TO_DEGREES;
166                 }
167         
168                 for (int i = 0; i < sizeof(probe_elev_m)/sizeof(probe_elev_m[0]); i++) {
169                         if (globals->get_scenery()->get_elevation_m(SGGeod::fromGeodM(
170                                 SGGeod::fromRad(probe_lon_rad[i],probe_lat_rad[i]), 20000), alt, 0)) {
171                                 if ( alt > 0.1 ) { 
172                                         probe_elev_m[i] = alt; 
173                                 } else { 
174                                         probe_elev_m[i] = 0.1 ;
175                                 }
176                         } else { 
177                                 probe_elev_m[i] = 0.1;
178                         }
179                 }
180
181                 // slopes
182                 double adj_slope[4];
183                 slope[0] = (probe_elev_m[0] - probe_elev_m[1]) / dist_probe_m[1];
184                 slope[1] = (probe_elev_m[1] - probe_elev_m[2]) / dist_probe_m[2];
185                 slope[2] = (probe_elev_m[2] - probe_elev_m[3]) / dist_probe_m[3];
186                 slope[3] = (probe_elev_m[4] - probe_elev_m[0]) / -dist_probe_m[4];
187         
188                 for (int i = 0; i < sizeof(slope)/sizeof(slope[0]); i++)
189                         adj_slope[i] = sin(atan(5.0 * pow ( (fabs(slope[i])),1.7) ) ) *sign(slope[i]);
190         
191                 //adjustment
192                 adj_slope[0] = 0.2 * adj_slope[0];
193                 adj_slope[1] = 0.2 * adj_slope[1];
194                 if ( adj_slope [2] < 0.0 ) {
195                         adj_slope[2] = 0.5 * adj_slope[2];
196                 } else {
197                         adj_slope[2] = 0.0 ;
198                 }
199         
200                 if ( ( adj_slope [0] >= 0.0 ) && ( adj_slope [3] < 0.0 ) ) {
201                         adj_slope[3] = 0.0;
202                 } else {
203                         adj_slope[3] = 0.2 * adj_slope[3];
204                 }
205                 lift_factor = adj_slope[0]+adj_slope[1]+adj_slope[2]+adj_slope[3];
206         
207                 // restart the timer
208                 timer = 1.0;
209         }
210         
211         //user altitude above ground
212         double user_altitude_agl_m = _user_altitude_agl_ft_node->getDoubleValue() * SG_FEET_TO_METER;
213         
214         //boundaries
215   double boundary2_m = 130.0; // in the lift
216         if (lift_factor < 0.0) { // in the sink
217                 double highest_probe_temp= max ( probe_elev_m[1], probe_elev_m[2] );
218                 double highest_probe_downwind_m= max ( highest_probe_temp, probe_elev_m[3] );
219                 boundary2_m = highest_probe_downwind_m - probe_elev_m[0];
220         }
221
222         double agl_factor;
223         if ( user_altitude_agl_m < BOUNDARY1_m ) {
224                 agl_factor = 0.5+0.5*user_altitude_agl_m /BOUNDARY1_m ;
225         } else if ( user_altitude_agl_m < boundary2_m ) {
226                 agl_factor = 1.0;
227         } else {
228                 agl_factor = exp(-(2 + probe_elev_m[0] / 2000) * 
229                                 (user_altitude_agl_m - boundary2_m) / max(probe_elev_m[0],200.0));
230         }
231         
232         double lift_mps = lift_factor* ground_wind_speed_mps * agl_factor;
233         
234         //the updraft, finally, in ft per second
235         strength = fgGetLowPass( strength, lift_mps * SG_METER_TO_FEET, dt );
236 //      if(isnan(strength)) strength=0; 
237          _ridge_lift_fps_node->setDoubleValue( strength );
238 }