├── .gitignore ├── CAD ├── bodytube │ └── bodytube.prt ├── fins │ ├── NACA0012_lower.pts │ └── trapfin.prt └── nosecone │ ├── ogive_no_shoulder.prt │ ├── ogive_shoulder.prt │ ├── parabolic_no_shoulder.prt │ └── parabolic_shoulder.prt ├── JPype ├── README.md ├── jpype_test.py └── jpypex-0.5.4.2-cp27-cp27m-win32.whl ├── Jenkinsfile ├── LICENSE.txt ├── README.md ├── archive └── Final-OR-PET-Results.csv ├── clafer-models ├── Docs │ ├── OpenRocketXML_requirements.txt │ └── README ├── OpenRocketDS.cfr ├── WIP │ ├── OpenRocketDS.cfr │ ├── cfgFilter.py │ ├── data2instances.py │ ├── editXML.py │ ├── editXMLXYZ.py │ ├── facility_moo.cfr │ ├── instance2xml.py │ ├── large_rocket_space.cfr │ ├── manuf_rocket_space.cfr │ ├── newInstance2XML.py │ ├── rename_constraints.py │ ├── rocket-facility_space.cfr │ ├── simpleRocketSpace.cfr │ ├── test.cfr │ └── xpath_demo.py └── scripts │ ├── GenXML.py │ ├── cl_abstract.py │ ├── clean_clinstance.py │ ├── master.sh │ ├── remove_constraints.py │ ├── rename_instances.py │ └── template.ork ├── components ├── 03td22yk │ └── CAD │ │ └── conical_no_shoulder.prt ├── 1f2fd4zz │ └── CAD │ │ └── elliptical_flat.prt ├── 20jnr2rx │ └── CAD │ │ └── ogive_no_shoulder.prt ├── griuprkw │ └── CAD │ │ └── prt0001.prt ├── miloofag │ └── CAD │ │ └── trapfin.prt ├── mj0or4p3 │ └── CAD │ │ └── parabolicnosecone.prt ├── nc2id4sp │ └── CAD │ │ └── bodytube.prt ├── ohmi3l4k │ └── CAD │ │ └── rounded.prt └── woi5a13l │ └── CAD │ └── bodytube.prt ├── images ├── GMEBrowser.PNG ├── OR_PET.PNG ├── OpenRocket.PNG ├── cyphy-master-interpreter.png ├── master-interpreter.PNG ├── results-browser.PNG ├── visualizer-point-details.PNG └── visualizer-single-plot.PNG ├── openmeta-OpenRocket.jar ├── openmeta-rocket.xme └── scripts ├── FullMissionTest.py ├── FullMissionTest_Fast.py ├── GenORK.py ├── README.md ├── SimORK.py ├── SimORK_Fast.py ├── orhelper.py └── template.ork /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/.gitignore -------------------------------------------------------------------------------- /CAD/bodytube/bodytube.prt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/CAD/bodytube/bodytube.prt -------------------------------------------------------------------------------- /CAD/fins/NACA0012_lower.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/CAD/fins/NACA0012_lower.pts -------------------------------------------------------------------------------- /CAD/fins/trapfin.prt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/CAD/fins/trapfin.prt -------------------------------------------------------------------------------- /CAD/nosecone/ogive_no_shoulder.prt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/CAD/nosecone/ogive_no_shoulder.prt -------------------------------------------------------------------------------- /CAD/nosecone/ogive_shoulder.prt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/CAD/nosecone/ogive_shoulder.prt -------------------------------------------------------------------------------- /CAD/nosecone/parabolic_no_shoulder.prt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/CAD/nosecone/parabolic_no_shoulder.prt -------------------------------------------------------------------------------- /CAD/nosecone/parabolic_shoulder.prt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/CAD/nosecone/parabolic_shoulder.prt -------------------------------------------------------------------------------- /JPype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/JPype/README.md -------------------------------------------------------------------------------- /JPype/jpype_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/JPype/jpype_test.py -------------------------------------------------------------------------------- /JPype/jpypex-0.5.4.2-cp27-cp27m-win32.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/JPype/jpypex-0.5.4.2-cp27-cp27m-win32.whl -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/README.md -------------------------------------------------------------------------------- /archive/Final-OR-PET-Results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/archive/Final-OR-PET-Results.csv -------------------------------------------------------------------------------- /clafer-models/Docs/OpenRocketXML_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/Docs/OpenRocketXML_requirements.txt -------------------------------------------------------------------------------- /clafer-models/Docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/Docs/README -------------------------------------------------------------------------------- /clafer-models/OpenRocketDS.cfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/OpenRocketDS.cfr -------------------------------------------------------------------------------- /clafer-models/WIP/OpenRocketDS.cfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/WIP/OpenRocketDS.cfr -------------------------------------------------------------------------------- /clafer-models/WIP/cfgFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/WIP/cfgFilter.py -------------------------------------------------------------------------------- /clafer-models/WIP/data2instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/WIP/data2instances.py -------------------------------------------------------------------------------- /clafer-models/WIP/editXML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/WIP/editXML.py -------------------------------------------------------------------------------- /clafer-models/WIP/editXMLXYZ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/WIP/editXMLXYZ.py -------------------------------------------------------------------------------- /clafer-models/WIP/facility_moo.cfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/WIP/facility_moo.cfr -------------------------------------------------------------------------------- /clafer-models/WIP/instance2xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/WIP/instance2xml.py -------------------------------------------------------------------------------- /clafer-models/WIP/large_rocket_space.cfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/WIP/large_rocket_space.cfr -------------------------------------------------------------------------------- /clafer-models/WIP/manuf_rocket_space.cfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/WIP/manuf_rocket_space.cfr -------------------------------------------------------------------------------- /clafer-models/WIP/newInstance2XML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/WIP/newInstance2XML.py -------------------------------------------------------------------------------- /clafer-models/WIP/rename_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/WIP/rename_constraints.py -------------------------------------------------------------------------------- /clafer-models/WIP/rocket-facility_space.cfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/WIP/rocket-facility_space.cfr -------------------------------------------------------------------------------- /clafer-models/WIP/simpleRocketSpace.cfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/WIP/simpleRocketSpace.cfr -------------------------------------------------------------------------------- /clafer-models/WIP/test.cfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/WIP/test.cfr -------------------------------------------------------------------------------- /clafer-models/WIP/xpath_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/WIP/xpath_demo.py -------------------------------------------------------------------------------- /clafer-models/scripts/GenXML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/scripts/GenXML.py -------------------------------------------------------------------------------- /clafer-models/scripts/cl_abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/scripts/cl_abstract.py -------------------------------------------------------------------------------- /clafer-models/scripts/clean_clinstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/scripts/clean_clinstance.py -------------------------------------------------------------------------------- /clafer-models/scripts/master.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/scripts/master.sh -------------------------------------------------------------------------------- /clafer-models/scripts/remove_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/scripts/remove_constraints.py -------------------------------------------------------------------------------- /clafer-models/scripts/rename_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/scripts/rename_instances.py -------------------------------------------------------------------------------- /clafer-models/scripts/template.ork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/clafer-models/scripts/template.ork -------------------------------------------------------------------------------- /components/03td22yk/CAD/conical_no_shoulder.prt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/components/03td22yk/CAD/conical_no_shoulder.prt -------------------------------------------------------------------------------- /components/1f2fd4zz/CAD/elliptical_flat.prt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/components/1f2fd4zz/CAD/elliptical_flat.prt -------------------------------------------------------------------------------- /components/20jnr2rx/CAD/ogive_no_shoulder.prt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/components/20jnr2rx/CAD/ogive_no_shoulder.prt -------------------------------------------------------------------------------- /components/griuprkw/CAD/prt0001.prt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/components/griuprkw/CAD/prt0001.prt -------------------------------------------------------------------------------- /components/miloofag/CAD/trapfin.prt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/components/miloofag/CAD/trapfin.prt -------------------------------------------------------------------------------- /components/mj0or4p3/CAD/parabolicnosecone.prt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/components/mj0or4p3/CAD/parabolicnosecone.prt -------------------------------------------------------------------------------- /components/nc2id4sp/CAD/bodytube.prt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/components/nc2id4sp/CAD/bodytube.prt -------------------------------------------------------------------------------- /components/ohmi3l4k/CAD/rounded.prt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/components/ohmi3l4k/CAD/rounded.prt -------------------------------------------------------------------------------- /components/woi5a13l/CAD/bodytube.prt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/components/woi5a13l/CAD/bodytube.prt -------------------------------------------------------------------------------- /images/GMEBrowser.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/images/GMEBrowser.PNG -------------------------------------------------------------------------------- /images/OR_PET.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/images/OR_PET.PNG -------------------------------------------------------------------------------- /images/OpenRocket.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/images/OpenRocket.PNG -------------------------------------------------------------------------------- /images/cyphy-master-interpreter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/images/cyphy-master-interpreter.png -------------------------------------------------------------------------------- /images/master-interpreter.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/images/master-interpreter.PNG -------------------------------------------------------------------------------- /images/results-browser.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/images/results-browser.PNG -------------------------------------------------------------------------------- /images/visualizer-point-details.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/images/visualizer-point-details.PNG -------------------------------------------------------------------------------- /images/visualizer-single-plot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/images/visualizer-single-plot.PNG -------------------------------------------------------------------------------- /openmeta-OpenRocket.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/openmeta-OpenRocket.jar -------------------------------------------------------------------------------- /openmeta-rocket.xme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/openmeta-rocket.xme -------------------------------------------------------------------------------- /scripts/FullMissionTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/scripts/FullMissionTest.py -------------------------------------------------------------------------------- /scripts/FullMissionTest_Fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/scripts/FullMissionTest_Fast.py -------------------------------------------------------------------------------- /scripts/GenORK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/scripts/GenORK.py -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/SimORK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/scripts/SimORK.py -------------------------------------------------------------------------------- /scripts/SimORK_Fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/scripts/SimORK_Fast.py -------------------------------------------------------------------------------- /scripts/orhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/scripts/orhelper.py -------------------------------------------------------------------------------- /scripts/template.ork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metamorph-inc/openmeta-rocket/HEAD/scripts/template.ork --------------------------------------------------------------------------------