-
|
Hello, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
PathView does not appear to ship a built-in FMU/FMPy block today. The extension path is to expose it as a PathSim block/toolbox. PathView extracts block metadata from Python classes via So the practical route would be:
One caveat for the browser version: FMPy and many FMUs involve native binaries or compiled dependencies, which Pyodide generally cannot run. For those, the standalone |
Beta Was this translation helpful? Give feedback.
PathView does not appear to ship a built-in FMU/FMPy block today.
The extension path is to expose it as a PathSim block/toolbox. PathView extracts block metadata from Python classes via
Block.info()and can install/discover runtime toolboxes from PyPI, a wheel URL, or a.pyfile. The generated code then imports the block from that toolbox's import path.So the practical route would be:
Blockwrapper around the FMU/FMPy simulation step you need.Block.info()metadata.One caveat for the browser version: FMPy and many FMUs involve native binaries or compiled dependencies, which Pyodide g…