You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to solve for poliastro/poliastro#740 and therefore a comparison against another software is required. GMAT only requires a simple *.script file to generate an output *.txt file where orbit data is stored.
My plans the following:
Create a gmat/core, gmat/scripts and gmat/results folders were GMAT binaries, scripts and output data files are stored respectively
By simply running a make gmat_tests from a custom Makefile, scripts are runned and output files are generated
An specific format is defined in the *.script files when generating the *.txt output file, so a Python reader is specifically designed to extract interesting data from those files
Finally a tests directory makes use of those readers and data files to run the poliastro validation
What do you think about this draft idea? May be too hard to include GMAT binaries inside the repo?
The text was updated successfully, but these errors were encountered:
My only concern is storing the GMAT binaries, I would strongly advise against it. In my view, we should only store here the scripts, and describe somewhere how to install the software.
The rest sounds about right! The most painful thing will be reading the data from the output .txt. Perhaps there's a way to return a more structured data format.
I am trying to solve for poliastro/poliastro#740 and therefore a comparison against another software is required. GMAT only requires a simple
*.script
file to generate an output*.txt
file where orbit data is stored.My plans the following:
gmat/core
,gmat/scripts
andgmat/results
folders were GMAT binaries, scripts and output data files are stored respectivelymake gmat_tests
from a customMakefile
, scripts are runned and output files are generated*.script
files when generating the*.txt
output file, so a Python reader is specifically designed to extract interesting data from those filestests
directory makes use of those readers and data files to run the poliastro validationWhat do you think about this draft idea? May be too hard to include GMAT binaries inside the repo?
The text was updated successfully, but these errors were encountered: