summaryrefslogtreecommitdiff
path: root/1092/CH3/EX3.3/Example3_3.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1092/CH3/EX3.3/Example3_3.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/CH3/EX3.3/Example3_3.sce')
-rwxr-xr-x1092/CH3/EX3.3/Example3_3.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/1092/CH3/EX3.3/Example3_3.sce b/1092/CH3/EX3.3/Example3_3.sce
new file mode 100755
index 000000000..8ed1ea702
--- /dev/null
+++ b/1092/CH3/EX3.3/Example3_3.sce
@@ -0,0 +1,26 @@
+// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 3: DC Dynamo Voltage Relations - DC Generators
+// Example 3-3
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+E_orig = 150; // Armature voltage of the generator in V
+S_orig = 1800; // Speed of the generator in rpm
+S_final_a =2000; // Increased Speed of the generator in rpm for case a
+S_final_b =1600; // Increased Speed of the generator in rpm for case b
+
+// Calculations
+E_final_a = E_orig * ( S_final_a / S_orig ); // No- load voltage of the generator
+// generator in V for case a
+E_final_b = E_orig * ( S_final_b / S_orig ); // No- load voltage of the generator
+// generator in V for case b
+
+// Display the results
+disp("Example 3-3 Solution : ")
+printf("\n a: Efinal = %.1f V ", E_final_a );
+printf("\n b: Efinal = %.1f V ", E_final_b );