diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1092/CH13/EX13.11/Example13_11.sce | |
download | Scilab-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/CH13/EX13.11/Example13_11.sce')
-rwxr-xr-x | 1092/CH13/EX13.11/Example13_11.sce | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/1092/CH13/EX13.11/Example13_11.sce b/1092/CH13/EX13.11/Example13_11.sce new file mode 100755 index 000000000..77b115ae2 --- /dev/null +++ b/1092/CH13/EX13.11/Example13_11.sce @@ -0,0 +1,30 @@ +// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 13: RATINGS,SELECTION,AND MAINTENANCE OF ELECTRIC MACHINERY
+// Example 13-11
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+// 3-phase distribution system
+V = 2300 ; // Line voltage of 3-phase distribution system in volt
+V_p = 1328 ; // Phase voltage of 3-phase distribution system in volt
+
+V_b = 69000 ; // Common base line voltage in volt
+V_pb = 39840 ; // Common base phase voltage in volt
+
+// Calculations
+// case a
+V_pu_line = V / V_b ; // Distribution system p.u line voltage
+
+// case a
+V_pu_phase = V_p / V_pb ; // Distribution system p.u phase voltage
+
+// Display the results
+disp("Example 13-11 Solution : ");
+printf(" \n a: Distribution system p.u line voltage :\n V_pu = %.2f p.u\n",V_pu_line);
+
+printf(" \n b: Distribution system p.u phase voltage :\n V_pu = %.2f p.u\n",V_pu_phase);
|