diff options
Diffstat (limited to '3850/CH36/EX36.5')
-rw-r--r-- | 3850/CH36/EX36.5/Ex36_5.sce | 16 | ||||
-rw-r--r-- | 3850/CH36/EX36.5/Ex36_5.txt | 2 |
2 files changed, 18 insertions, 0 deletions
diff --git a/3850/CH36/EX36.5/Ex36_5.sce b/3850/CH36/EX36.5/Ex36_5.sce new file mode 100644 index 000000000..f050449a7 --- /dev/null +++ b/3850/CH36/EX36.5/Ex36_5.sce @@ -0,0 +1,16 @@ + +//To Calculate the Magnitude of the Earth's Magnetic Field
+
+//Example 36.5
+
+clear;
+
+clc;
+
+Bh=3.6*10^-5;//Horizontal component of Earth's Magnetic Field in Tesla
+
+theta=%pi/3;//Dip Angle in radians
+
+B=Bh/cos(theta);//Resultant Magnetic Field
+
+printf("Magnitude of the Earth magnetic field = %.1f*10^-5 T",B*10^5);
diff --git a/3850/CH36/EX36.5/Ex36_5.txt b/3850/CH36/EX36.5/Ex36_5.txt new file mode 100644 index 000000000..75b3c76aa --- /dev/null +++ b/3850/CH36/EX36.5/Ex36_5.txt @@ -0,0 +1,2 @@ + + Magnitude of the Earth magnetic field = 7.2*10^-5 T
\ No newline at end of file |