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