无法将结果从JModelica检索回Python

2024-04-28 03:43:42 发布

您现在位置:Python中文网/ 问答频道 /正文

this question之后,我尝试用JModelica编译和模拟Modelica模型。模型为:

package friction1D

  function coulombFriction
    input Real relVel;
    input Real shearForce;
    input Real normalForce;
    input Real statfricco;
    input Real kinfricco;
    input Real inertia;
    input Real relAcc;
    output Real fricForce;
  algorithm
    if (relVel == 0) and (abs(shearForce - inertia * relAcc) < statfricco * normalForce) then
      fricForce := shearForce - inertia * relAcc;
    else
      fricForce := kinfricco * normalForce * sign(relVel);
    end if;
  end coulombFriction;

  model fricexample_1
    //parameters
    parameter Real kco = 0.3;
    parameter Real sco = 0.4;
    parameter Real nfo = 1.0;
    parameter Real mass = 1;

    Real sfo;
    Real ffo;
    Real x;
    Real v;

  initial equation
    x = 0;
    v = 0;

  algorithm
    sfo := 1 * sin(time);

  equation
    v = der(x);
    mass * der(v) = sfo - ffo;

    ffo = coulombFriction(relVel = v, shearForce = sfo, normalForce = nfo, statfricco = sco, kinfricco = kco, inertia = mass, relAcc = der(v));
  annotation(
      experiment(StartTime = 0, StopTime = 10, Tolerance = 1e-8, Interval = 0.02),
      __OpenModelica_simulationFlags(lv = "LOG_STATS", outputFormat = "mat", s = "dassl"));end fricexample_1;

end friction1D;

Python代码是:

from pymodelica import compile_fmu
from pyfmi import load_fmu

model_name = 'friction1D'
mofile = 'friction1D.mo'

fmu_name = compile_fmu(model_name, mofile)
sim = load_fmu(fmu_name)

res = sim.simulate(final_time=10)

当我试图传回结果时,time = res['time']命令似乎运行良好,但对于所有其他变量,例如,vel = res['v'],它返回以下错误:

---------------------------------------------------------------------------
VariableNotFoundError                     Traceback (most recent call last)
<ipython-input-19-a29270f8b1ab> in <module>()
----> 1 vel = res['v']

C:\Users\foobar\AppData\Roaming\JModelica.org-2.10\install\Python_64\pyfmi\common\algorithm_drivers.pyc in __getitem__(self, key)
    176                 Name of the variable/parameter/constant.
    177         """
--> 178         val_x = self.result_data.get_variable_data(key).x
    179 
    180         if self.result_data.is_variable(key):

C:\Users\foobar\AppData\Roaming\JModelica.org-2.10\install\Python_64\pyfmi\common\io.pyc in get_variable_data(self, name)
   1160             varInd = 0;
   1161         else:
-> 1162             varInd  = self.get_variable_index(name)
   1163 
   1164         dataInd = self.raw['dataInfo'][1][varInd]

C:\Users\foobar\AppData\Roaming\JModelica.org-2.10\install\Python_64\pyfmi\common\io.pyc in get_variable_index(self, name)
    151             else:
    152                 raise VariableNotFoundError("Cannot find variable " +
--> 153                                         name + " in data file.")
    154 
    155 

VariableNotFoundError: Cannot find variable v in data file.

如果你能帮我知道问题是什么,我会很感激的。你知道吗

p.S.1.我也在the Modelica Language Discord channel上发布了这个问题。你知道吗

p.S.2.我认为问题的出现是因为我正在解决一个包。相反,如果模拟一个简单的模型,它可以检索变量。你知道吗

第3页。我想我解决了这个问题。行model_name = 'friction1D'需要更改为model_name = 'friction1D.fricexample_1'。基本上,应该是<packageName>.<modelName>


Tags: nameinselfinputdatamodelparametervariable