From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3784/CH4/EX4.38/Ex4_38.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 3784/CH4/EX4.38/Ex4_38.sce (limited to '3784/CH4/EX4.38') diff --git a/3784/CH4/EX4.38/Ex4_38.sce b/3784/CH4/EX4.38/Ex4_38.sce new file mode 100644 index 000000000..d3c0f78d2 --- /dev/null +++ b/3784/CH4/EX4.38/Ex4_38.sce @@ -0,0 +1,23 @@ +clc +//Variable Initialisation +Ea=500//Input Voltage of motor in volts +Ra=0.06//Armature resistance in ohm +Rf=0.09//Field Resistance in ohm +K=35e-3//Motor Constant +T=560//Rated Torque in N-m +N1=0//Rated Speed of Motor in rpm +d2=1//Duty ratio +//Solution +Ia=sqrt(T/K)//Armature Current in Ampere +d1=(Ia*(Ra+Rf)+K*Ia*N1)/Ea +N2=(d2*Ea-Ia*(Ra+Rf))/(K*Ia) +N2rpm=N2*30/%pi +d3=0.6 +N3=((d3*Ea-Ia*(Ra+Rf))/(K*Ia))*30/%pi +d4=0.8 +N4=((d4*Ea-Ia*(Ra+Rf))/(K*Ia))*30/%pi +d=[d1,d3,d4,d2] +N=[N1,N3,N4,N2rpm] +plot(d,N) +ylabel("Speed in rpm", "fontsize", 2) +xlabel("Duty Ratio", "fontsize", 2) -- cgit