]> git.mxchange.org Git - flightgear.git/blob - src/FDM/LaRCsim/default_model_routines.c
c223390f0ad9647f05e91c9c95053669ebe80336
[flightgear.git] / src / FDM / LaRCsim / default_model_routines.c
1 /***************************************************************************
2
3         TITLE:          engine.c
4         
5 ----------------------------------------------------------------------------
6
7         FUNCTION:       dummy engine routine
8
9 ----------------------------------------------------------------------------
10
11         MODULE STATUS:  incomplete
12
13 ----------------------------------------------------------------------------
14
15         GENEALOGY:      Created 15 OCT 92 as dummy routine for checkout. EBJ
16
17 ----------------------------------------------------------------------------
18
19         DESIGNED BY:    designer
20         
21         CODED BY:       programmer
22         
23         MAINTAINED BY:  maintainer
24
25 ----------------------------------------------------------------------------
26
27         MODIFICATION HISTORY:
28         
29         DATE    PURPOSE                                         BY
30
31         CURRENT RCS HEADER INFO:
32
33 $Header$
34
35 $Log$
36 Revision 1.1  1999/04/05 21:32:45  curt
37 Initial revision
38
39 Revision 1.3  1998/08/06 12:46:37  curt
40 Header change.
41
42 Revision 1.2  1998/01/19 18:40:23  curt
43 Tons of little changes to clean up the code and to remove fatal errors
44 when building with the c++ compiler.
45
46 Revision 1.1  1997/05/29 00:09:53  curt
47 Initial Flight Gear revision.
48
49  * Revision 1.3  1994/01/11  19:10:45  bjax
50  * Removed include files.
51  *
52  * Revision 1.2  1993/03/14  12:16:10  bjax
53  * simple correction: added ';' to end of default routines. EBJ
54  *
55  * Revision 1.1  93/03/10  06:43:46  bjax
56  * Initial revision
57  * 
58  * Revision 1.1  92/12/30  13:21:46  bjax
59  * Initial revision
60  * 
61
62 ----------------------------------------------------------------------------
63
64         REFERENCES:
65
66 ----------------------------------------------------------------------------
67
68         CALLED BY:      ls_model();
69
70 ----------------------------------------------------------------------------
71
72         CALLS TO:       none
73
74 ----------------------------------------------------------------------------
75
76         INPUTS:
77
78 ----------------------------------------------------------------------------
79
80         OUTPUTS:
81
82 --------------------------------------------------------------------------*/
83
84
85 #include "ls_types.h"
86 #include "default_model_routines.h"
87
88 void inertias( SCALAR dt, int Initialize )      {}
89 void subsystems( SCALAR dt, int Initialize )    {}
90 /* void engine()        {} */
91 /* void gear()          {} */
92
93
94
95