diff options
Diffstat (limited to '2642/CH4/EX4.2')
-rwxr-xr-x | 2642/CH4/EX4.2/Ex4_2.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/2642/CH4/EX4.2/Ex4_2.sce b/2642/CH4/EX4.2/Ex4_2.sce new file mode 100755 index 000000000..3c395ae32 --- /dev/null +++ b/2642/CH4/EX4.2/Ex4_2.sce @@ -0,0 +1,23 @@ +// FUNDAMENTALS OF ELECTICAL MACHINES
+// M.A.SALAM
+// NAROSA PUBLISHING HOUSE
+// SECOND EDITION
+
+// Chapter 4 : DIRECT CURRENT GENERATORS
+// Example : 4.2
+
+
+clc;clear; // clears the console and command history
+
+// Given data
+l = 0.65 // length of conductor in m
+v = 35 // speed in m/s
+B = 0.8 // magnetic flux density in T
+
+// caclulations
+e = B*l*v // induced voltage in V
+
+// display the result
+disp("Example 4.2 solution");
+printf(" \n Induced voltage \n e = %.1f V \n", e);
+
|