summaryrefslogtreecommitdiff
path: root/3850/CH36/EX36.9/Ex36_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '3850/CH36/EX36.9/Ex36_9.sce')
-rw-r--r--3850/CH36/EX36.9/Ex36_9.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/3850/CH36/EX36.9/Ex36_9.sce b/3850/CH36/EX36.9/Ex36_9.sce
new file mode 100644
index 000000000..ff835c19f
--- /dev/null
+++ b/3850/CH36/EX36.9/Ex36_9.sce
@@ -0,0 +1,21 @@
+
+
+//To Compare the total Magnetic Field due to earth at the two places
+
+//Example 36.9
+
+clear;
+
+clc;
+
+T1=3;//Time period for first place in seconds
+
+T2=2;//Time Period for second place in seconds
+
+theta1=%pi/4;//Dip in radians at first place
+
+theta2=%pi/6;//Dip in radians at second place
+
+Br=(T1^2/T2^2)*cos(theta1)/cos(theta2);//Ratio of Magnetic Field due to earth at two places
+
+printf("The ratio of Magnetic Field due to earth at the two places = %.3f",Br);