Isolating a matrix in a symbolic expression

조회 수: 2 (최근 30일)
ck12345
ck12345 2018년 3월 13일
편집: ck12345 2018년 3월 13일
I have the following code written in a live script:
%clear
%clc
syms theta t w0 real %transformation variables
syms V_t V_g I_g VTERM VGSC IGSC VTdq0 VGdq0 Idq0 real;
syms Vtd Vtq Vt0 Vgd Vgq Vg0 Igd Igq Ig0 real;
syms l_g r_g L R real
theta=w0*t; %From PLL
ABC2DQ=([sin(theta) cos(theta) 1; sin(theta-(2*pi/3)) cos(theta-(2*pi/3)) 1; sin(theta+(2*pi/3)) cos(theta+(2*pi/3)) 1]);
%Resistance and inductance of GSC to Tx path
R=r_g*eye(3);
L=l_g*eye(3);
%The DQ0 equivalents
VTdq0=[Vtd Vtq Vt0]';
VGdq0=[Vgd Vgq Vg0]';
Idq0=[Igd Igq Ig0]';
VTabc=ABC2DQ*VTdq0;
VGabc=ABC2DQ*VGdq0;
Iabc=ABC2DQ*Idq0;
%GSC terminal equation (Direction of current is towards the GSC)
eqn = -VTabc + R*Iabc + L*diff(Iabc,t) + VGabc == 0
solve(eqn,VTdq0)
I want to isolate the matrix VTdq0 in the above equation. So ideally it should give the expressions for (Vtd Vtq Vt0)'= 3x1 matrix
I dont know how to make it solve for VTdq0.
solve(eqn,VTdq0) just says:
ans =
Vtd: [1×1 sym]
Vtq: [1×1 sym]
Vt0: [1×1 sym]
Any help is much appreciated.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Conversion Between Symbolic and Numeric에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by