summaryrefslogtreecommitdiff
path: root/1092/CH4/EX4.6/Example4_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '1092/CH4/EX4.6/Example4_6.sce')
-rwxr-xr-x1092/CH4/EX4.6/Example4_6.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/1092/CH4/EX4.6/Example4_6.sce b/1092/CH4/EX4.6/Example4_6.sce
new file mode 100755
index 000000000..ff1dc93c1
--- /dev/null
+++ b/1092/CH4/EX4.6/Example4_6.sce
@@ -0,0 +1,27 @@
+// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 4: DC Dynamo Torque Relations-DC Motors
+// Example 4-6
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+T_old = 150 ; // Torque developed by a motor in N-m.
+disp("Example 4-6")
+disp("Given data : ")
+printf("\n \t\t\t phi \t I_a \t T ");
+printf("\n \t\t\t ________________________");
+printf("\n Original condition \t 1 \t 1 \t 150 N-m ");
+printf("\n New condition \t\t 0.9 \t 1.5 \t ? ");
+
+// Calculation
+T_new = T_old * ( 0.9 / 1 ) * ( 1.5 / 1 ) ; // New torque produced in N-m
+
+// Display the result
+printf("\n\n Solution : ")
+printf("\n Using the ratio method, the new torque is the product ");
+printf("\n of two new ratio changes : ");
+printf("\n T = %.1f N-m ", T_new );