summaryrefslogtreecommitdiff
path: root/1092/CH8/EX8.11/Example8_11.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1092/CH8/EX8.11/Example8_11.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1092/CH8/EX8.11/Example8_11.sce')
-rwxr-xr-x1092/CH8/EX8.11/Example8_11.sce31
1 files changed, 31 insertions, 0 deletions
diff --git a/1092/CH8/EX8.11/Example8_11.sce b/1092/CH8/EX8.11/Example8_11.sce
new file mode 100755
index 000000000..ed54ffbd6
--- /dev/null
+++ b/1092/CH8/EX8.11/Example8_11.sce
@@ -0,0 +1,31 @@
+// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 8: AC DYNAMO TORQUE RELATIONS - SYNCHRONOUS MOTORS
+// Example 8-11
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+S_conjugate = 1000 ; // Apparent complex power in kVA
+cos_theta = 0.6 ; // lagging PF
+sin_theta = sqrt( 1 - (cos_theta)^2 );
+
+// Calculations
+// case a
+P_o = S_conjugate * cos_theta ; // Active power dissipated by the load in kW
+
+// case b
+jQ_o = S_conjugate * sin_theta ; // Inductive reactive quadrature power -
+// - drawn from and returned to the supply
+
+// Display the results
+
+disp("Example 8-11 Solution : ");
+printf(" \n a: Active power \n P_o = %d kW \n ", P_o );
+
+printf(" \n b: Inductive reactive quadrature power \n +jQ_o in kvar = \n");disp(%i*jQ_o);
+
+printf(" \n c: The original power triangle is shown in Fig.8-26a.");