mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
1b2203b867
* Initial commit of SIM_aircraft * Add SIM_aircraft variable server client (#1394) * Add control panel * Remove comments * Add Makefile Co-authored-by: Zero Nelson <zeronelson13@gmail.com> Co-authored-by: zeronelson <95947013+zeronelson@users.noreply.github.com> Co-authored-by: Zero Nelson <zeronelson13@gmail.com>
29 lines
883 B
Plaintext
29 lines
883 B
Plaintext
/************************************************************
|
|
PURPOSE:
|
|
( Simulate a Aircraft. )
|
|
LIBRARY DEPENDENCIES:
|
|
((Aircraft/src/Aircraft.o)
|
|
**************************************************************************/
|
|
#include "sim_objects/default_trick_sys.sm"
|
|
##include "Aircraft/include/Aircraft.hh"
|
|
|
|
class AircraftSimObject : public Trick::SimObject {
|
|
public:
|
|
Aircraft aircraft;
|
|
|
|
AircraftSimObject() {
|
|
("default_data") aircraft.default_data() ;
|
|
("initialization") aircraft.state_init();
|
|
(0.1,"scheduled") aircraft.control() ;
|
|
("derivative") aircraft.state_deriv() ;
|
|
("integration") trick_ret = aircraft.state_integ() ;
|
|
}
|
|
};
|
|
|
|
AircraftSimObject dyn;
|
|
IntegLoop dyn_integloop(0.1) dyn;
|
|
|
|
void create_connections() {
|
|
dyn_integloop.getIntegrator(Runge_Kutta_4, 18);
|
|
}
|