三相電気ドメイン
三相電気ドメインの宣言は次のとおりです。
domain three_phase
% Three-Phase Electrical Domain
% Copyright 2012-2013 The MathWorks, Inc.
parameters
Temperature = { 300.15 , 'K' }; % Circuit temperature
GMIN = { 1e-12 , '1/Ohm' }; % Minimum conductance, GMIN
end
variables
V = { [ 0 0 0 ], 'V' };
end
variables(Balancing = true)
I = { [ 0 0 0 ], 'A' };
end
end
次の変数とパラメーターがあります。
3 要素の行ベクトルとして宣言されているアクロス変数 V (電圧)、単位はボルト
3 要素の行ベクトルとして宣言されているスルー変数 I (電流)、単位はアンペア
パラメーター Temperature、回路温度を指定
パラメーター GMIN、最小コンダクタンスを指定
カスタム コンポーネント宣言でこのドメインを参照するには、次の構文を使用します。
foundation.electrical.three_phase