PythonFMU
PythonFMU copied to clipboard
A lightweight framework that enables the packaging of Python3.x code as co-simulation FMUs
Hello, We have noticed that, when trying to wrap some simple Python model which depends on NumPy we get following error ``` IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW...
@HenningScheufler Fixed your old PR for windows. See #136 PR is still a draft
I installed pythonfmu from [PyPI](https://pypi.org/project/pythonfmu/) via `pip3 install --user python3fmu`. However, when I tried to use the generated FMU OMEdit crashed. After some investigations I found out that the binaries...
This feature enables better portability by including additional binaries in the binaries folder libpythonfmu-export.so now includes the ORIGIN RUNPATH so it will automatically link to binaries on the FMU.
For the linux system, libpythonfmu-export.so has to be unique for every python version and readelf -d libpythonfmu-export.so should link to the corresponding python version (here: 3.7 ) 0x0000000000000001 (NEEDED) Gemeinsame...
I installed pythonfmu by cloning this repository and using the provided `setup.py` script. On the first try I did not generate `pythonfmu/resources/binaries/linux64/libpythonfmu-export.so`. This led to unusable FMUs. I think it...
Hi all, The [FMU checker](https://fmu-check.herokuapp.com/) provided in http://fmi-standard.org/ shows some issues when checking the fmu created with `pythonfmu build`.
Issue encountered with orcaflex: If orcaflex is instantiated in the constructor, subsequent dll calls will fail with "Access violation" type error. If orcaflex is instantiated during e.g. exit_initialilzation_mode, no error...
Once #61 is merged, serialization of the state functions should be tested using FMPy. Maybe other stuff like the XML could be checked too.