summaryrefslogtreecommitdiff
path: root/3574/CH12/EX12.4
diff options
context:
space:
mode:
Diffstat (limited to '3574/CH12/EX12.4')
-rw-r--r--3574/CH12/EX12.4/EX12_4.pngbin0 -> 104716 bytes
-rw-r--r--3574/CH12/EX12.4/EX12_4.sce33
2 files changed, 33 insertions, 0 deletions
diff --git a/3574/CH12/EX12.4/EX12_4.png b/3574/CH12/EX12.4/EX12_4.png
new file mode 100644
index 000000000..8f997df92
--- /dev/null
+++ b/3574/CH12/EX12.4/EX12_4.png
Binary files differ
diff --git a/3574/CH12/EX12.4/EX12_4.sce b/3574/CH12/EX12.4/EX12_4.sce
new file mode 100644
index 000000000..4639df232
--- /dev/null
+++ b/3574/CH12/EX12.4/EX12_4.sce
@@ -0,0 +1,33 @@
+// Example 12.4
+// Computation of (a) Required resistance of a noninductive diverter that will
+// bypass 27 percent of the total armature current(b) Power rating of the
+// diverter
+// Page No. 494
+
+clc;
+clear;
+close;
+
+// Given data
+Rs=0.00306; // Shunt generator resistance rating
+Is=0.73; // Shunt generator current rating
+Id1=0.27; // Armature winding resistance
+Pload=170000; // Load of power
+VT=250; // Shunt generator voltage rating
+Id2=680; // No load voltage
+Rd=0.27; // Resistance drop
+
+// (a) Required resistance of a noninductive diverter that will bypass
+// 27 percent of the total armature current
+Rd=Rs*Is/Id1;
+
+
+// (b) Power rating of the diverter
+Ia=Pload/VT;
+Pd=((Id1*Id2)^2)*Rd;
+
+
+
+//Display result on command window
+printf("\n Required resistance of a noninductive diverter = %0.5f Ohm ",Rd);
+printf("\n Power rating of the diverter = %0.0f W ",Pd);