You are on page 1of 2

Script machine saine 

Rr=3.805;
Rs=4.8500;
Ls=0.274;
Lr=0.274;
M=0.258;
j=0.031;
f=0.001136;
p=2;
Tr=Lr/Rr;
Ts=Ls/Rs;
S=1-(M*M)/(Ls*Lr);
a=-1*((1/(Ts*S))+((M*M)/(Tr*Lr*Ls*S)));
b=M/(Tr*Lr*Ls*S);
c=1/(Ls*S);
d=M/(Lr*Ls*S);

A1=[a 0 b 0;0 a 0 b;M/Tr 0 -1/Tr 0;0 M/Tr 0 -1/Tr];

A2=[0 0 0 d;0 0 -d 0;0 0 0 -1;0 0 1 0];

B=[c 0;0 c;0 0;0 0];

Script Défaut statorique Rs:

Rr=3.805;

Rs=4.8500;

Ls=0.274;

Lr=0.274;

M=0.258;

j=0.031;

f=0.001136;

p=2;

Tr=Lr/Rr;

Ts=Ls/Rs;

S=1-(M*M)/(Ls*Lr);

Rs_fault = 0.1 * Rs; %Diminution de 90

a=-1*((1/((Ts*S)+(Rs_fault/(Ls*S*S))))+((M*M)/(Tr*Lr*Ls*S)));

b=M/(Tr*Lr*Ls*S);

c=1/(Ls*S);

d=M/(Lr*Ls*S);

A1=[a 0 b 0;0 a 0 b;M/Tr 0 -1/Tr 0;0 M/Tr 0 -1/Tr];


A2=[0 0 0 d;0 0 -d 0;0 0 0 -1;0 0 1 0];

B=[c 0;0 c;0 0;0 0];

Script Défaut statorique Ls:

Rr=3.805;

Rs=4.8500;

Ls=0.274;

Lr=0.274;

M=0.258;

j=0.031;

f=0.001136;

p=2;

Tr=Lr/Rr;

Ts=Ls/Rs;

Ls_fault = 10 * Ls; % Augmentation de 1000

S=1-(M*M)/((Ls+Ls_fault)*Lr);

a=-1*((1/(Ts*S))+((M*M)/(Tr*Lr*(Ls+Ls_fault)*S)));

b=M/(Tr*Lr*(Ls+Ls_fault)*S);

c=1/(Ls_fault*S);

d=M/((Lr+Ls_fault)*Ls*S);

A1=[a 0 b 0;0 a 0 b;M/Tr 0 -1/Tr 0;0 M/Tr 0 -1/Tr];

A2=[0 0 0 d;0 0 -d 0;0 0 0 -1;0 0 1 0];

B=[c 0;0 c;0 0;0 0];

You might also like