2015-02-26 15:02:31 +00:00
|
|
|
/********************************* TRICK HEADER *******************************
|
|
|
|
PURPOSE: ( Scheduling test )
|
|
|
|
REFERENCES: ( None )
|
|
|
|
ASSUMPTIONS AND LIMITATIONS: ( None )
|
|
|
|
PROGRAMMERS: ( (Keith Vetter) (Titan) (8-20-2002) )
|
|
|
|
*******************************************************************************/
|
|
|
|
|
2015-03-23 21:03:14 +00:00
|
|
|
#ifndef SCHED_H
|
|
|
|
#define SCHED_H
|
2015-02-26 15:02:31 +00:00
|
|
|
|
|
|
|
#include "sim_services/Integrator/include/regula_falsi.h"
|
|
|
|
#include "sim_services/Integrator/include/integrator_c_intf.h"
|
|
|
|
|
|
|
|
typedef struct { /* SCHEDULE ------------------------------------------------*/
|
|
|
|
|
2016-06-30 15:03:39 +00:00
|
|
|
double pos ; /* m Position */
|
|
|
|
double vel ; /* m/s Velocity */
|
|
|
|
double acc ; /* m/s2 Acceleration */
|
2015-02-26 15:02:31 +00:00
|
|
|
double mass ; /* kg Mass */
|
|
|
|
int amf ; /* -- Just a test variable */
|
|
|
|
int amf_error ; /* -- Order error occured in amf job */
|
|
|
|
REGULA_FALSI rf ; /* -- Dynamic event */
|
|
|
|
|
|
|
|
} SCHEDULE ; /*--------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|