summaryrefslogtreecommitdiff
path: root/2642/CH4/EX4.3
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2642/CH4/EX4.3
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 '2642/CH4/EX4.3')
-rwxr-xr-x2642/CH4/EX4.3/Ex4_3.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/2642/CH4/EX4.3/Ex4_3.sce b/2642/CH4/EX4.3/Ex4_3.sce
new file mode 100755
index 000000000..4aef86cf3
--- /dev/null
+++ b/2642/CH4/EX4.3/Ex4_3.sce
@@ -0,0 +1,24 @@
+// FUNDAMENTALS OF ELECTICAL MACHINES
+// M.A.SALAM
+// NAROSA PUBLISHING HOUSE
+// SECOND EDITION
+
+// Chapter 4 : DIRECT CURRENT GENERATORS
+// Example : 4.3
+
+
+clc;clear; // clears the console and command history
+
+// Given data
+l = 1.5 // length of conductor in m
+v = 20 // speed in m/s
+B = 0.9 // magnetic flux density in Wb/m^2
+teta = 35 // angle of rotation in degree
+
+// caclulations
+e = B*l*v*sind(teta) // induced voltage in V
+
+// display the result
+disp("Example 4.3 solution");
+printf(" \n Induced voltage \n e = %.1f V \n", e);
+