X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FFDM%2FLaRCsim.hxx;h=7ce2ddc80afb5f4cad9cb84d20853db210734566;hb=ee98995d30e75cda88c9866f3cb6a761fda7d078;hp=068cb8f21efe6d81737af64fb4236de2683b5fea;hpb=137da58a70a6caca205f829eb8a547e72b68f9e7;p=flightgear.git diff --git a/src/FDM/LaRCsim.hxx b/src/FDM/LaRCsim.hxx index 068cb8f21..7ce2ddc80 100644 --- a/src/FDM/LaRCsim.hxx +++ b/src/FDM/LaRCsim.hxx @@ -29,30 +29,66 @@ #include "IO360.hxx" #include "flight.hxx" - - -#define USE_NEW_ENGINE_CODE 1 - +#include class FGLaRCsim: public FGInterface { -#ifdef USE_NEW_ENGINE_CODE - FGEngine eng; -#endif +private: + FGNewEngine eng; + LaRCsimIC* lsic; + void set_ls(void); + void snap_shot(void); + double time_step; + SGPropertyNode *speed_up; + SGPropertyNode *aero; + public: + FGLaRCsim( double dt ); + ~FGLaRCsim(void); + // copy FDM state to LaRCsim structures - int copy_to_LaRCsim(); + bool copy_to_LaRCsim(); // copy FDM state from LaRCsim structures - int copy_from_LaRCsim(); + bool copy_from_LaRCsim(); // reset flight params to a specific position - int init( double dt ); + void init(); // update position based on inputs, positions, velocities, etc. - int update( int multiloop ); + void update( double dt ); + + // Positions + void set_Latitude(double lat); //geocentric + void set_Longitude(double lon); + void set_Altitude(double alt); // triggers re-calc of AGL altitude + void set_AltitudeAGL(double altagl); // and vice-versa + + // Speeds -- setting any of these will trigger a re-calc of the rest + void set_V_calibrated_kts(double vc); + void set_Mach_number(double mach); + void set_Velocities_Local( double north, double east, double down ); + void set_Velocities_Wind_Body( double u, double v, double w); + + // Euler angles + void set_Euler_Angles( double phi, double theta, double psi ); + + // Flight Path + void set_Climb_Rate( double roc); + void set_Gamma_vert_rad( double gamma); + + // Earth + void set_Static_pressure(double p); + void set_Static_temperature(double T); + void set_Density(double rho); + +/* + void set_Velocities_Local_Airmass (double wnorth, + double weast, + double wdown ); +*/ };