diff options
Diffstat (limited to '695/CH2/EX2.13')
-rwxr-xr-x | 695/CH2/EX2.13/Ex2_13.sce | 22 | ||||
-rwxr-xr-x | 695/CH2/EX2.13/Ex2_13.txt | 22 | ||||
-rwxr-xr-x | 695/CH2/EX2.13/R2_13.txt | 3 |
3 files changed, 47 insertions, 0 deletions
diff --git a/695/CH2/EX2.13/Ex2_13.sce b/695/CH2/EX2.13/Ex2_13.sce new file mode 100755 index 000000000..7ef39bfbc --- /dev/null +++ b/695/CH2/EX2.13/Ex2_13.sce @@ -0,0 +1,22 @@ +//Caption:Find the percentage reduction in speed
+//Exa:2.13
+clc;
+clear;
+close;
+P1=200*10^3;//initial load in watts
+P2=125*10^3;//final load in watts
+V_t=250;//in volts
+V_b=2;//total brush drop in volts
+P=6;//no. of poles
+R_a=0.015;//armature winding resistance in ohms
+I_g1=P1/V_t;//in amperes
+I_a1=I_g1;//in amperes
+E_g1=V_t+I_a1*R_a+V_b;//in volts
+I_g2=P2/V_t;//in amperes
+I_a2=I_g2;//in amperes
+E_g2=V_t+I_a2*R_a+V_b;//in volts
+//since E_g is directly proportional to N
+//therefore,E_g1/E_g2=N_1/N_2
+r=E_g2/E_g1;
+reduction=(1-r)*100;
+disp(reduction,'Percentage reduction in speed (%)=')
\ No newline at end of file diff --git a/695/CH2/EX2.13/Ex2_13.txt b/695/CH2/EX2.13/Ex2_13.txt new file mode 100755 index 000000000..7ef39bfbc --- /dev/null +++ b/695/CH2/EX2.13/Ex2_13.txt @@ -0,0 +1,22 @@ +//Caption:Find the percentage reduction in speed
+//Exa:2.13
+clc;
+clear;
+close;
+P1=200*10^3;//initial load in watts
+P2=125*10^3;//final load in watts
+V_t=250;//in volts
+V_b=2;//total brush drop in volts
+P=6;//no. of poles
+R_a=0.015;//armature winding resistance in ohms
+I_g1=P1/V_t;//in amperes
+I_a1=I_g1;//in amperes
+E_g1=V_t+I_a1*R_a+V_b;//in volts
+I_g2=P2/V_t;//in amperes
+I_a2=I_g2;//in amperes
+E_g2=V_t+I_a2*R_a+V_b;//in volts
+//since E_g is directly proportional to N
+//therefore,E_g1/E_g2=N_1/N_2
+r=E_g2/E_g1;
+reduction=(1-r)*100;
+disp(reduction,'Percentage reduction in speed (%)=')
\ No newline at end of file diff --git a/695/CH2/EX2.13/R2_13.txt b/695/CH2/EX2.13/R2_13.txt new file mode 100755 index 000000000..88abe3fbe --- /dev/null +++ b/695/CH2/EX2.13/R2_13.txt @@ -0,0 +1,3 @@ + Percentage reduction in speed=
+
+ 1.7045455
\ No newline at end of file |