summaryrefslogtreecommitdiff
path: root/1092/CH11/EX11.5/Example11_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '1092/CH11/EX11.5/Example11_5.sce')
-rwxr-xr-x1092/CH11/EX11.5/Example11_5.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/1092/CH11/EX11.5/Example11_5.sce b/1092/CH11/EX11.5/Example11_5.sce
new file mode 100755
index 000000000..b5e98a58f
--- /dev/null
+++ b/1092/CH11/EX11.5/Example11_5.sce
@@ -0,0 +1,20 @@
+// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 11: SPECIALIZED DYNAMOS
+// Example 11-5
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+v_s = 12 ; // Synchronous velocity in meter/second
+v = 10 ; // Secondary sheet in Ex.11-4 moves at a linear velocity in m/s
+
+// Calculation
+s = (v_s - v)/v_s ; // Slip of the DSLIM
+
+// Display the result
+disp("Example 11-5 Solution : ");disp("From Eq.(11-5)")
+printf(" \n Slip of the DSLIM : \n s = %.3f ",s );