]> git.mxchange.org Git - flightgear.git/blob - src/FDM/LaRCsim/default_model_routines.c
Initial revision
[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/06/17 18:07:33  curt
37 Initial revision
38
39 Revision 1.1.1.1  1999/04/05 21:32:45  curt
40 Start of 0.6.x branch.
41
42 Revision 1.3  1998/08/06 12:46:37  curt
43 Header change.
44
45 Revision 1.2  1998/01/19 18:40:23  curt
46 Tons of little changes to clean up the code and to remove fatal errors
47 when building with the c++ compiler.
48
49 Revision 1.1  1997/05/29 00:09:53  curt
50 Initial Flight Gear revision.
51
52  * Revision 1.3  1994/01/11  19:10:45  bjax
53  * Removed include files.
54  *
55  * Revision 1.2  1993/03/14  12:16:10  bjax
56  * simple correction: added ';' to end of default routines. EBJ
57  *
58  * Revision 1.1  93/03/10  06:43:46  bjax
59  * Initial revision
60  * 
61  * Revision 1.1  92/12/30  13:21:46  bjax
62  * Initial revision
63  * 
64
65 ----------------------------------------------------------------------------
66
67         REFERENCES:
68
69 ----------------------------------------------------------------------------
70
71         CALLED BY:      ls_model();
72
73 ----------------------------------------------------------------------------
74
75         CALLS TO:       none
76
77 ----------------------------------------------------------------------------
78
79         INPUTS:
80
81 ----------------------------------------------------------------------------
82
83         OUTPUTS:
84
85 --------------------------------------------------------------------------*/
86
87
88 #include "ls_types.h"
89 #include "default_model_routines.h"
90
91 void inertias( SCALAR dt, int Initialize )      {}
92 void subsystems( SCALAR dt, int Initialize )    {}
93 /* void engine()        {} */
94 /* void gear()          {} */
95
96
97
98