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