You are on page 1of 13

%dieseñe las graficas

clc
disp('graficar la siguientes funciones')
disp('---------------------------------------')
disp('torque vs velocidad')
u=100%en voltios
r=80
fi=0.05
k=70
c=fi*k
m=0:0.01:10 %torque
w=u/(c)-m*r/(c^2);%velocidad angular
u1=150
w1=u1/(c)-m*r/(c^2);
w2=0*m
u3=170
w3=u3/(c)-m*r/(c^2);
hold on
plot(w,m,'b')
plot(w1,m,'k')
plot(w3,m,'m')
plot(w2,m,'r')
title('velocidad vs torque')
xlabel('torque')
ylabel('velocidad')
legend('v1','v2','v3')
grid
hold off
disp('graficar la siguientes funciones')
disp('---------------------------------------')
disp('velocidad vs torque')
u=100%en voltios
r=80
fi=0.05
k=70
c=fi*k
w=0:0.01:50 %torque
m=(u*c/r)-(w*c^2/r);%velocidad angular
u1=150
m1=(u1*c/r)-(w*c^2/r)
m3=0*w
u3=170
m2=(u3*c/r)-(w*c^2/r);
hold on
plot(m,w,'b')
plot(m1,w,'k')
plot(m2,w,'m')
plot(m3,w,'r')
title('velocidad vs torque')
xlabel('torque')
ylabel('velocidad')
legend('v1','v2','v3')
grid
hold off
%dieseñe las graficas
clc
disp('graficar la siguientes funciones')
disp('---------------------------------------')
disp('potencia vs velocidad')
u=100%en voltios
r=100
fi=0.05
k=70
c=fi*k
w=0:0.01:50 ; %torque
P=(u*c*w/r)-(w.^2*c.^2/r);%velocidad angular
u1=150
P1=(u1*c*w/r)-(w.^2*c.^2/r);
p3=0*w
u3=170
P2=(u3*c*w/r)-(w.^2*c.^2/r);

hold on
plot(w,P,'b')
plot(w,P1,'k')
plot(w,P2,'m')
plot(w,p3,'r')
title('potencia vs velocidad')
xlabel('velocidad')
ylabel('potencia')
legend('u1','u2','u3')
grid
hold off
Características mecánicas del motor de excitación independiente en regímenes de frenado
%dieseñe las graficas
clc
disp('graficar la siguientes funciones')
disp('---------------------------------------')
disp('torque frendado vs velocidad')
%en voltios
r=100
fi=0.05
k=70
c=fi*k
w=0:0.01:50 ; %velocidad
mr=c^2*w/r
mr1=c^2*w/r
mr3=0*w
mr2=c^2*w/r;

hold on
plot(mr,w,'b')
plot(mr1,w,'k')
plot(mr2,w,'m')
plot(mr3,w,'r')
title('torque frendado vs velocidad')
xlabel('velocidad')
ylabel('torque frenado')
% legend('u1','u2','u3')
grid
hold off
Características mecánicas del motor en serie
%dieseñe las graficas
clc
disp('graficar la siguientes funciones')
disp('---------------------------------------')
disp('velocidad vs torque')
%en voltios
I1=0.9
R=40
M=0:1:40
w1=R*I1^2./M
I2=1.5
w2=R*I2^2./M
I3=1.8
w3=R*I3^2./M

hold on
plot(M,w1,'b')
plot(M,w2,'k')
plot(M,w3,'m')
% plot(M,w,'r')
title('velocidad vs torque')
xlabel('torque')
ylabel('velocidad')
legend('I1','I2','I3')
% legend('u1','u2','u3')
grid
hold off
%dieseñe las graficas
clc
disp('graficar la siguientes funciones')
disp('---------------------------------------')
disp('torque vs velocidad')
%en voltios
I1=0.9
R=40
w=0:1:40
m1=R*I1^2./w
I2=1.5
m2=R*I2^2./w
I3=1.8
m3=R*I3^2./w

