X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FFDM%2FLaRCsim.hxx;h=7ce2ddc80afb5f4cad9cb84d20853db210734566;hb=ee98995d30e75cda88c9866f3cb6a761fda7d078;hp=d08db68b3bad57c2841c5da74191e260ffd36a55;hpb=b86e6ddc11afe0578fff207e74a20abe8a053c23;p=flightgear.git diff --git a/src/FDM/LaRCsim.hxx b/src/FDM/LaRCsim.hxx index d08db68b3..7ce2ddc80 100644 --- a/src/FDM/LaRCsim.hxx +++ b/src/FDM/LaRCsim.hxx @@ -27,24 +27,68 @@ #define _LARCSIM_HXX +#include "IO360.hxx" #include "flight.hxx" - +#include class FGLaRCsim: public FGInterface { +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 ); +*/ };