├── .github └── workflows │ └── fmu_manipulation_toolbox-package.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── container ├── CMakeLists.txt ├── README.md ├── build.bat ├── container.c ├── container.h ├── convert.c ├── convert.h ├── fmi2.c ├── fmi3.c ├── fmu.c ├── fmu.h ├── hash.c ├── hash.h ├── library.c ├── library.h ├── logger.c ├── logger.h ├── profile.c ├── profile.h ├── test_fmi.c ├── thread.c ├── thread.h └── version.h.in ├── doc ├── FMUContainer.png ├── README.md ├── checker.md ├── container-json.png ├── container-vr.md ├── container-vr.png ├── container.md ├── example.py ├── gui.png ├── remoting.md └── routing.png ├── fmi ├── fmi2FunctionTypes.h ├── fmi2Functions.h ├── fmi2TypesPlatform.h ├── fmi3FunctionTypes.h ├── fmi3Functions.h └── fmi3PlatformTypes.h ├── fmu_manipulation_toolbox ├── __init__.py ├── __main__.py ├── assembly.py ├── checker.py ├── cli │ ├── __init__.py │ ├── fmucontainer.py │ ├── fmusplit.py │ ├── fmutool.py │ └── utils.py ├── container.py ├── gui.py ├── gui_style.py ├── help.py ├── operations.py ├── remoting.py ├── resources │ ├── checkbox-checked-disabled.png │ ├── checkbox-checked-hover.png │ ├── checkbox-checked.png │ ├── checkbox-unchecked-disabled.png │ ├── checkbox-unchecked-hover.png │ ├── checkbox-unchecked.png │ ├── container.png │ ├── darwin64 │ │ └── .gitkeep │ ├── drop_fmu.png │ ├── fmi-2.0 │ │ ├── fmi2Annotation.xsd │ │ ├── fmi2AttributeGroups.xsd │ │ ├── fmi2ModelDescription.xsd │ │ ├── fmi2ScalarVariable.xsd │ │ ├── fmi2Type.xsd │ │ ├── fmi2Unit.xsd │ │ └── fmi2VariableDependency.xsd │ ├── fmi-3.0 │ │ ├── fmi3Annotation.xsd │ │ ├── fmi3AttributeGroups.xsd │ │ ├── fmi3BuildDescription.xsd │ │ ├── fmi3InterfaceType.xsd │ │ ├── fmi3LayeredStandardManifest.xsd │ │ ├── fmi3ModelDescription.xsd │ │ ├── fmi3Terminal.xsd │ │ ├── fmi3TerminalsAndIcons.xsd │ │ ├── fmi3Type.xsd │ │ ├── fmi3Unit.xsd │ │ ├── fmi3Variable.xsd │ │ └── fmi3VariableDependency.xsd │ ├── fmu.png │ ├── fmu_manipulation_toolbox.png │ ├── help.png │ ├── icon-round.png │ ├── icon.png │ ├── icon_fmu.png │ ├── license.txt │ ├── linux32 │ │ └── .gitkeep │ ├── linux64 │ │ └── .gitkeep │ ├── mask.png │ ├── model.png │ ├── win32 │ │ └── .gitkeep │ └── win64 │ │ └── .gitkeep ├── split.py └── version.py ├── package.py ├── remoting ├── CMakeLists.txt ├── README.md ├── build.bat ├── client.c ├── client.h ├── communication.c ├── communication.h ├── config.h.in ├── gen_sizeof.py ├── process.c ├── process.h ├── server.c ├── server.h ├── test_server.c ├── test_sizeof.c ├── types.txt └── version.h.in ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── containers ├── VanDerPol │ ├── REF-results-VanDerPol-Container.csv │ ├── REF-results-VanDerPol-vr2.csv │ ├── REF-results-VanDerPol.csv │ ├── VanDerPol-vr.json │ ├── VanDerPol.fmu │ ├── VanDerPol.json │ ├── sched2.fmu │ └── sched3.fmu ├── arch │ ├── REF-cli-flat-dump.json │ ├── REF-flat-dump.json │ ├── REF-hierarchical-dump.json │ ├── REF-results-flat.csv │ ├── REF-results-hierarchical.csv │ ├── REF-results-reversed.csv │ ├── REF-results-sub.csv │ ├── REF-reversed-dump.json │ ├── cli-flat.json │ ├── flat.json │ ├── gain.fmu │ ├── hierarchical.json │ ├── integrate.fmu │ ├── nested.json │ ├── reversed.json │ ├── sine.fmu │ └── subdir │ │ └── gain2.fmu ├── bouncing_ball │ ├── REF-bouncing-profiling.json │ ├── REF-bouncing-seq.csv │ ├── REF-bouncing-seq.json │ ├── REF-bouncing.json │ ├── REF-container-3.txt │ ├── REF-container-profiling.txt │ ├── REF-container-seq.txt │ ├── REF-container.txt │ ├── REF-modelDescription-3.xml │ ├── REF-modelDescription-profiling.xml │ ├── REF-results-bouncing-3.csv │ ├── REF-results-bouncing-profiling.csv │ ├── REF-results-bouncing-seq.csv │ ├── REF-results-bouncing.csv │ ├── bb_position.fmu │ ├── bb_velocity.fmu │ ├── bouncing-3.csv │ ├── bouncing-profiling.csv │ ├── bouncing-seq.csv │ ├── bouncing.csv │ ├── bouncing_auto.csv │ ├── bouncing_unlinked.csv │ └── cli-bouncing.csv ├── ssp │ ├── REF-bouncing-dump.json │ ├── REF-results-bouncing.csv │ ├── REF-split-bouncing.json │ └── bouncing.ssp └── start │ ├── REF-container.txt │ ├── REF-modelDescription.xml │ ├── REF-results-slx.csv │ ├── slx.fmu │ └── slx.json ├── fmi3 ├── bouncing_ball │ ├── bb_position.fmu │ ├── bb_velocity.fmu │ └── bouncing.json └── passthrough │ ├── REF-container.txt │ ├── REF-results-container-passthrough.csv │ ├── constant.fmu │ ├── not2.fmu │ ├── passthrough.fmu │ └── passthrough.json ├── ls-bus └── bus+node.json ├── operations ├── REF-bouncing_ball-keeponly.csv ├── REF-bouncing_ball-modified.csv ├── REF-bouncing_ball-no-tl.csv ├── REF-bouncing_ball-removed.csv ├── REF-bouncing_ball-renamed.csv ├── REF-bouncing_ball.csv ├── bouncing_ball-modified.csv └── bouncing_ball.fmu ├── remoting ├── REF-results-bouncing_ball-win32.csv ├── REF-results-bouncing_ball-win64.csv └── bouncing_ball-win32.fmu └── test_suite.py /.github/workflows/fmu_manipulation_toolbox-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/.github/workflows/fmu_manipulation_toolbox-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/README.md -------------------------------------------------------------------------------- /container/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/CMakeLists.txt -------------------------------------------------------------------------------- /container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/README.md -------------------------------------------------------------------------------- /container/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/build.bat -------------------------------------------------------------------------------- /container/container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/container.c -------------------------------------------------------------------------------- /container/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/container.h -------------------------------------------------------------------------------- /container/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/convert.c -------------------------------------------------------------------------------- /container/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/convert.h -------------------------------------------------------------------------------- /container/fmi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/fmi2.c -------------------------------------------------------------------------------- /container/fmi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/fmi3.c -------------------------------------------------------------------------------- /container/fmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/fmu.c -------------------------------------------------------------------------------- /container/fmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/fmu.h -------------------------------------------------------------------------------- /container/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/hash.c -------------------------------------------------------------------------------- /container/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/hash.h -------------------------------------------------------------------------------- /container/library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/library.c -------------------------------------------------------------------------------- /container/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/library.h -------------------------------------------------------------------------------- /container/logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/logger.c -------------------------------------------------------------------------------- /container/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/logger.h -------------------------------------------------------------------------------- /container/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/profile.c -------------------------------------------------------------------------------- /container/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/profile.h -------------------------------------------------------------------------------- /container/test_fmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/test_fmi.c -------------------------------------------------------------------------------- /container/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/thread.c -------------------------------------------------------------------------------- /container/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/thread.h -------------------------------------------------------------------------------- /container/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/container/version.h.in -------------------------------------------------------------------------------- /doc/FMUContainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/doc/FMUContainer.png -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/checker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/doc/checker.md -------------------------------------------------------------------------------- /doc/container-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/doc/container-json.png -------------------------------------------------------------------------------- /doc/container-vr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/doc/container-vr.md -------------------------------------------------------------------------------- /doc/container-vr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/doc/container-vr.png -------------------------------------------------------------------------------- /doc/container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/doc/container.md -------------------------------------------------------------------------------- /doc/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/doc/example.py -------------------------------------------------------------------------------- /doc/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/doc/gui.png -------------------------------------------------------------------------------- /doc/remoting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/doc/remoting.md -------------------------------------------------------------------------------- /doc/routing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/doc/routing.png -------------------------------------------------------------------------------- /fmi/fmi2FunctionTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmi/fmi2FunctionTypes.h -------------------------------------------------------------------------------- /fmi/fmi2Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmi/fmi2Functions.h -------------------------------------------------------------------------------- /fmi/fmi2TypesPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmi/fmi2TypesPlatform.h -------------------------------------------------------------------------------- /fmi/fmi3FunctionTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmi/fmi3FunctionTypes.h -------------------------------------------------------------------------------- /fmi/fmi3Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmi/fmi3Functions.h -------------------------------------------------------------------------------- /fmi/fmi3PlatformTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmi/fmi3PlatformTypes.h -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/__main__.py -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/assembly.py -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/checker.py -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/cli/fmucontainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/cli/fmucontainer.py -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/cli/fmusplit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/cli/fmusplit.py -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/cli/fmutool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/cli/fmutool.py -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/cli/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/cli/utils.py -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/container.py -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/gui.py -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/gui_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/gui_style.py -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/help.py -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/operations.py -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/remoting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/remoting.py -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/checkbox-checked-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/checkbox-checked-disabled.png -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/checkbox-checked-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/checkbox-checked-hover.png -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/checkbox-checked.png -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/checkbox-unchecked-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/checkbox-unchecked-disabled.png -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/checkbox-unchecked-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/checkbox-unchecked-hover.png -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/checkbox-unchecked.png -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/container.png -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/darwin64/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/drop_fmu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/drop_fmu.png -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmi-2.0/fmi2Annotation.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmi-2.0/fmi2Annotation.xsd -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmi-2.0/fmi2AttributeGroups.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmi-2.0/fmi2AttributeGroups.xsd -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmi-2.0/fmi2ModelDescription.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmi-2.0/fmi2ModelDescription.xsd -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmi-2.0/fmi2ScalarVariable.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmi-2.0/fmi2ScalarVariable.xsd -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmi-2.0/fmi2Type.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmi-2.0/fmi2Type.xsd -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmi-2.0/fmi2Unit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmi-2.0/fmi2Unit.xsd -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmi-2.0/fmi2VariableDependency.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmi-2.0/fmi2VariableDependency.xsd -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmi-3.0/fmi3Annotation.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmi-3.0/fmi3Annotation.xsd -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmi-3.0/fmi3AttributeGroups.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmi-3.0/fmi3AttributeGroups.xsd -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmi-3.0/fmi3BuildDescription.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmi-3.0/fmi3BuildDescription.xsd -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmi-3.0/fmi3InterfaceType.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmi-3.0/fmi3InterfaceType.xsd -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmi-3.0/fmi3LayeredStandardManifest.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmi-3.0/fmi3LayeredStandardManifest.xsd -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmi-3.0/fmi3ModelDescription.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmi-3.0/fmi3ModelDescription.xsd -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmi-3.0/fmi3Terminal.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmi-3.0/fmi3Terminal.xsd -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmi-3.0/fmi3TerminalsAndIcons.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmi-3.0/fmi3TerminalsAndIcons.xsd -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmi-3.0/fmi3Type.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmi-3.0/fmi3Type.xsd -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmi-3.0/fmi3Unit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmi-3.0/fmi3Unit.xsd -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmi-3.0/fmi3Variable.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmi-3.0/fmi3Variable.xsd -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmi-3.0/fmi3VariableDependency.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmi-3.0/fmi3VariableDependency.xsd -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmu.png -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/fmu_manipulation_toolbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/fmu_manipulation_toolbox.png -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/help.png -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/icon-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/icon-round.png -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/icon.png -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/icon_fmu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/icon_fmu.png -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/license.txt -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/linux32/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/linux64/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/mask.png -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/resources/model.png -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/win32/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/resources/win64/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/split.py -------------------------------------------------------------------------------- /fmu_manipulation_toolbox/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/fmu_manipulation_toolbox/version.py -------------------------------------------------------------------------------- /package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/package.py -------------------------------------------------------------------------------- /remoting/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/remoting/CMakeLists.txt -------------------------------------------------------------------------------- /remoting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/remoting/README.md -------------------------------------------------------------------------------- /remoting/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/remoting/build.bat -------------------------------------------------------------------------------- /remoting/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/remoting/client.c -------------------------------------------------------------------------------- /remoting/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/remoting/client.h -------------------------------------------------------------------------------- /remoting/communication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/remoting/communication.c -------------------------------------------------------------------------------- /remoting/communication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/remoting/communication.h -------------------------------------------------------------------------------- /remoting/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/remoting/config.h.in -------------------------------------------------------------------------------- /remoting/gen_sizeof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/remoting/gen_sizeof.py -------------------------------------------------------------------------------- /remoting/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/remoting/process.c -------------------------------------------------------------------------------- /remoting/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/remoting/process.h -------------------------------------------------------------------------------- /remoting/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/remoting/server.c -------------------------------------------------------------------------------- /remoting/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/remoting/server.h -------------------------------------------------------------------------------- /remoting/test_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/remoting/test_server.c -------------------------------------------------------------------------------- /remoting/test_sizeof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/remoting/test_sizeof.c -------------------------------------------------------------------------------- /remoting/types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/remoting/types.txt -------------------------------------------------------------------------------- /remoting/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/remoting/version.h.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/setup.py -------------------------------------------------------------------------------- /tests/containers/VanDerPol/REF-results-VanDerPol-Container.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/VanDerPol/REF-results-VanDerPol-Container.csv -------------------------------------------------------------------------------- /tests/containers/VanDerPol/REF-results-VanDerPol-vr2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/VanDerPol/REF-results-VanDerPol-vr2.csv -------------------------------------------------------------------------------- /tests/containers/VanDerPol/REF-results-VanDerPol.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/VanDerPol/REF-results-VanDerPol.csv -------------------------------------------------------------------------------- /tests/containers/VanDerPol/VanDerPol-vr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/VanDerPol/VanDerPol-vr.json -------------------------------------------------------------------------------- /tests/containers/VanDerPol/VanDerPol.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/VanDerPol/VanDerPol.fmu -------------------------------------------------------------------------------- /tests/containers/VanDerPol/VanDerPol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/VanDerPol/VanDerPol.json -------------------------------------------------------------------------------- /tests/containers/VanDerPol/sched2.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/VanDerPol/sched2.fmu -------------------------------------------------------------------------------- /tests/containers/VanDerPol/sched3.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/VanDerPol/sched3.fmu -------------------------------------------------------------------------------- /tests/containers/arch/REF-cli-flat-dump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/arch/REF-cli-flat-dump.json -------------------------------------------------------------------------------- /tests/containers/arch/REF-flat-dump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/arch/REF-flat-dump.json -------------------------------------------------------------------------------- /tests/containers/arch/REF-hierarchical-dump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/arch/REF-hierarchical-dump.json -------------------------------------------------------------------------------- /tests/containers/arch/REF-results-flat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/arch/REF-results-flat.csv -------------------------------------------------------------------------------- /tests/containers/arch/REF-results-hierarchical.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/arch/REF-results-hierarchical.csv -------------------------------------------------------------------------------- /tests/containers/arch/REF-results-reversed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/arch/REF-results-reversed.csv -------------------------------------------------------------------------------- /tests/containers/arch/REF-results-sub.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/arch/REF-results-sub.csv -------------------------------------------------------------------------------- /tests/containers/arch/REF-reversed-dump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/arch/REF-reversed-dump.json -------------------------------------------------------------------------------- /tests/containers/arch/cli-flat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/arch/cli-flat.json -------------------------------------------------------------------------------- /tests/containers/arch/flat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/arch/flat.json -------------------------------------------------------------------------------- /tests/containers/arch/gain.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/arch/gain.fmu -------------------------------------------------------------------------------- /tests/containers/arch/hierarchical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/arch/hierarchical.json -------------------------------------------------------------------------------- /tests/containers/arch/integrate.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/arch/integrate.fmu -------------------------------------------------------------------------------- /tests/containers/arch/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/arch/nested.json -------------------------------------------------------------------------------- /tests/containers/arch/reversed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/arch/reversed.json -------------------------------------------------------------------------------- /tests/containers/arch/sine.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/arch/sine.fmu -------------------------------------------------------------------------------- /tests/containers/arch/subdir/gain2.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/arch/subdir/gain2.fmu -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/REF-bouncing-profiling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/REF-bouncing-profiling.json -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/REF-bouncing-seq.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/REF-bouncing-seq.csv -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/REF-bouncing-seq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/REF-bouncing-seq.json -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/REF-bouncing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/REF-bouncing.json -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/REF-container-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/REF-container-3.txt -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/REF-container-profiling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/REF-container-profiling.txt -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/REF-container-seq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/REF-container-seq.txt -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/REF-container.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/REF-container.txt -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/REF-modelDescription-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/REF-modelDescription-3.xml -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/REF-modelDescription-profiling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/REF-modelDescription-profiling.xml -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/REF-results-bouncing-3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/REF-results-bouncing-3.csv -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/REF-results-bouncing-profiling.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/REF-results-bouncing-profiling.csv -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/REF-results-bouncing-seq.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/REF-results-bouncing-seq.csv -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/REF-results-bouncing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/REF-results-bouncing.csv -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/bb_position.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/bb_position.fmu -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/bb_velocity.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/bb_velocity.fmu -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/bouncing-3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/bouncing-3.csv -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/bouncing-profiling.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/bouncing-profiling.csv -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/bouncing-seq.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/bouncing-seq.csv -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/bouncing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/bouncing.csv -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/bouncing_auto.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/bouncing_auto.csv -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/bouncing_unlinked.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/bouncing_unlinked.csv -------------------------------------------------------------------------------- /tests/containers/bouncing_ball/cli-bouncing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/bouncing_ball/cli-bouncing.csv -------------------------------------------------------------------------------- /tests/containers/ssp/REF-bouncing-dump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/ssp/REF-bouncing-dump.json -------------------------------------------------------------------------------- /tests/containers/ssp/REF-results-bouncing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/ssp/REF-results-bouncing.csv -------------------------------------------------------------------------------- /tests/containers/ssp/REF-split-bouncing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/ssp/REF-split-bouncing.json -------------------------------------------------------------------------------- /tests/containers/ssp/bouncing.ssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/ssp/bouncing.ssp -------------------------------------------------------------------------------- /tests/containers/start/REF-container.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/start/REF-container.txt -------------------------------------------------------------------------------- /tests/containers/start/REF-modelDescription.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/start/REF-modelDescription.xml -------------------------------------------------------------------------------- /tests/containers/start/REF-results-slx.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/start/REF-results-slx.csv -------------------------------------------------------------------------------- /tests/containers/start/slx.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/start/slx.fmu -------------------------------------------------------------------------------- /tests/containers/start/slx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/containers/start/slx.json -------------------------------------------------------------------------------- /tests/fmi3/bouncing_ball/bb_position.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/fmi3/bouncing_ball/bb_position.fmu -------------------------------------------------------------------------------- /tests/fmi3/bouncing_ball/bb_velocity.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/fmi3/bouncing_ball/bb_velocity.fmu -------------------------------------------------------------------------------- /tests/fmi3/bouncing_ball/bouncing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/fmi3/bouncing_ball/bouncing.json -------------------------------------------------------------------------------- /tests/fmi3/passthrough/REF-container.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/fmi3/passthrough/REF-container.txt -------------------------------------------------------------------------------- /tests/fmi3/passthrough/REF-results-container-passthrough.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/fmi3/passthrough/REF-results-container-passthrough.csv -------------------------------------------------------------------------------- /tests/fmi3/passthrough/constant.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/fmi3/passthrough/constant.fmu -------------------------------------------------------------------------------- /tests/fmi3/passthrough/not2.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/fmi3/passthrough/not2.fmu -------------------------------------------------------------------------------- /tests/fmi3/passthrough/passthrough.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/fmi3/passthrough/passthrough.fmu -------------------------------------------------------------------------------- /tests/fmi3/passthrough/passthrough.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/fmi3/passthrough/passthrough.json -------------------------------------------------------------------------------- /tests/ls-bus/bus+node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/ls-bus/bus+node.json -------------------------------------------------------------------------------- /tests/operations/REF-bouncing_ball-keeponly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/operations/REF-bouncing_ball-keeponly.csv -------------------------------------------------------------------------------- /tests/operations/REF-bouncing_ball-modified.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/operations/REF-bouncing_ball-modified.csv -------------------------------------------------------------------------------- /tests/operations/REF-bouncing_ball-no-tl.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/operations/REF-bouncing_ball-no-tl.csv -------------------------------------------------------------------------------- /tests/operations/REF-bouncing_ball-removed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/operations/REF-bouncing_ball-removed.csv -------------------------------------------------------------------------------- /tests/operations/REF-bouncing_ball-renamed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/operations/REF-bouncing_ball-renamed.csv -------------------------------------------------------------------------------- /tests/operations/REF-bouncing_ball.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/operations/REF-bouncing_ball.csv -------------------------------------------------------------------------------- /tests/operations/bouncing_ball-modified.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/operations/bouncing_ball-modified.csv -------------------------------------------------------------------------------- /tests/operations/bouncing_ball.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/operations/bouncing_ball.fmu -------------------------------------------------------------------------------- /tests/remoting/REF-results-bouncing_ball-win32.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/remoting/REF-results-bouncing_ball-win32.csv -------------------------------------------------------------------------------- /tests/remoting/REF-results-bouncing_ball-win64.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/remoting/REF-results-bouncing_ball-win64.csv -------------------------------------------------------------------------------- /tests/remoting/bouncing_ball-win32.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/remoting/bouncing_ball-win32.fmu -------------------------------------------------------------------------------- /tests/test_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grouperenault/fmu_manipulation_toolbox/HEAD/tests/test_suite.py --------------------------------------------------------------------------------