We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 038fa3f commit 7b3724aCopy full SHA for 7b3724a
modelica_fmi/src/modelica_fmi/import_fmu_to_modelica.py
@@ -144,9 +144,9 @@ def import_fmu_to_modelica(
144
parameters.append(variable)
145
elif variable.causality == "structuralParameter":
146
structural_parameters.append(variable)
147
- elif variable.causality == "input":
+ elif variable.causality == "input" and variable.type != "String":
148
inputs.append(variable)
149
- elif variable.causality == "output":
+ elif variable.causality == "output" and variable.type != "String":
150
outputs.append(variable)
151
152
width = 1200
0 commit comments