]> git.mxchange.org Git - flightgear.git/blob - src/FDM/LaRCsim/ls_interface.h
Added flap_deflection so that remote fdm can pass back actual flap deflection
[flightgear.git] / src / FDM / LaRCsim / ls_interface.h
1 /**************************************************************************
2  * ls_interface.h -- interface to the "LaRCsim" flight model
3  *
4  * Written by Curtis Olson, started May 1997.
5  *
6  * Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of the
11  * License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  * $Id$
23  * (Log is kept at end of this file)
24  **************************************************************************/
25
26
27 #ifndef _LS_INTERFACE_H
28 #define _LS_INTERFACE_H
29
30
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34
35
36 #include "ls_types.h"
37
38
39 /* reset flight params to a specific position */ 
40 int ls_toplevel_init(double dt, char * aircraft);
41
42 /* update position based on inputs, positions, velocities, etc. */
43 int ls_update(int multiloop);
44
45 void ls_set_model_dt(double dt);
46
47 #if 0
48 /* Convert from the fgFLIGHT struct to the LaRCsim generic_ struct */
49 int fgFlight_2_LaRCsim (fgFLIGHT *f);
50
51 /* Convert from the LaRCsim generic_ struct to the fgFLIGHT struct */
52 int fgLaRCsim_2_Flight (fgFLIGHT *f);
53 #endif
54
55 void ls_loop( SCALAR dt, int initialize );
56
57 /* Set the altitude (force) */
58 int ls_ForceAltitude(double alt_feet);
59
60
61 #ifdef __cplusplus
62 }
63 #endif
64
65 #endif /* _LS_INTERFACE_H */
66
67
68 // $Log$
69 // Revision 1.5  2001/03/24 05:03:12  curt
70 // SG-ified logstream.
71 //
72 // Revision 1.4  2000/10/23 22:34:54  curt
73 // I tested:
74 // LaRCsim c172 on-ground and in-air starts, reset: all work
75 // UIUC Cessna172 on-ground and in-air starts work as expected, reset
76 // results in an aircraft that is upside down but does not crash FG.   I
77 // don't know what it was like before, so it may well be no change.
78 // JSBSim c172 and X15 in-air starts work fine, resets now work (and are
79 // trimmed), on-ground starts do not -- the c172 ends up on its back.  I
80 // suspect this is no worse than before.
81 //
82 // I did not test:
83 // Balloon (the weather code returns nan's for the atmosphere data --this
84 // is in the weather module and apparently is a linux only bug)
85 // ADA (don't know how)
86 // MagicCarpet  (needs work yet)
87 // External (don't know how)
88 //
89 // known to be broken:
90 // LaRCsim c172 on-ground starts with a negative terrain altitude (this
91 // happens at KPAO when the scenery is not present).   The FDM inits to
92 // about 50 feet AGL and the model falls to the ground.  It does stay
93 // upright, however, and seems to be fine once it settles out, FWIW.
94 //
95 // To do:
96 // --implement set_Model on the bus
97 // --bring Christian's weather data into JSBSim
98 // -- add default method to bus for updating things like the sin and cos of
99 // latitude (for Balloon, MagicCarpet)
100 // -- lots of cleanup
101 //
102 // The files:
103 // src/FDM/flight.cxx
104 // src/FDM/flight.hxx
105 // -- all data members now declared protected instead of private.
106 // -- eliminated all but a small set of 'setters', no change to getters.
107 // -- that small set is declared virtual, the default implementation
108 // provided preserves the old behavior
109 // -- all of the vector data members are now initialized.
110 // -- added busdump() method -- SG_LOG's  all the bus data when called,
111 // useful for diagnostics.
112 //
113 // src/FDM/ADA.cxx
114 // -- bus data members now directly assigned to
115 //
116 // src/FDM/Balloon.cxx
117 // -- bus data members now directly assigned to
118 // -- changed V_equiv_kts to V_calibrated_kts
119 //
120 // src/FDM/JSBSim.cxx
121 // src/FDM/JSBSim.hxx
122 // -- bus data members now directly assigned to
123 // -- implemented the FGInterface virtual setters with JSBSim specific
124 // logic
125 // -- changed the static FDMExec to a dynamic fdmex (needed so that the
126 // JSBSim object can be deleted when a model change is called for)
127 // -- implemented constructor and destructor, moved some of the logic
128 // formerly in init() to constructor
129 // -- added logic to bring up FGEngInterface objects and set the RPM and
130 // throttle values.
131 //
132 // src/FDM/LaRCsim.cxx
133 // src/FDM/LaRCsim.hxx
134 // -- bus data members now directly assigned to
135 // -- implemented the FGInterface virtual setters with LaRCsim specific
136 // logic, uses LaRCsimIC
137 // -- implemented constructor and destructor, moved some of the logic
138 // formerly in init() to constructor
139 // -- moved default inertias to here from fg_init.cxx
140 // -- eliminated the climb rate calculation.  The equivalent, climb_rate =
141 // -1*vdown, is now in copy_from_LaRCsim().
142 //
143 // src/FDM/LaRCsimIC.cxx
144 // src/FDM/LaRCsimIC.hxx
145 // -- similar to FGInitialCondition, this class has all the logic needed to
146 // turn data like Vc and Mach into the more fundamental quantities LaRCsim
147 // needs to initialize.
148 // -- put it in src/FDM since it is a class
149 //
150 // src/FDM/MagicCarpet.cxx
151 //  -- bus data members now directly assigned to
152 //
153 // src/FDM/Makefile.am
154 // -- adds LaRCsimIC.hxx and cxx
155 //
156 // src/FDM/JSBSim/FGAtmosphere.h
157 // src/FDM/JSBSim/FGDefs.h
158 // src/FDM/JSBSim/FGInitialCondition.cpp
159 // src/FDM/JSBSim/FGInitialCondition.h
160 // src/FDM/JSBSim/JSBSim.cpp
161 // -- changes to accomodate the new bus
162 //
163 // src/FDM/LaRCsim/atmos_62.h
164 // src/FDM/LaRCsim/ls_geodesy.h
165 // -- surrounded prototypes with #ifdef __cplusplus ... #endif , functions
166 // here are needed in LaRCsimIC
167 //
168 // src/FDM/LaRCsim/c172_main.c
169 // src/FDM/LaRCsim/cherokee_aero.c
170 // src/FDM/LaRCsim/ls_aux.c
171 // src/FDM/LaRCsim/ls_constants.h
172 // src/FDM/LaRCsim/ls_geodesy.c
173 // src/FDM/LaRCsim/ls_geodesy.h
174 // src/FDM/LaRCsim/ls_step.c
175 // src/FDM/UIUCModel/uiuc_betaprobe.cpp
176 // -- changed PI to LS_PI, eliminates preprocessor naming conflict with
177 // weather module
178 //
179 // src/FDM/LaRCsim/ls_interface.c
180 // src/FDM/LaRCsim/ls_interface.h
181 // -- added function ls_set_model_dt()
182 //
183 // src/Main/bfi.cxx
184 // -- eliminated calls that set the NED speeds to body components.  They
185 // are no longer needed and confuse the new bus.
186 //
187 // src/Main/fg_init.cxx
188 // -- eliminated calls that just brought the bus data up-to-date (e.g.
189 // set_sin_cos_latitude). or set default values.   The bus now handles the
190 // defaults and updates itself when the setters are called (for LaRCsim and
191 // JSBSim).  A default method for doing this needs to be added to the bus.
192 // -- added fgVelocityInit() to set the speed the user asked for.  Both
193 // JSBSim and LaRCsim can now be initialized using any of:
194 // vc,mach, NED components, UVW components.
195 //
196 // src/Main/main.cxx
197 // --eliminated call to fgFDMSetGroundElevation, this data is now 'pulled'
198 // onto the bus every update()
199 //
200 // src/Main/options.cxx
201 // src/Main/options.hxx
202 // -- added enum to keep track of the speed requested by the user
203 // -- eliminated calls to set NED velocity properties to body speeds, they
204 // are no longer needed.
205 // -- added options for the NED components.
206 //
207 // src/Network/garmin.cxx
208 // src/Network/nmea.cxx
209 // --eliminated calls that just brought the bus data up-to-date (e.g.
210 // set_sin_cos_latitude).  The bus now updates itself when the setters are
211 // called (for LaRCsim and JSBSim).  A default method for doing this needs
212 // to be added to the bus.
213 // -- changed set_V_equiv_kts to set_V_calibrated_kts.  set_V_equiv_kts no
214 // longer exists ( get_V_equiv_kts still does, though)
215 //
216 // src/WeatherCM/FGLocalWeatherDatabase.cpp
217 // -- commented out the code to put the weather data on the bus, a
218 // different scheme for this is needed.
219 //
220 // Revision 1.3  2000/04/27 19:57:08  curt
221 // MacOS build updates.
222 //
223 // Revision 1.2  2000/04/10 18:09:41  curt
224 // David Megginson made a few (mostly minor) mods to the LaRCsim files, and
225 // it's now possible to choose the LaRCsim model at runtime, as in
226 //
227 //   fgfs --aircraft=c172
228 //
229 // or
230 //
231 //   fgfs --aircraft=uiuc --aircraft-dir=Aircraft-uiuc/Boeing747
232 //
233 // I did this so that I could play with the UIUC stuff without losing
234 // Tony's C172 with its flaps, etc.  I did my best to respect the design
235 // of the LaRCsim code by staying in C, making only minimal changes, and
236 // not introducing any dependencies on the rest of FlightGear.  The
237 // modified files are attached.
238 //
239 // Revision 1.1.1.1  1999/06/17 18:07:33  curt
240 // Start of 0.7.x branch
241 //
242 // Revision 1.1.1.1  1999/04/05 21:32:45  curt
243 // Start of 0.6.x branch.
244 //
245 // Revision 1.11  1998/10/17 01:34:15  curt
246 // C++ ifying ...
247 //
248 // Revision 1.10  1998/10/16 23:27:45  curt
249 // C++-ifying.
250 //
251 // Revision 1.9  1998/07/12 03:11:04  curt
252 // Removed some printf()'s.
253 // Fixed the autopilot integration so it should be able to update it's control
254 //   positions every time the internal flight model loop is run, and not just
255 //   once per rendered frame.
256 // Added a routine to do the necessary stuff to force an arbitrary altitude
257 //   change.
258 // Gave the Navion engine just a tad more power.
259 //
260 // Revision 1.8  1998/04/21 16:59:39  curt
261 // Integrated autopilot.
262 // Prepairing for C++ integration.
263 //
264 // Revision 1.7  1998/02/07 15:29:39  curt
265 // Incorporated HUD changes and struct/typedef changes from Charlie Hotchkiss
266 // <chotchkiss@namg.us.anritsu.com>
267 //
268 // Revision 1.6  1998/02/03 23:20:17  curt
269 // Lots of little tweaks to fix various consistency problems discovered by
270 // Solaris' CC.  Fixed a bug in fg_debug.c with how the fgPrintf() wrapper
271 // passed arguments along to the real printf().  Also incorporated HUD changes
272 // by Michele America.
273 //
274 // Revision 1.5  1998/01/19 19:27:05  curt
275 // Merged in make system changes from Bob Kuehne <rpk@sgi.com>
276 // This should simplify things tremendously.
277 //
278 // Revision 1.4  1998/01/19 18:40:27  curt
279 // Tons of little changes to clean up the code and to remove fatal errors
280 // when building with the c++ compiler.
281 //
282 // Revision 1.3  1997/07/23 21:52:20  curt
283 // Put comments around the text after an #endif for increased portability.
284 //
285 // Revision 1.2  1997/05/29 22:39:59  curt
286 // Working on incorporating the LaRCsim flight model.
287 //
288 // Revision 1.1  1997/05/29 00:09:58  curt
289 // Initial Flight Gear revision.
290 //