├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── .python-version ├── LICENSE.txt ├── README.md ├── docs ├── Rectifier_GUI.png ├── Rectifier_Notebook.png ├── Rectifier_WebApp.png ├── Rectifier_result.png ├── contributing.md ├── hacking.md ├── index.md ├── made-by-3ds.svg ├── pull_request_template.md └── tutorial.md ├── mkdocs.yml ├── native ├── build_binaries.py ├── build_cvode.py ├── build_remoting.py ├── compile_resources.py ├── copy_sources.py ├── download_binaries.py ├── remoting │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── client.c │ ├── client.h │ ├── client_tcp.cpp │ ├── client_test.cpp │ ├── communication.c │ ├── communication.h │ ├── config.h.in │ ├── gen_sizeof.py │ ├── process.c │ ├── process.h │ ├── remote.c │ ├── remote.h │ ├── remoting_tcp.h │ ├── server.c │ ├── server.h │ ├── server_tcp.cpp │ ├── test_server.c │ ├── test_sizeof.c │ └── types.txt └── src │ ├── .gitignore │ ├── CMakeLists.txt │ ├── cswrapper │ ├── .gitignore │ └── cswrapper.c │ ├── fmucontainer │ ├── FMUContainer.c │ ├── FMUContainer.h │ ├── fmi2Functions.c │ └── fmi3Functions.c │ └── logging │ └── logging.c ├── pyproject.toml ├── src └── fmpy │ ├── __init__.py │ ├── __main__.py │ ├── build.py │ ├── c-code │ ├── CMakeLists.txt │ ├── fmi1Functions.h │ ├── fmi2FunctionTypes.h │ ├── fmi2Functions.h │ ├── fmi2TypesPlatform.h │ ├── fmi3FunctionTypes.h │ ├── fmi3Functions.h │ └── fmi3PlatformTypes.h │ ├── cli.py │ ├── cross_check │ ├── __init__.py │ ├── __main__.py │ ├── cross_check.py │ ├── result_tables.py │ └── validate_vendor_repo.py │ ├── cswrapper │ ├── __init__.py │ └── license.txt │ ├── examples │ ├── __init__.py │ ├── continue_simulation.py │ ├── coupled_clutches.py │ ├── custom_input.py │ ├── efficient_loops.py │ └── parameter_variation.py │ ├── fmi1.py │ ├── fmi2.py │ ├── fmi3.py │ ├── fmucontainer │ ├── __init__.py │ ├── binaries │ │ ├── darwin64 │ │ │ └── .gitignore │ │ ├── linux64 │ │ │ └── .gitignore │ │ ├── win32 │ │ │ └── .gitignore │ │ └── win64 │ │ │ └── .gitignore │ ├── documentation │ │ └── LICENSE.txt │ ├── sources │ │ ├── .gitignore │ │ └── buildDescription.xml │ └── templates │ │ ├── FMI2.xml │ │ └── FMI3.xml │ ├── gui │ ├── BuildDialog.py │ ├── BuildThread.py │ ├── MainWindow.py │ ├── NewFMUDialog.py │ ├── TableDialog.py │ ├── __init__.py │ ├── __main__.py │ ├── forms │ │ ├── AboutDialog.ui │ │ ├── BuildDialog.ui │ │ ├── MainWindow.ui │ │ ├── NewFMUDialog.ui │ │ └── TableDialog.ui │ ├── generated │ │ ├── .gitignore │ │ └── __init__.py │ ├── icons │ │ ├── app_icon.ico │ │ ├── dark │ │ │ ├── arrow-clockwise.svg │ │ │ ├── book.svg │ │ │ ├── debug.svg │ │ │ ├── error.svg │ │ │ ├── file-earmark-zip.svg │ │ │ ├── file-new.svg │ │ │ ├── filter.svg │ │ │ ├── floppy.svg │ │ │ ├── folder-open.svg │ │ │ ├── gear.svg │ │ │ ├── graph.svg │ │ │ ├── hammer.svg │ │ │ ├── info.svg │ │ │ ├── list-task.svg │ │ │ ├── list.svg │ │ │ ├── play.svg │ │ │ ├── stop.svg │ │ │ └── warning.svg │ │ ├── icons.afdesign │ │ ├── icons.qrc │ │ ├── index.theme │ │ └── light │ │ │ ├── arrow-clockwise.svg │ │ │ ├── binary_input.svg │ │ │ ├── binary_output.svg │ │ │ ├── binary_parameter.svg │ │ │ ├── binary_variable.svg │ │ │ ├── book.svg │ │ │ ├── boolean_input.svg │ │ │ ├── boolean_output.svg │ │ │ ├── boolean_parameter.svg │ │ │ ├── boolean_variable.svg │ │ │ ├── debug.svg │ │ │ ├── error.svg │ │ │ ├── file-earmark-zip.svg │ │ │ ├── file-new.svg │ │ │ ├── filter.svg │ │ │ ├── float_input.svg │ │ │ ├── float_output.svg │ │ │ ├── float_parameter.svg │ │ │ ├── float_variable.svg │ │ │ ├── floppy.svg │ │ │ ├── folder-open.svg │ │ │ ├── gear.svg │ │ │ ├── graph.svg │ │ │ ├── hammer.svg │ │ │ ├── info.svg │ │ │ ├── integer_input.svg │ │ │ ├── integer_output.svg │ │ │ ├── integer_parameter.svg │ │ │ ├── integer_variable.svg │ │ │ ├── list-task.svg │ │ │ ├── list.svg │ │ │ ├── play.svg │ │ │ ├── stop.svg │ │ │ ├── string_input.svg │ │ │ ├── string_output.svg │ │ │ ├── string_parameter.svg │ │ │ ├── string_variable.svg │ │ │ ├── subsystem.svg │ │ │ ├── toolbar.afdesign │ │ │ └── warning.svg │ ├── log.py │ ├── model.py │ └── simulation.py │ ├── logging │ ├── __init__.py │ ├── darwin64 │ │ └── .gitignore │ ├── linux64 │ │ └── .gitignore │ ├── win32 │ │ └── .gitignore │ └── win64 │ │ └── .gitignore │ ├── model_description.py │ ├── remoting │ ├── license.txt │ ├── linux64 │ │ └── .gitignore │ ├── win32 │ │ └── .gitignore │ └── win64 │ │ └── .gitignore │ ├── schema │ ├── fmi1 │ │ ├── fmiBaseUnit.xsd │ │ ├── fmiImplementation.xsd │ │ ├── fmiModelDescription.xsd │ │ ├── fmiScalarVariable.xsd │ │ └── fmiType.xsd │ ├── fmi2 │ │ ├── fmi2Annotation.xsd │ │ ├── fmi2AttributeGroups.xsd │ │ ├── fmi2ModelDescription.xsd │ │ ├── fmi2ScalarVariable.xsd │ │ ├── fmi2Type.xsd │ │ ├── fmi2Unit.xsd │ │ └── fmi2VariableDependency.xsd │ └── fmi3 │ │ ├── fmi3Annotation.xsd │ │ ├── fmi3AttributeGroups.xsd │ │ ├── fmi3BuildDescription.xsd │ │ ├── fmi3InterfaceType.xsd │ │ ├── fmi3LayeredStandardManifest.xsd │ │ ├── fmi3ModelDescription.xsd │ │ ├── fmi3Terminal.xsd │ │ ├── fmi3TerminalsAndIcons.xsd │ │ ├── fmi3Type.xsd │ │ ├── fmi3Unit.xsd │ │ ├── fmi3Variable.xsd │ │ └── fmi3VariableDependency.xsd │ ├── simulation.py │ ├── ssp │ ├── __init__.py │ ├── schema │ │ ├── SystemStructureCommon.xsd │ │ ├── SystemStructureDescription.xsd │ │ ├── SystemStructureDescription11.xsd │ │ ├── SystemStructureParameterMapping.xsd │ │ ├── SystemStructureParameterValues.xsd │ │ └── SystemStructureSignalDictionary.xsd │ ├── simulate.py │ ├── simulation.py │ └── ssd.py │ ├── sundials │ ├── __init__.py │ ├── cvode.py │ ├── cvode_ls.py │ ├── libraries.py │ ├── nvector_serial.py │ ├── sundials_linearsolver.py │ ├── sundials_matrix.py │ ├── sundials_nvector.py │ ├── sundials_types.py │ ├── sundials_version.py │ ├── sunlinsol_dense.py │ └── sunmatrix_dense.py │ ├── template.py │ ├── templates │ ├── CMakeLists.template │ ├── buildDescription.xml │ ├── model.c │ └── modelDescription.xml │ ├── util.py │ ├── validation.py │ └── webapp │ ├── __init__.py │ ├── __main__.py │ └── assets │ └── fmpy.css ├── tests ├── .gitignore ├── conftest.py ├── resources │ ├── .gitignore │ ├── Ball.fmu │ ├── Bounce.fmu │ ├── ControlledDrivetrain_in.csv │ ├── Controller.fmu │ ├── Drivetrain.fmu │ ├── FMITest │ │ ├── Models │ │ │ ├── BouncingBall.mo │ │ │ ├── Feedthrough.mo │ │ │ ├── Integrator.mo │ │ │ ├── Stair.mo │ │ │ ├── ThreeSprings.mo │ │ │ ├── Types.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ └── Ticker.fmu ├── run_ompython.py ├── test_c_code.py ├── test_command_line.py ├── test_common_functions.py ├── test_cswrapper.py ├── test_cvode.py ├── test_examples.py ├── test_extracted_fmu.py ├── test_fmu_container.py ├── test_fmu_info.py ├── test_fmu_state.py ├── test_get_directional_derivative.py ├── test_get_output_derivatives.py ├── test_get_start_values.py ├── test_input.py ├── test_jupyter_notebook.py ├── test_output_grid.py ├── test_read_csv.py ├── test_reference_fmus.py ├── test_remoting.py ├── test_remove_source_code.py ├── test_ssp.py ├── test_start_value_units.py ├── test_template.py ├── test_type_definitions.py ├── test_validation.py └── test_variable_alias.py └── uv.lock /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/.gitmodules -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/README.md -------------------------------------------------------------------------------- /docs/Rectifier_GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/docs/Rectifier_GUI.png -------------------------------------------------------------------------------- /docs/Rectifier_Notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/docs/Rectifier_Notebook.png -------------------------------------------------------------------------------- /docs/Rectifier_WebApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/docs/Rectifier_WebApp.png -------------------------------------------------------------------------------- /docs/Rectifier_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/docs/Rectifier_result.png -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/hacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/docs/hacking.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/made-by-3ds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/docs/made-by-3ds.svg -------------------------------------------------------------------------------- /docs/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/docs/pull_request_template.md -------------------------------------------------------------------------------- /docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/docs/tutorial.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /native/build_binaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/build_binaries.py -------------------------------------------------------------------------------- /native/build_cvode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/build_cvode.py -------------------------------------------------------------------------------- /native/build_remoting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/build_remoting.py -------------------------------------------------------------------------------- /native/compile_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/compile_resources.py -------------------------------------------------------------------------------- /native/copy_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/copy_sources.py -------------------------------------------------------------------------------- /native/download_binaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/download_binaries.py -------------------------------------------------------------------------------- /native/remoting/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/.gitignore -------------------------------------------------------------------------------- /native/remoting/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/CMakeLists.txt -------------------------------------------------------------------------------- /native/remoting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/README.md -------------------------------------------------------------------------------- /native/remoting/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/client.c -------------------------------------------------------------------------------- /native/remoting/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/client.h -------------------------------------------------------------------------------- /native/remoting/client_tcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/client_tcp.cpp -------------------------------------------------------------------------------- /native/remoting/client_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/client_test.cpp -------------------------------------------------------------------------------- /native/remoting/communication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/communication.c -------------------------------------------------------------------------------- /native/remoting/communication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/communication.h -------------------------------------------------------------------------------- /native/remoting/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/config.h.in -------------------------------------------------------------------------------- /native/remoting/gen_sizeof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/gen_sizeof.py -------------------------------------------------------------------------------- /native/remoting/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/process.c -------------------------------------------------------------------------------- /native/remoting/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/process.h -------------------------------------------------------------------------------- /native/remoting/remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/remote.c -------------------------------------------------------------------------------- /native/remoting/remote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/remote.h -------------------------------------------------------------------------------- /native/remoting/remoting_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/remoting_tcp.h -------------------------------------------------------------------------------- /native/remoting/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/server.c -------------------------------------------------------------------------------- /native/remoting/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/server.h -------------------------------------------------------------------------------- /native/remoting/server_tcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/server_tcp.cpp -------------------------------------------------------------------------------- /native/remoting/test_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/test_server.c -------------------------------------------------------------------------------- /native/remoting/test_sizeof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/test_sizeof.c -------------------------------------------------------------------------------- /native/remoting/types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/remoting/types.txt -------------------------------------------------------------------------------- /native/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/src/.gitignore -------------------------------------------------------------------------------- /native/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/src/CMakeLists.txt -------------------------------------------------------------------------------- /native/src/cswrapper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/src/cswrapper/.gitignore -------------------------------------------------------------------------------- /native/src/cswrapper/cswrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/src/cswrapper/cswrapper.c -------------------------------------------------------------------------------- /native/src/fmucontainer/FMUContainer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/src/fmucontainer/FMUContainer.c -------------------------------------------------------------------------------- /native/src/fmucontainer/FMUContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/src/fmucontainer/FMUContainer.h -------------------------------------------------------------------------------- /native/src/fmucontainer/fmi2Functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/src/fmucontainer/fmi2Functions.c -------------------------------------------------------------------------------- /native/src/fmucontainer/fmi3Functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/src/fmucontainer/fmi3Functions.c -------------------------------------------------------------------------------- /native/src/logging/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/native/src/logging/logging.c -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/fmpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/__init__.py -------------------------------------------------------------------------------- /src/fmpy/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/__main__.py -------------------------------------------------------------------------------- /src/fmpy/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/build.py -------------------------------------------------------------------------------- /src/fmpy/c-code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/c-code/CMakeLists.txt -------------------------------------------------------------------------------- /src/fmpy/c-code/fmi1Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/c-code/fmi1Functions.h -------------------------------------------------------------------------------- /src/fmpy/c-code/fmi2FunctionTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/c-code/fmi2FunctionTypes.h -------------------------------------------------------------------------------- /src/fmpy/c-code/fmi2Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/c-code/fmi2Functions.h -------------------------------------------------------------------------------- /src/fmpy/c-code/fmi2TypesPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/c-code/fmi2TypesPlatform.h -------------------------------------------------------------------------------- /src/fmpy/c-code/fmi3FunctionTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/c-code/fmi3FunctionTypes.h -------------------------------------------------------------------------------- /src/fmpy/c-code/fmi3Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/c-code/fmi3Functions.h -------------------------------------------------------------------------------- /src/fmpy/c-code/fmi3PlatformTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/c-code/fmi3PlatformTypes.h -------------------------------------------------------------------------------- /src/fmpy/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/cli.py -------------------------------------------------------------------------------- /src/fmpy/cross_check/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/cross_check/__init__.py -------------------------------------------------------------------------------- /src/fmpy/cross_check/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/cross_check/__main__.py -------------------------------------------------------------------------------- /src/fmpy/cross_check/cross_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/cross_check/cross_check.py -------------------------------------------------------------------------------- /src/fmpy/cross_check/result_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/cross_check/result_tables.py -------------------------------------------------------------------------------- /src/fmpy/cross_check/validate_vendor_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/cross_check/validate_vendor_repo.py -------------------------------------------------------------------------------- /src/fmpy/cswrapper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/cswrapper/__init__.py -------------------------------------------------------------------------------- /src/fmpy/cswrapper/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/cswrapper/license.txt -------------------------------------------------------------------------------- /src/fmpy/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fmpy/examples/continue_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/examples/continue_simulation.py -------------------------------------------------------------------------------- /src/fmpy/examples/coupled_clutches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/examples/coupled_clutches.py -------------------------------------------------------------------------------- /src/fmpy/examples/custom_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/examples/custom_input.py -------------------------------------------------------------------------------- /src/fmpy/examples/efficient_loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/examples/efficient_loops.py -------------------------------------------------------------------------------- /src/fmpy/examples/parameter_variation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/examples/parameter_variation.py -------------------------------------------------------------------------------- /src/fmpy/fmi1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/fmi1.py -------------------------------------------------------------------------------- /src/fmpy/fmi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/fmi2.py -------------------------------------------------------------------------------- /src/fmpy/fmi3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/fmi3.py -------------------------------------------------------------------------------- /src/fmpy/fmucontainer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/fmucontainer/__init__.py -------------------------------------------------------------------------------- /src/fmpy/fmucontainer/binaries/darwin64/.gitignore: -------------------------------------------------------------------------------- 1 | FMUContainer.dylib 2 | -------------------------------------------------------------------------------- /src/fmpy/fmucontainer/binaries/linux64/.gitignore: -------------------------------------------------------------------------------- 1 | FMUContainer.so 2 | -------------------------------------------------------------------------------- /src/fmpy/fmucontainer/binaries/win32/.gitignore: -------------------------------------------------------------------------------- 1 | FMUContainer.dll 2 | -------------------------------------------------------------------------------- /src/fmpy/fmucontainer/binaries/win64/.gitignore: -------------------------------------------------------------------------------- 1 | FMUContainer.dll 2 | -------------------------------------------------------------------------------- /src/fmpy/fmucontainer/documentation/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/fmucontainer/documentation/LICENSE.txt -------------------------------------------------------------------------------- /src/fmpy/fmucontainer/sources/.gitignore: -------------------------------------------------------------------------------- 1 | # FMU sources 2 | *.c 3 | *.h 4 | -------------------------------------------------------------------------------- /src/fmpy/fmucontainer/sources/buildDescription.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/fmucontainer/sources/buildDescription.xml -------------------------------------------------------------------------------- /src/fmpy/fmucontainer/templates/FMI2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/fmucontainer/templates/FMI2.xml -------------------------------------------------------------------------------- /src/fmpy/fmucontainer/templates/FMI3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/fmucontainer/templates/FMI3.xml -------------------------------------------------------------------------------- /src/fmpy/gui/BuildDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/BuildDialog.py -------------------------------------------------------------------------------- /src/fmpy/gui/BuildThread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/BuildThread.py -------------------------------------------------------------------------------- /src/fmpy/gui/MainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/MainWindow.py -------------------------------------------------------------------------------- /src/fmpy/gui/NewFMUDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/NewFMUDialog.py -------------------------------------------------------------------------------- /src/fmpy/gui/TableDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/TableDialog.py -------------------------------------------------------------------------------- /src/fmpy/gui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/__init__.py -------------------------------------------------------------------------------- /src/fmpy/gui/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/__main__.py -------------------------------------------------------------------------------- /src/fmpy/gui/forms/AboutDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/forms/AboutDialog.ui -------------------------------------------------------------------------------- /src/fmpy/gui/forms/BuildDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/forms/BuildDialog.ui -------------------------------------------------------------------------------- /src/fmpy/gui/forms/MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/forms/MainWindow.ui -------------------------------------------------------------------------------- /src/fmpy/gui/forms/NewFMUDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/forms/NewFMUDialog.ui -------------------------------------------------------------------------------- /src/fmpy/gui/forms/TableDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/forms/TableDialog.ui -------------------------------------------------------------------------------- /src/fmpy/gui/generated/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !__init__.py 4 | -------------------------------------------------------------------------------- /src/fmpy/gui/generated/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fmpy/gui/icons/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/app_icon.ico -------------------------------------------------------------------------------- /src/fmpy/gui/icons/dark/arrow-clockwise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/dark/arrow-clockwise.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/dark/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/dark/book.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/dark/debug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/dark/debug.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/dark/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/dark/error.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/dark/file-earmark-zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/dark/file-earmark-zip.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/dark/file-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/dark/file-new.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/dark/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/dark/filter.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/dark/floppy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/dark/floppy.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/dark/folder-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/dark/folder-open.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/dark/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/dark/gear.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/dark/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/dark/graph.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/dark/hammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/dark/hammer.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/dark/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/dark/info.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/dark/list-task.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/dark/list-task.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/dark/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/dark/list.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/dark/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/dark/play.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/dark/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/dark/stop.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/dark/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/dark/warning.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/icons.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/icons.afdesign -------------------------------------------------------------------------------- /src/fmpy/gui/icons/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/icons.qrc -------------------------------------------------------------------------------- /src/fmpy/gui/icons/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/index.theme -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/arrow-clockwise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/arrow-clockwise.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/binary_input.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/binary_input.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/binary_output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/binary_output.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/binary_parameter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/binary_parameter.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/binary_variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/binary_variable.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/book.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/boolean_input.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/boolean_input.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/boolean_output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/boolean_output.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/boolean_parameter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/boolean_parameter.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/boolean_variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/boolean_variable.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/debug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/debug.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/error.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/file-earmark-zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/file-earmark-zip.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/file-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/file-new.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/filter.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/float_input.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/float_input.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/float_output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/float_output.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/float_parameter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/float_parameter.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/float_variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/float_variable.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/floppy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/floppy.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/folder-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/folder-open.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/gear.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/graph.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/hammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/hammer.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/info.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/integer_input.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/integer_input.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/integer_output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/integer_output.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/integer_parameter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/integer_parameter.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/integer_variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/integer_variable.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/list-task.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/list-task.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/list.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/play.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/stop.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/string_input.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/string_input.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/string_output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/string_output.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/string_parameter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/string_parameter.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/string_variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/string_variable.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/subsystem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/subsystem.svg -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/toolbar.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/toolbar.afdesign -------------------------------------------------------------------------------- /src/fmpy/gui/icons/light/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/icons/light/warning.svg -------------------------------------------------------------------------------- /src/fmpy/gui/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/log.py -------------------------------------------------------------------------------- /src/fmpy/gui/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/model.py -------------------------------------------------------------------------------- /src/fmpy/gui/simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/gui/simulation.py -------------------------------------------------------------------------------- /src/fmpy/logging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/logging/__init__.py -------------------------------------------------------------------------------- /src/fmpy/logging/darwin64/.gitignore: -------------------------------------------------------------------------------- 1 | logging.dylib 2 | -------------------------------------------------------------------------------- /src/fmpy/logging/linux64/.gitignore: -------------------------------------------------------------------------------- 1 | logging.so 2 | -------------------------------------------------------------------------------- /src/fmpy/logging/win32/.gitignore: -------------------------------------------------------------------------------- 1 | logging.dll 2 | -------------------------------------------------------------------------------- /src/fmpy/logging/win64/.gitignore: -------------------------------------------------------------------------------- 1 | logging.dll 2 | -------------------------------------------------------------------------------- /src/fmpy/model_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/model_description.py -------------------------------------------------------------------------------- /src/fmpy/remoting/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/remoting/license.txt -------------------------------------------------------------------------------- /src/fmpy/remoting/linux64/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/fmpy/remoting/win32/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/fmpy/remoting/win64/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/fmpy/schema/fmi1/fmiBaseUnit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi1/fmiBaseUnit.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi1/fmiImplementation.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi1/fmiImplementation.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi1/fmiModelDescription.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi1/fmiModelDescription.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi1/fmiScalarVariable.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi1/fmiScalarVariable.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi1/fmiType.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi1/fmiType.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi2/fmi2Annotation.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi2/fmi2Annotation.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi2/fmi2AttributeGroups.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi2/fmi2AttributeGroups.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi2/fmi2ModelDescription.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi2/fmi2ModelDescription.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi2/fmi2ScalarVariable.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi2/fmi2ScalarVariable.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi2/fmi2Type.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi2/fmi2Type.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi2/fmi2Unit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi2/fmi2Unit.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi2/fmi2VariableDependency.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi2/fmi2VariableDependency.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi3/fmi3Annotation.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi3/fmi3Annotation.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi3/fmi3AttributeGroups.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi3/fmi3AttributeGroups.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi3/fmi3BuildDescription.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi3/fmi3BuildDescription.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi3/fmi3InterfaceType.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi3/fmi3InterfaceType.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi3/fmi3LayeredStandardManifest.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi3/fmi3LayeredStandardManifest.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi3/fmi3ModelDescription.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi3/fmi3ModelDescription.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi3/fmi3Terminal.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi3/fmi3Terminal.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi3/fmi3TerminalsAndIcons.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi3/fmi3TerminalsAndIcons.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi3/fmi3Type.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi3/fmi3Type.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi3/fmi3Unit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi3/fmi3Unit.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi3/fmi3Variable.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi3/fmi3Variable.xsd -------------------------------------------------------------------------------- /src/fmpy/schema/fmi3/fmi3VariableDependency.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/schema/fmi3/fmi3VariableDependency.xsd -------------------------------------------------------------------------------- /src/fmpy/simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/simulation.py -------------------------------------------------------------------------------- /src/fmpy/ssp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fmpy/ssp/schema/SystemStructureCommon.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/ssp/schema/SystemStructureCommon.xsd -------------------------------------------------------------------------------- /src/fmpy/ssp/schema/SystemStructureDescription.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/ssp/schema/SystemStructureDescription.xsd -------------------------------------------------------------------------------- /src/fmpy/ssp/schema/SystemStructureDescription11.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/ssp/schema/SystemStructureDescription11.xsd -------------------------------------------------------------------------------- /src/fmpy/ssp/schema/SystemStructureParameterMapping.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/ssp/schema/SystemStructureParameterMapping.xsd -------------------------------------------------------------------------------- /src/fmpy/ssp/schema/SystemStructureParameterValues.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/ssp/schema/SystemStructureParameterValues.xsd -------------------------------------------------------------------------------- /src/fmpy/ssp/schema/SystemStructureSignalDictionary.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/ssp/schema/SystemStructureSignalDictionary.xsd -------------------------------------------------------------------------------- /src/fmpy/ssp/simulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/ssp/simulate.py -------------------------------------------------------------------------------- /src/fmpy/ssp/simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/ssp/simulation.py -------------------------------------------------------------------------------- /src/fmpy/ssp/ssd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/ssp/ssd.py -------------------------------------------------------------------------------- /src/fmpy/sundials/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/sundials/__init__.py -------------------------------------------------------------------------------- /src/fmpy/sundials/cvode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/sundials/cvode.py -------------------------------------------------------------------------------- /src/fmpy/sundials/cvode_ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/sundials/cvode_ls.py -------------------------------------------------------------------------------- /src/fmpy/sundials/libraries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/sundials/libraries.py -------------------------------------------------------------------------------- /src/fmpy/sundials/nvector_serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/sundials/nvector_serial.py -------------------------------------------------------------------------------- /src/fmpy/sundials/sundials_linearsolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/sundials/sundials_linearsolver.py -------------------------------------------------------------------------------- /src/fmpy/sundials/sundials_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/sundials/sundials_matrix.py -------------------------------------------------------------------------------- /src/fmpy/sundials/sundials_nvector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/sundials/sundials_nvector.py -------------------------------------------------------------------------------- /src/fmpy/sundials/sundials_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/sundials/sundials_types.py -------------------------------------------------------------------------------- /src/fmpy/sundials/sundials_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/sundials/sundials_version.py -------------------------------------------------------------------------------- /src/fmpy/sundials/sunlinsol_dense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/sundials/sunlinsol_dense.py -------------------------------------------------------------------------------- /src/fmpy/sundials/sunmatrix_dense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/sundials/sunmatrix_dense.py -------------------------------------------------------------------------------- /src/fmpy/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/template.py -------------------------------------------------------------------------------- /src/fmpy/templates/CMakeLists.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/templates/CMakeLists.template -------------------------------------------------------------------------------- /src/fmpy/templates/buildDescription.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/templates/buildDescription.xml -------------------------------------------------------------------------------- /src/fmpy/templates/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/templates/model.c -------------------------------------------------------------------------------- /src/fmpy/templates/modelDescription.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/templates/modelDescription.xml -------------------------------------------------------------------------------- /src/fmpy/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/util.py -------------------------------------------------------------------------------- /src/fmpy/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/validation.py -------------------------------------------------------------------------------- /src/fmpy/webapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fmpy/webapp/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/webapp/__main__.py -------------------------------------------------------------------------------- /src/fmpy/webapp/assets/fmpy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/src/fmpy/webapp/assets/fmpy.css -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | # test resources 2 | Reference-FMUs-*/ 3 | *.ipynb 4 | work/ 5 | 6 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/resources/.gitignore: -------------------------------------------------------------------------------- 1 | !*.fmu 2 | !*.csv 3 | -------------------------------------------------------------------------------- /tests/resources/Ball.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/resources/Ball.fmu -------------------------------------------------------------------------------- /tests/resources/Bounce.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/resources/Bounce.fmu -------------------------------------------------------------------------------- /tests/resources/ControlledDrivetrain_in.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/resources/ControlledDrivetrain_in.csv -------------------------------------------------------------------------------- /tests/resources/Controller.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/resources/Controller.fmu -------------------------------------------------------------------------------- /tests/resources/Drivetrain.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/resources/Drivetrain.fmu -------------------------------------------------------------------------------- /tests/resources/FMITest/Models/BouncingBall.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/resources/FMITest/Models/BouncingBall.mo -------------------------------------------------------------------------------- /tests/resources/FMITest/Models/Feedthrough.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/resources/FMITest/Models/Feedthrough.mo -------------------------------------------------------------------------------- /tests/resources/FMITest/Models/Integrator.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/resources/FMITest/Models/Integrator.mo -------------------------------------------------------------------------------- /tests/resources/FMITest/Models/Stair.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/resources/FMITest/Models/Stair.mo -------------------------------------------------------------------------------- /tests/resources/FMITest/Models/ThreeSprings.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/resources/FMITest/Models/ThreeSprings.mo -------------------------------------------------------------------------------- /tests/resources/FMITest/Models/Types.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/resources/FMITest/Models/Types.mo -------------------------------------------------------------------------------- /tests/resources/FMITest/Models/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/resources/FMITest/Models/package.mo -------------------------------------------------------------------------------- /tests/resources/FMITest/Models/package.order: -------------------------------------------------------------------------------- 1 | BouncingBall 2 | Feedthrough 3 | Integrator 4 | Stair 5 | ThreeSprings 6 | Types 7 | -------------------------------------------------------------------------------- /tests/resources/FMITest/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/resources/FMITest/package.mo -------------------------------------------------------------------------------- /tests/resources/FMITest/package.order: -------------------------------------------------------------------------------- 1 | Models 2 | -------------------------------------------------------------------------------- /tests/resources/Ticker.fmu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/resources/Ticker.fmu -------------------------------------------------------------------------------- /tests/run_ompython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/run_ompython.py -------------------------------------------------------------------------------- /tests/test_c_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_c_code.py -------------------------------------------------------------------------------- /tests/test_command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_command_line.py -------------------------------------------------------------------------------- /tests/test_common_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_common_functions.py -------------------------------------------------------------------------------- /tests/test_cswrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_cswrapper.py -------------------------------------------------------------------------------- /tests/test_cvode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_cvode.py -------------------------------------------------------------------------------- /tests/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_examples.py -------------------------------------------------------------------------------- /tests/test_extracted_fmu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_extracted_fmu.py -------------------------------------------------------------------------------- /tests/test_fmu_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_fmu_container.py -------------------------------------------------------------------------------- /tests/test_fmu_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_fmu_info.py -------------------------------------------------------------------------------- /tests/test_fmu_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_fmu_state.py -------------------------------------------------------------------------------- /tests/test_get_directional_derivative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_get_directional_derivative.py -------------------------------------------------------------------------------- /tests/test_get_output_derivatives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_get_output_derivatives.py -------------------------------------------------------------------------------- /tests/test_get_start_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_get_start_values.py -------------------------------------------------------------------------------- /tests/test_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_input.py -------------------------------------------------------------------------------- /tests/test_jupyter_notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_jupyter_notebook.py -------------------------------------------------------------------------------- /tests/test_output_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_output_grid.py -------------------------------------------------------------------------------- /tests/test_read_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_read_csv.py -------------------------------------------------------------------------------- /tests/test_reference_fmus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_reference_fmus.py -------------------------------------------------------------------------------- /tests/test_remoting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_remoting.py -------------------------------------------------------------------------------- /tests/test_remove_source_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_remove_source_code.py -------------------------------------------------------------------------------- /tests/test_ssp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_ssp.py -------------------------------------------------------------------------------- /tests/test_start_value_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_start_value_units.py -------------------------------------------------------------------------------- /tests/test_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_template.py -------------------------------------------------------------------------------- /tests/test_type_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_type_definitions.py -------------------------------------------------------------------------------- /tests/test_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_validation.py -------------------------------------------------------------------------------- /tests/test_variable_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/tests/test_variable_alias.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CATIA-Systems/FMPy/HEAD/uv.lock --------------------------------------------------------------------------------