smparam.m
来自「关于电机的.m程序」· M 代码 · 共 30 行
M
30 行
% SYNCHRONOUS MACHINE PARAMETERS
% ------------------------ DATA --------------------------------------------
% Machine parameters (pu) :
Ra=.018; %Stator resistance
Ld=1.15; %Direct-axis synchronous inductance
Lq=.75;Lal=0.15; %Quadrature-axis synchronous inductance
Rf=0.001; %Field resistance
Lfl=0.2; %Field leakage inductance
Rkd=0.02; %Direct-axis damper resistance
Lkdl=0.11; %Direct-axis damper leakage inductance
Rkq=0.04; %Quadrature-axis damper resistance
Lkql=0.15; %Quadrature-axis damper leakage inductance
freq0=60; %Frequency [Hz]
Lmd=Ld-Lal;
Lmq=Lq-Lal;
wo=2*pi*freq0 ;
% ----------------------------------------------------------------------------
% INDUCTANCES
L=[Lal+Lmd 0 Lmd 0 Lmd
0 Lal+Lmq 0 Lmq 0
Lmd 0 Lmd+Lkdl 0 Lmd
0 Lmq 0 Lmq+Lkql 0
Lmd 0 Lmd 0 Lmd+Lfl];
L_1=inv(L); %Inverse inductance matrix
% ----------------------------------------------------------------------------
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?