Taken from sources in CVS at:
https://sourceforge.net/projects/rocketworkbench/
Sources extracted in two steps:
1. Pull entire project tree into a subdir "rwb" via "rsync":
rsync -a a.cvs.sourceforge.net::cvsroot/rocketworkbench/ rwb/.
2. Export sources:
export CVSROOT=$(pwd)/rwb
SUBDIRS="analyser cpropep cpropep-web CVSROOT data libcompat libcpropep libnum libsimulation libthermo prop rocketworkbench rockflight"
mkdir rwbx; cd rwbx
cvs export -D now ${SUBDIRS}
After this (and some backups for safety), the directory content was
added to a Git repo:
git init .
git add *
18 lines
340 B
C
18 lines
340 B
C
#ifndef __rockflight_h__
|
|
#define __rockflight_h__
|
|
|
|
|
|
/* universal gravitational constant */
|
|
#define UGC 6.672e-11
|
|
/* earth angular velocity */
|
|
#define WE 7.27e-5
|
|
/* square of earth angular velocity */
|
|
#define WE2 5.28529e-9
|
|
/* earth mass */
|
|
#define ME 5.98e24
|
|
|
|
/* earth radius */
|
|
#define EARTH_RAD 6.3567668e6
|
|
|
|
#endif __rockflight_h__
|