hold on
plot(w,m1,'b')
plot(w,m2,'k')
plot(w,m3,'m')
% plot(M,w,'r')
title('torque vs velocidad')
xlabel('velocidad')
ylabel('torque')
legend('I1','I2','I3')
% legend('u1','u2','u3')
grid
hold off
9. Características mecánicas del motor asincrónico
%dieseñe las graficas
clc
disp('graficar la siguientes funciones')
disp('---------------------------------------')
disp('torque vs velocidad')
w=10:10:100
U1=120
R2=40
R1=20
S=0.8
X1=10
X2=15
M1=3*U1^2*R2./((w*(R1+(R2/S))^2+(X1+X2))*S) U2=140
M2=3*U2^2*R2./((w*(R1+(R2/S))^2+(X1+X2))*S)
U3=160
M3=3*U3^2*R2./((w*(R1+(R2/S))^2+(X1+X2))*S)
hold on
plot(w,M1,'b')
plot(w,M2,'k')
plot(w,M3,'m')
% plot(M,w,'r')
title('torque vs velocidad')
xlabel('velocidad')
ylabel('torque')
legend('U1','U2','U3')
% legend('u1','u2','u3')
grid
hold off
%dieseñe las graficas
clc
disp('graficar la siguientes funciones')
disp('---------------------------------------')
disp('torque vs velocidad')
w=10:10:120
U1=120
R2=40
R1=20
S1=0.5
X1=10
X2=15
M1=3*U1^2*R2./((w*(R1+(R2/S))^2+(X1+X2))*S1)

S2=1.5
M2=3*U1^2*R2./((w*(R1+(R2/S))^2+(X1+X2))*S2)

S3=-0.2
M3=3*U1^2*R2./((w*(R1+(R2/S))^2+(X1+X2))*S3)

hold on
plot(w,M1,'b')
plot(w,M2,'k')
plot(w,M3,'m')
% plot(M,w,'r')
title('torque vs velocidad')
xlabel('velocidad')
ylabel('torque')
legend('S1','S2','S3')
% legend('u1','u2','u3')
grid
hold off
%dieseñe las graficas
clc
disp('graficar la siguientes funciones')
disp('---------------------------------------')
disp('POTENCIA vs TORQUE')
w=10:10:120
U1=150
R2=40
R1=20
S=0.5
X1=10
X2=15
P1=3*U1^2*R2./((w.^2*(R1+(R2/S))^2+(X1+X2))*S)

U2=180
P2=3*U2^2*R2./((w.^2*(R1+(R2/S))^2+(X1+X2))*S)

U3=200
P3=3*U3^2*R2./((w.^2*(R1+(R2/S))^2+(X1+X2))*S)

hold on
plot(w,P1,'b')
plot(w,P2,'k')
plot(w,P3,'m')
% plot(M,w,'r')
title('POTENCIA vs velocidad')
xlabel('velocidad')
ylabel('POTENCIA')
legend('V1','V2','V3')
% legend('u1','u2','u3')
grid
hold off
%dieseñe las graficas
clc
disp('graficar la siguientes funciones')
disp('---------------------------------------')
disp('POTENCIA vs TORQUE')
w=10:1:120
U=150
R2=40
R1=20
S1=0.5
X1=10
X2=15
P1=3*U^2*R2./((w.^2*(R1+(R2/S))^2+(X1+X2))*S1)

S2=1.5
P2=3*U^2*R2./((w.^2*(R1+(R2/S))^2+(X1+X2))*S2)

S3=-0.5
P3=3*U^2*R2./((w.^2*(R1+(R2/S))^2+(X1+X2))*S3)

hold on
plot(w,P1,'b')
plot(w,P2,'k')
plot(w,P3,'m')
% plot(M,w,'r')
title('POTENCIA vs velocidad')
xlabel('velocidad')
ylabel('POTENCIA')
legend('S1','S2','S3')
% legend('u1','u2','u3')
grid
hold off
%dieseñe las graficas
clc
disp('graficar la siguientes funciones')
disp('---------------------------------------')
disp('deslizamient vs torque')
MAX=100
S=0:0.01:0.7
Smax=0.7
M=2*MAX./((S./Smax)+(Smax./S))

hold on
plot(S,M,'K')
title('deslizamiento vs torque')
xlabel('deslizamiento')
ylabel('torque')
grid
hold off
%dieseñe las graficas
clc
disp('graficar la siguientes funciones')
disp('---------------------------------------')
disp('POTENCIA vs FP')
U1=100
I1=0.9
FP=0:0.1:1
P1=3*I1*U1*FP
U2=200
I2=1.1
P2=3*I2*U2*FP
U3=300
I3=1.5
P3=3*I3*U3*FP
hold on
plot(FP,P1,'b')
plot(FP,P2,'k')
plot(FP,P3,'m')

title('POTENCIA vs FP')
xlabel('FP')
ylabel('POTENCIA')
legend('u1','u2','u3')
grid
hold off

You might also like