diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1544/CH5/EX5.4 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1544/CH5/EX5.4')
-rwxr-xr-x | 1544/CH5/EX5.4/Ch05Ex4.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1544/CH5/EX5.4/Ch05Ex4.sce b/1544/CH5/EX5.4/Ch05Ex4.sce new file mode 100755 index 000000000..06a9017ed --- /dev/null +++ b/1544/CH5/EX5.4/Ch05Ex4.sce @@ -0,0 +1,14 @@ +// Scilab code Ex5.4: Pg 149 (2008)
+clc; clear;
+v = 5; // Velocity, m^2
+theta =(%pi/3); // Angle, degrees
+phi = 1.6e-03; // Flux, Wb
+l = 0.1; // Length of pole face, m
+d = 0.4; // Breadth of pole face, m
+A = l*d; // Cross-sectional area of pole face, m^2
+B = phi/ A; // Flux density, T
+e =( B*l*v)*sin(theta); // Induced emf, V
+printf("\nThe emf induced = %5.4f V", e);
+
+// Result
+// The emf induced = 0.0173 V
|