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 /608/CH9/EX9.04 | |
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 '608/CH9/EX9.04')
-rwxr-xr-x | 608/CH9/EX9.04/9_04.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/608/CH9/EX9.04/9_04.sce b/608/CH9/EX9.04/9_04.sce new file mode 100755 index 000000000..6425a1165 --- /dev/null +++ b/608/CH9/EX9.04/9_04.sce @@ -0,0 +1,14 @@ +//Problem 9.04: The wing span of a metal aeroplane is 36 m. If the aeroplane is flying at 400 km/h, determine the e.m.f. induced between its wing tips. Assume the vertical component of the earth’s magnetic field is 40 μT
+
+//initializing the variables:
+s = 36; // in m
+v = 400; // in km/h
+u0 = 4*%pi*1E-7;
+B = 40E-6; // in Tesla
+
+//calculation:
+v0 = v*5/18
+E = B*s*v0
+
+printf("\n\nResult\n\n")
+printf("\n Induced e.m.f. = %.2f V\n",E)
\ No newline at end of file |