diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3681/CH10/EX10.13 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3681/CH10/EX10.13')
-rw-r--r-- | 3681/CH10/EX10.13/Ans10_13.PNG | bin | 0 -> 7494 bytes | |||
-rw-r--r-- | 3681/CH10/EX10.13/Ex10_13.sce | 17 |
2 files changed, 17 insertions, 0 deletions
diff --git a/3681/CH10/EX10.13/Ans10_13.PNG b/3681/CH10/EX10.13/Ans10_13.PNG Binary files differnew file mode 100644 index 000000000..713882089 --- /dev/null +++ b/3681/CH10/EX10.13/Ans10_13.PNG diff --git a/3681/CH10/EX10.13/Ex10_13.sce b/3681/CH10/EX10.13/Ex10_13.sce new file mode 100644 index 000000000..2975cdc4c --- /dev/null +++ b/3681/CH10/EX10.13/Ex10_13.sce @@ -0,0 +1,17 @@ +// Calculating the number of stator and rotor turns and rotor voltage between slip rings at standstill
+clc;
+disp('Example 10.13, Page No. = 10.35')
+// Given Data
+// 3 phase induction motor
+Nss = 54;// Number of stator slots
+Nrs = 72;// Number of rotor slots
+V = 400;// Applied voltage across the stator terminals
+// Calculation of the number of stator and rotor turns and rotor voltage between slip rings at standstill
+Ts = Nss*8/6;// Stator turns per phase. Since 8 conductors per slot
+Tr = Nrs*4/6;// Rotor turns per phase. Since 4 conductors per slot
+Es = 400/3^(1/2);// Stator voltage per phase
+Er = Es*Tr/Ts;// Rotor voltage per phase at standstill
+disp(Ts,'Stator turns per phase =');
+disp(Tr,'Rotor turns per phase =');
+disp(3^(1/2)*Er,'Rotor voltage between slip rings at standstill (Volts)=');
+//in book answers are 72, 48 and 266.7 Volts respectively. The answers vary due to round off error
|