Skip to main content

A lightweight framework that enables the packaging of Python3.x code as co-simulation FMUs.

Project description

PythonFMU

A lightweight framework that enables the packaging of Python3.x code as co-simulation FMUs.

License: MIT contributions welcome

CI PyPI

Gitter

How do I build an FMU from python code?

  1. Install pythonfmu package:
pip install pythonfmu
  1. Create a new class extending the Fmi2Slave class declared in the pythonfmu.fmi2slave module (see below for an example).
  2. Run pythonfmu-builder to create the fmu.
usage: pythonfmu-builder [-h] -f SCRIPT_FILE [-d DEST] [--doc DOCUMENTATION_FOLDER]
                         [--no-external-tool] [--no-variable-step] [--interpolate-inputs] [--only-one-per-process]
                         [--handle-state] [--serialize-state] [--use-memory-management]
                         [Project files [Project files ...]]

Build a FMU from a Python script.

positional arguments:
  Project files         Additional project files required by the Python script.

optional arguments:
  -h, --help            show this help message and exit
  -f SCRIPT_FILE, --file SCRIPT_FILE
                        Path to the Python script.
  -d DEST, --dest DEST  Where to save the FMU.
  --doc DOCUMENTATION_FOLDER
                        Documentation folder to include in the FMU.

  --no-external-tool    If given, needsExecutionTool=false
  --no-variable-step    If given, canHandleVariableCommunicationStepSize=false
  --interpolate-inputs  If given, canInterpolateInputs=true
  --only-one-per-process
                        If given, canBeInstantiatedOnlyOncePerProcess=true
  --handle-state        If given, canGetAndSetFMUstate=true
  --serialize-state     If given, canSerializeFMUstate=true
  --use-memory-management
                        If given, canNotUseMemoryManagementFunctions=false
Example:
Write the script
from pythonfmu import Fmi2Causality, Fmi2Slave, Boolean, Integer, Real, String


class PythonSlave(Fmi2Slave):

    author = "John Doe"
    description = "A simple description"

    def __init__(self, **kwargs):
        super().__init__(**kwargs)

        self.intOut = 1
        self.realOut = 3.0
        self.booleanVariable = True
        self.stringVariable = "Hello World!"
        self.register_variable(Integer("intOut", causality=Fmi2Causality.output))
        self.register_variable(Real("realOut", causality=Fmi2Causality.output))
        self.register_variable(Boolean("booleanVariable", causality=Fmi2Causality.local))
        self.register_variable(String("stringVariable", causality=Fmi2Causality.local))

    def do_step(self, current_time, step_size):
        return True
Create the FMU
pythonfmu-builder -f pythonslave.py myproject

In this example a python class named PythonSlave that extends Fmi2Slave is declared in a file named pythonslave.py, where myproject is an optional folder containing additional project files required by the python script. Project folders such as this will be recursively copied into the FMU. Multiple project files/folders may be added.

Test it online

Binder

Note

PythonFMU does not bundle Python, which makes it a tool coupling solution. This means that you can not expect the generated FMU to work on a different system (The system would need a compatible Python version and libraries). But to ease its usage the wrapper uses the limited Python API, making the pre-built binaries for Linux and Windows 64-bits compatible with any Python 3 environment. If you need to compile the wrapper for a specific configuration, you will need CMake and a C++ compiler. The commands for building the wrapper on Linux and on Windows can be seen in the GitHub workflow.

PythonFMU does not automatically resolve 3rd party dependencies. If your code includes e.g. numpy, the target system also needs to have numpy installed.


Would you rather build FMUs in Java? Check out FMI4j!
Need to distribute your FMUs? FMU-proxy to the rescue!

Credits

This works has been possible thanks to the contributions of @markaren from NTNU-IHB and @fcollonval from Safran SA.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pythonfmu-0.5.0.tar.gz (298.8 kB view details)

Uploaded Source

Built Distribution

pythonfmu-0.5.0-py3-none-any.whl (316.1 kB view details)

Uploaded Python 3

File details

Details for the file pythonfmu-0.5.0.tar.gz.

File metadata

  • Download URL: pythonfmu-0.5.0.tar.gz
  • Upload date:
  • Size: 298.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.6.8

File hashes

Hashes for pythonfmu-0.5.0.tar.gz
Algorithm Hash digest
SHA256 4afb4f5bd6eefbf6b3cff6814373b4f9250d4c41ad4a612aec4e5c6b5e4ef58b
MD5 8b37397766b9ab0698e5e2743c80c401
BLAKE2b-256 3494f4ea2e8e6a0f91c0d5cf29756084a965e0489a991cfdaf10521ffc7c8cfc

See more details on using hashes here.

File details

Details for the file pythonfmu-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: pythonfmu-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 316.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.6.8

File hashes

Hashes for pythonfmu-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5c0af04b6fca0cf08d8f3c5f1c4f2c0fd99e586f649a65bcdb3f79974a4fc1f1
MD5 543600e22757c682a5c7a3ec0bfcd0a4
BLAKE2b-256 9674526c7a327324c230dc11bbe9a02ecc5a732c33e35dabc76e21de18295c80

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page