diff options
Diffstat (limited to '431/CH4/EX4.7/EX4_7.sce')
-rwxr-xr-x | 431/CH4/EX4.7/EX4_7.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/431/CH4/EX4.7/EX4_7.sce b/431/CH4/EX4.7/EX4_7.sce new file mode 100755 index 000000000..1a1848f4c --- /dev/null +++ b/431/CH4/EX4.7/EX4_7.sce @@ -0,0 +1,26 @@ +//Calculate rotor current and phase difference
+//Chapter 4
+//Example 4.7
+//page 297
+clear;
+clc;
+disp("Example 4.7")
+E20=100; //induced emf in volts
+R2=0.05; //rotor resistance in ohms
+X20=0.1; //rotor reactance in ohms
+E20p=E20/sqrt(3);
+disp("When S=0.04")
+S=0.04;
+I2=(S*E20p)/sqrt(R2^2+(S*X20)^2)
+printf("I2=%dA",I2);
+phi2=acosd(R2/(sqrt(R2^2+(S*X20)^2)));
+printf("\nPhase angle between rotor voltage and rotor current=%f degrees",phi2);
+disp("When S=1")
+S=1;
+I2=(S*E20p)/sqrt(R2^2+(S*X20)^2)
+printf("I2=%dA",I2);
+phi2=acosd(R2/(sqrt(R2^2+(S*X20)^2)));
+printf("\nPhase angle between rotor voltage and rotor current=%f degrees",phi2);
+
+
+
|