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.2 | |
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.2')
-rw-r--r-- | 3681/CH10/EX10.2/Ans10_2.PNG | bin | 0 -> 6280 bytes | |||
-rw-r--r-- | 3681/CH10/EX10.2/Ex10_2.sce | 25 |
2 files changed, 25 insertions, 0 deletions
diff --git a/3681/CH10/EX10.2/Ans10_2.PNG b/3681/CH10/EX10.2/Ans10_2.PNG Binary files differnew file mode 100644 index 000000000..ae212a782 --- /dev/null +++ b/3681/CH10/EX10.2/Ans10_2.PNG diff --git a/3681/CH10/EX10.2/Ex10_2.sce b/3681/CH10/EX10.2/Ex10_2.sce new file mode 100644 index 000000000..3c3edc928 --- /dev/null +++ b/3681/CH10/EX10.2/Ex10_2.sce @@ -0,0 +1,25 @@ +// Calculating the main dimentions of squirrel cage induction motor
+clc;
+disp('Example 10.2, Page No. = 10.14')
+// Given Data
+P = 15;// Power rating (in kW)
+V = 400;// Voltage rating (in Volts)
+rpm = 2810;// r.p.m.
+f = 50;// Frequency (in Hz)
+e = 0.88;// Efficiency
+pf = 0.9;// Full load power factor
+ac = 25000;// Specific electrical loading (in A per meter)
+Bav = 0.5;// Specific magnetic loading (in Wb per meter square)
+Kw = 0.955;
+// the rotor peripheral speed is approximately 20 meter per second at synchronous speed
+// Calculation of the main dimentions of squirrel cage induction motor
+Q = P/(e*pf);// kVA input
+Co = 11*Kw*Bav*ac*10^(-3);// Output co-efficient
+ns = 3000/60;// Synchronous speed corresponding to 50 Hz (in r.p.s.)
+D2L = Q/(Co*ns);// Product of D^(2)*L
+D = 20/(%pi*ns);// Since the rotor diameter in an induction motor is almost equal to stator bore
+L = D2L/(D*D);
+disp('Main dimentions of squirrel cage induction motor')
+disp(D,'D (meter)=');
+disp(L,'L (meter)=');
+//in book answers are 0.1257 meter and 0.177 meter respectively. The answers vary due to round off error
|