summaryrefslogtreecommitdiff
path: root/1938/CH6/EX6.9
diff options
context:
space:
mode:
Diffstat (limited to '1938/CH6/EX6.9')
-rwxr-xr-x1938/CH6/EX6.9/6_9.jpgbin0 -> 59006 bytes
-rwxr-xr-x1938/CH6/EX6.9/6_9.sce21
2 files changed, 21 insertions, 0 deletions
diff --git a/1938/CH6/EX6.9/6_9.jpg b/1938/CH6/EX6.9/6_9.jpg
new file mode 100755
index 000000000..298e464cf
--- /dev/null
+++ b/1938/CH6/EX6.9/6_9.jpg
Binary files differ
diff --git a/1938/CH6/EX6.9/6_9.sce b/1938/CH6/EX6.9/6_9.sce
new file mode 100755
index 000000000..b197cdd00
--- /dev/null
+++ b/1938/CH6/EX6.9/6_9.sce
@@ -0,0 +1,21 @@
+clc,clear
+printf('Example 6.9\n\n')
+
+//Line AB for Altermnator 1, and AC for alternator 2.AF is at frequency x measured from A where total load is 3000 kW
+BO=2000,AO=5//AF=x
+DC=2000,AD=3,//AF=x
+
+//using similarity of triangles AEF and ABO
+EF_by_AF=(BO/AO)// because (EF/BO)=(AF/AO)
+//using similarity of triangles AFG and ADC
+FG_by_AF=(DC/AD) //because (FG/DC)=(AF/AD)
+
+EF_by_x=EF_by_AF //which implies EF=400*x
+FG_by_x=FG_by_AF //which implies FG=666.67*x
+
+EF_plus_FG=3000 //total load at the frequency at P is 3000 kW
+x= EF_plus_FG/(EF_by_x + FG_by_x)
+EF=(BO/AO)*x
+FG=(DC/AD)*x
+
+printf('Loads shared by machine 1 and 2 are %.0f kW and %.0f kW respectively',EF,FG)