diff options
Diffstat (limited to '1092/CH3/EX3.6/Example3_6.sce')
-rwxr-xr-x | 1092/CH3/EX3.6/Example3_6.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/1092/CH3/EX3.6/Example3_6.sce b/1092/CH3/EX3.6/Example3_6.sce new file mode 100755 index 000000000..b4477ae0d --- /dev/null +++ b/1092/CH3/EX3.6/Example3_6.sce @@ -0,0 +1,22 @@ +// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 3: DC Dynamo Voltage Relations - DC Generators
+// Example 3-6
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+V_n1 = 135; // No load voltage of the shunt generator in V
+V_f1 = 125; // Full load voltage of the shunt generator in V
+
+// Calculation
+VR = ( V_n1 - V_f1 ) / V_f1 * 100; // Percentage voltage regulation
+
+// Display the result
+disp("Example 3-6 Solution : ")
+printf(" \n VR = %d percent ", VR );
+
+
|