diff options
Diffstat (limited to '695/CH2/EX2.19')
-rwxr-xr-x | 695/CH2/EX2.19/Ex2_19.sce | 16 | ||||
-rwxr-xr-x | 695/CH2/EX2.19/Ex2_19.txt | 16 | ||||
-rwxr-xr-x | 695/CH2/EX2.19/R2_19.txt | 3 |
3 files changed, 35 insertions, 0 deletions
diff --git a/695/CH2/EX2.19/Ex2_19.sce b/695/CH2/EX2.19/Ex2_19.sce new file mode 100755 index 000000000..2849b3365 --- /dev/null +++ b/695/CH2/EX2.19/Ex2_19.sce @@ -0,0 +1,16 @@ +//Caption:Find the ratio of the speed as a generator to speed as a motor
+//Exa:2.19
+clc;
+clear;
+close;
+V=250;//in volts
+I_L=80;//in amperes
+R_a=0.12;//in ohms
+R=100;//in ohms
+I_f=V/R;//in amperes
+I_a1=I_L+I_f;//in amperes (generator)
+E_1=V+(I_a1*R_a);//in volts (generator)
+I_a2=I_L-I_f;//in amperes (motor)
+E_2=V-(I_a2*R_a);//in volts (motor)
+Ratio=E_1/E_2;
+disp(Ratio,'Ratio of speed as a generator to speed as motor=')
\ No newline at end of file diff --git a/695/CH2/EX2.19/Ex2_19.txt b/695/CH2/EX2.19/Ex2_19.txt new file mode 100755 index 000000000..2849b3365 --- /dev/null +++ b/695/CH2/EX2.19/Ex2_19.txt @@ -0,0 +1,16 @@ +//Caption:Find the ratio of the speed as a generator to speed as a motor
+//Exa:2.19
+clc;
+clear;
+close;
+V=250;//in volts
+I_L=80;//in amperes
+R_a=0.12;//in ohms
+R=100;//in ohms
+I_f=V/R;//in amperes
+I_a1=I_L+I_f;//in amperes (generator)
+E_1=V+(I_a1*R_a);//in volts (generator)
+I_a2=I_L-I_f;//in amperes (motor)
+E_2=V-(I_a2*R_a);//in volts (motor)
+Ratio=E_1/E_2;
+disp(Ratio,'Ratio of speed as a generator to speed as motor=')
\ No newline at end of file diff --git a/695/CH2/EX2.19/R2_19.txt b/695/CH2/EX2.19/R2_19.txt new file mode 100755 index 000000000..d200e76fb --- /dev/null +++ b/695/CH2/EX2.19/R2_19.txt @@ -0,0 +1,3 @@ + Ratio of speed as a generator to speed as motor=
+
+ 1.0797673
\ No newline at end of file |