Export Standalone FMU with External C++ Code is not working

3 Ansichten (letzte 30 Tage)
leo troppmann
leo troppmann am 25 Okt. 2022
Beantwortet: Yash am 20 Jan. 2025
I tryed to implement the example: Export Standalone FMU with External C++ Code from the MathWorks page:https://de.mathworks.com/help/slcompiler/gs/export-standalon-fmu-with-external-cplusplus-code.html
even though I got the modell runing in Matlab I can not export it as an FMU. I get the following Massage:
Can anybody help me?
  1 Kommentar
Yash Sharma
Yash Sharma am 5 Sep. 2023
I encountered a similar error while following the provided documentation.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Yash
Yash am 20 Jan. 2025
The error message indicates that MATLAB is unable to locate FMUExportWithExternalCPP.dll in its path, preventing the creation of the harness model. The current example uses the command:
exportToFMU('FMUExportWithExternalCPP', 'FMIVersion', '2.0', 'FMUType', 'CS', 'CreateModelAfterGeneratingFMU','on');
I would suggest removing the argument CreateModelAfterGeneratingFMU and manually create the harness model instead.
exportToFMU('FMUExportWithExternalCPP', 'FMIVersion', '2.0', 'FMUType', 'CS');
A possible cause for this issue might be that the system's "PATH" environment variable does not include the path to the MATLAB libraries from the specific release used for exporting the FMU, or that another version's path takes precedence. Please ensure that the path "C:\Program Files\MATLAB\<your MATLAB release>\bin\win64" (or its equivalent for your setup) is added to the environment variable and prioritized above paths for other MATLAB versions. This should help in locating the correct libraries.

Kategorien

Mehr zu Call C++ from MATLAB finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by