mirror of
https://github.com/nasa/trick.git
synced 2024-12-23 15:02:25 +00:00
12 lines
378 B
C++
12 lines
378 B
C++
|
/*************************************************************************
|
||
|
PURPOSE: (Environment for Model Rocket Sim)
|
||
|
LIBRARY DEPENDENCIES:
|
||
|
((rocket/src/Environment.o))
|
||
|
**************************************************************************/
|
||
|
class Environment {
|
||
|
public:
|
||
|
double air_density; /* kg/m^3 */
|
||
|
double gravity[2]; /* m/s^2 */
|
||
|
int default_data();
|
||
|
};
|