~jtaylor/ubuntu/oneiric/flightgear/fix-749249

« back to all changes in this revision

Viewing changes to src/Network/net_fdm.hxx

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2005-11-26 12:31:23 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20051126123123-dhs3dijy6nd257up
Tags: 0.9.8-3ubuntu1
adapt gl/glu dependencies for Xorg

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
//
6
6
// This file is in the Public Domain, and comes with no warranty.
7
7
//
8
 
// $Id: net_fdm.hxx,v 1.13 2004/04/02 16:19:59 curt Exp $
 
8
// $Id: net_fdm.hxx,v 1.16 2005/01/05 03:43:05 curt Exp $
9
9
 
10
10
 
11
11
#ifndef _NET_FDM_HXX
18
18
 
19
19
#include <time.h> // time_t
20
20
 
21
 
const int FG_NET_FDM_VERSION = 18;
 
21
const int FG_NET_FDM_VERSION = 20;
22
22
 
23
23
 
24
24
// Define a structure containing the top level flight dynamics model
48
48
    float phi;                  // roll (radians)
49
49
    float theta;                // pitch (radians)
50
50
    float psi;                  // yaw or true heading (radians)
51
 
    float alpha;                // angle of attack
52
 
    float beta;                 // side slip angle
 
51
    float alpha;                // angle of attack (radians)
 
52
    float beta;                 // side slip angle (radians)
53
53
 
54
54
    // Velocities
55
55
    float phidot;               // roll rate (radians/sec)
84
84
    float rpm[FG_MAX_ENGINES];       // Engine RPM rev/min
85
85
    float fuel_flow[FG_MAX_ENGINES]; // Fuel flow gallons/hr
86
86
    float egt[FG_MAX_ENGINES];       // Exhuast gas temp deg F
 
87
    float cht[FG_MAX_ENGINES];       // Cylinder head temp deg F
87
88
    float mp_osi[FG_MAX_ENGINES];    // Manifold pressure
 
89
    float tit[FG_MAX_ENGINES];       // Turbine Inlet Temperature
88
90
    float oil_temp[FG_MAX_ENGINES];  // Oil temp deg F
89
91
    float oil_px[FG_MAX_ENGINES];    // Oil pressure psi
90
92
 
107
109
    // Control surface positions (normalized values)
108
110
    float elevator;
109
111
    float elevator_trim_tab;
110
 
    float flaps;
 
112
    float left_flap;
 
113
    float right_flap;
111
114
    float left_aileron;
112
115
    float right_aileron;
113
116
    float rudder;