mirror of
https://github.com/nasa/trick.git
synced 2025-01-22 12:28:15 +00:00
49 lines
1.5 KiB
C
49 lines
1.5 KiB
C
/*
|
|
* $Id: cannon.h 1001 2010-08-25 20:31:20Z dpanter $
|
|
*/
|
|
|
|
/*************************************************************************
|
|
PURPOSE: (Cannonball Structure)
|
|
LIBRARY DEPENDENCIES:
|
|
(
|
|
(cannon/gravity/src/cannon_default_data.o)
|
|
(cannon/gravity/src/cannon_init.o)
|
|
(cannon/gravity/src/cannon_integ.o)
|
|
(cannon/integ/src/cannon_integ2.o)
|
|
(cannon/gravity/src/cannon_deriv.o)
|
|
(cannon/integ/src/cannon_deriv2.o)
|
|
)
|
|
|
|
**************************************************************************/
|
|
|
|
#ifndef _cannon_h_
|
|
#define _cannon_h_
|
|
#include <stdio.h>
|
|
#include "sim_services/Integrator/include/regula_falsi.h"
|
|
#include "trick_utils/comm/include/tc.h"
|
|
#include "trick_utils/comm/include/tc_proto.h"
|
|
|
|
typedef struct {
|
|
|
|
double pos0[2] ; /* *i M Init position of cannonball */
|
|
double vel0[2] ; /* *i M Init velocity of cannonball */
|
|
double acc0[2] ; /* *i M Init acceleration of cannonball */
|
|
|
|
double pos[2] ; /* M xy-position */
|
|
double vel[2] ; /* M/s xy-velocity */
|
|
double acc[2] ; /* M/s2 xy-acceleration */
|
|
double init_speed ; /* *i M/s Init barrel speed */
|
|
double init_angle ; /* *i r Angle of cannon */
|
|
|
|
/* Impact */
|
|
REGULA_FALSI rf ; /* -- Dynamic event params for impact */
|
|
int impact ; /* -- Has impact occured? */
|
|
|
|
FILE *fp ; /* -- file pointer */
|
|
|
|
/* Communication Connection */
|
|
TCDevice connection ; /* -- Socket connection for sending position */
|
|
} CANNON ;
|
|
|
|
#endif
|