From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 608/CH9/EX9.04/9_04.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 608/CH9/EX9.04/9_04.sce (limited to '608/CH9/EX9.04') 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 -- cgit