この質問に続いて、コードを次のように変更しました。
model test
// types
type Mass = Real(unit = "Kg", min = 0);
type Length = Real(unit = "m");
type Area = Real(unit = "m2", min = 0);
type Force = Real(unit = "Kg.m/s2");
type Pressure = Real(unit = "Kg/m/s2");
type Torque = Real(unit = "Kg.m2/s2");
type Velocity = Real(unit = "m/s");
type Time = Real(unit = "s");
// constants
constant Real pi = 2 * Modelica.Math.asin(1.0);
parameter Mass Mp = 0.01;
parameter Length r1 = 0.010;
parameter Length r3 = 0.004;
parameter Integer n = 3;
parameter Area A = 0.020 * 0.015;
parameter Time Stepping = 1.0;
parameter Real DutyCycle = 1.0;
parameter Pressure Pin = 500000;
parameter Real Js = 1;
//parameter Real Muk = 0.0;
parameter Real Muk = 0.158;
// variables
Length x[n];
Velocity vx[n];
Real theta;
Real vt;
Pressure P[n];
Force Fnsp[n];
Torque Tfsc;
initial equation
theta = 0;
vt = 0;
algorithm
for i in 1:n loop
if noEvent((i - 1) * Stepping < mod(time, n * Stepping)) and noEvent(mod(time, n * Stepping) < Stepping * ((i - 1) + DutyCycle)) then
P[i] := Pin;
else
P[i] := 0;
end if;
end for;
Tfsc := -r3 * Muk * sign(vt) * abs(sum(Fnsp));
equation
vx = der(x);
vt = der(theta);
x = r1 * {sin(theta + (i - 1) * 2 * pi / n) for i in 1:n};
Mp * der(vx) + P * A = Fnsp;
Js * der(theta) = Tfsc - r1 * Fnsp * {cos(theta + (i - 1) * 2 * pi / n) for i in 1:n};
// Js * der(theta) = - r1 * Fnsp * {cos(theta + (i - 1) * 2 * pi / n) for i in 1:n};
annotation(
experiment(StartTime = 0, StopTime = 30, Tolerance = 1e-06, Interval = 0.03),
__OpenModelica_simulationFlags(lv = "LOG_STATS", outputFormat = "mat", s = "dassl"));
end test;
ただし、前処理の警告が表示されます
[1] .... 翻訳に関する警告
引き裂かれた非線形方程式系のデフォルト ゼロ開始属性を持つ反復変数:
Fnsp[3]:VARIABLE(unit = "Kg.m/s2" ) type: Real [3] Fnsp[2]:VARIABLE(unit = "Kg.m/s2" ) type: Real [3] Fnsp[1]:VARIABLE(unit = "Kg.m/s2" ) type: Real [3] $DER.vt:VARIABLE() type: Real
これは意味がありませんが、無視しても安全だと思います。コンパイルエラーは次のとおりです。
マトリックス単数!
劣決定線形システムは解けません
ここでも以前に報告されていました。行を削除すると
Torque Tfsc;
と
Tfsc := -r3 * Muk * sign(vt) * abs(sum(Fnsp));
変化する
Js * der(theta) = - r1 * Fnsp * {cos(theta + (i - 1) * 2 * pi / n) for i in 1:n};
完全に正常に動作します。ただし、Muk
ゼロに設定すると、理論的には同じことが上記と同じエラーにつながります。何が問題なのか、どうすれば解決できるのかを教えていただければ幸いです。
PS1。Dymola のデモ版では、シミュレーション テストはエラーなしで終了し、警告のみが表示されます。
Some variables are iteration variables of the initialization problem:
but they are not given any explicit start values. Zero will be used.
Iteration variables:
der(theta, 2)
P[1]
P[2]
P[3]
PS2。JModelica をnoEvent
使用して、Python コードを削除して使用します。
model_name = 'test'
mo_file = 'test.mo'
from pymodelica import compile_fmu
from pyfmi import load_fmu
my_fmu = compile_fmu(model_name, mo_file)
myModel = load_fmu('test.fmu')
res = myModel.simulate(final_time=30)
theta = res['theta']
t = res['time']
import matplotlib.pyplot as plt
plt.plot(t, theta)
plt.show()
0.1
の小さな値 (例: )に対してモデルを非常に高速に解決しますMuk
。しかし、再び、より大きな値でスタックします。唯一の警告は次のとおりです。
Warning at line 30, column 3, in file 'test.mo':
Iteration variable "Fnsp[2]" is missing start value!
Warning at line 30, column 3, in file 'test.mo':
Iteration variable "Fnsp[3]" is missing start value!
Warning in flattened model:
Iteration variable "der(_der_theta)" is missing start value!