]> git.mxchange.org Git - flightgear.git/blob - src/FDM/LaRCsim/cherokee_init.c
Updates to the scenery loading infrastructure to make it more flexible,
[flightgear.git] / src / FDM / LaRCsim / cherokee_init.c
1 /***************************************************************************
2
3         TITLE:  cherokee_init.c
4         
5 ----------------------------------------------------------------------------
6
7         FUNCTION:       Initializes cherokee math model
8
9 ----------------------------------------------------------------------------
10
11         MODULE STATUS:  developmental
12
13 ----------------------------------------------------------------------------
14
15         GENEALOGY: 
16
17 ----------------------------------------------------------------------------
18
19 ----------------------------------------------------------------------------
20
21         CURRENT RCS HEADER:
22
23          Well, 
24          I do not have vorking RCS here (Sorry)
25
26 ----------------------------------------------------------------------------
27
28         REFERENCES:
29
30 ----------------------------------------------------------------------------
31
32         CALLED BY:
33
34 ----------------------------------------------------------------------------
35
36         CALLS TO:
37
38 ----------------------------------------------------------------------------
39
40         INPUTS:
41
42 ----------------------------------------------------------------------------
43
44         OUTPUTS:
45
46 --------------------------------------------------------------------------*/
47 #include "ls_types.h"
48 #include "ls_generic.h"
49 #include "ls_cockpit.h"
50
51 void cherokee_init( void )
52 {
53
54   Throttle[3] = 0.2; Rudder_pedal = 0; Lat_control = 0; Long_control = 0;
55   
56   Dx_pilot = 0; Dy_pilot = 0; Dz_pilot = 0;
57   
58   Runway_altitude = 0;
59   Runway_latitude = 0;
60   Runway_longitude = 0;
61   Runway_heading = 0;
62   
63 }