summaryrefslogtreecommitdiff
path: root/3574/CH5/EX5.10
diff options
context:
space:
mode:
Diffstat (limited to '3574/CH5/EX5.10')
-rw-r--r--3574/CH5/EX5.10/EX5_10.pngbin0 -> 154735 bytes
-rw-r--r--3574/CH5/EX5.10/EX5_10.sce34
2 files changed, 34 insertions, 0 deletions
diff --git a/3574/CH5/EX5.10/EX5_10.png b/3574/CH5/EX5.10/EX5_10.png
new file mode 100644
index 000000000..21a28af0d
--- /dev/null
+++ b/3574/CH5/EX5.10/EX5_10.png
Binary files differ
diff --git a/3574/CH5/EX5.10/EX5_10.sce b/3574/CH5/EX5.10/EX5_10.sce
new file mode 100644
index 000000000..9484505a5
--- /dev/null
+++ b/3574/CH5/EX5.10/EX5_10.sce
@@ -0,0 +1,34 @@
+// Example 5.10
+// Determine (a) Range of rotor speed (b) Required rheostat resistance
+// Page No. 198
+
+clc;
+clear;
+close;
+
+// Given data
+F=60; // Frequency of motor
+P=14; // Number of poles
+SL=0.395; // Low speed point
+SH=0.02; // High speed point
+Stdmax=0.74; // Value at which TD is maximum (from curve B)
+R1=0.403; // Motor resistance
+R2=0.317;
+X1=1.32; // Motor reactance
+X2=1.32;
+a=3.8; // Ratio of stator turns/phase to rotor turns/phase
+
+// (a) Range of rotor speed
+ns=120*F/P; // Speed
+nrl=ns*(1-SL); // Rotor low speed
+nrh=ns*(1-SH); // Rotor high speed
+
+// (b) Required rheostat resistance
+Rrhe=Stdmax*(sqrt(R1^2+(X1+X2)^2))-R2;
+Rehereq=Rrhe/a^2;
+
+// Display result on command window
+printf("\n Low range of rotor speed = %0.0f r/min",nrl);
+printf("\n High range of rotor speed = %0.0f r/min",nrh);
+printf("\n Required rheostat resistance = %0.3f Ohm/phase",Rehereq);
+