diff options
Diffstat (limited to '3850/CH36/EX36.6/Ex36_6.sce')
-rw-r--r-- | 3850/CH36/EX36.6/Ex36_6.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3850/CH36/EX36.6/Ex36_6.sce b/3850/CH36/EX36.6/Ex36_6.sce new file mode 100644 index 000000000..92b989dc1 --- /dev/null +++ b/3850/CH36/EX36.6/Ex36_6.sce @@ -0,0 +1,17 @@ +
+
+//To Calculate the True Dip
+
+//Example 36.6
+
+clear;
+
+clc;
+
+alpha=%pi/4;//Angle made by Dip Circle to the Meridian in radians
+
+del1=%pi/6;//Apparent Dip in radians
+
+del=atan(tan(del1)*cos(alpha))*180/%pi;//True Dip in degrees
+
+printf("True dip = %f degrees",del);//Answer mentioned as atan(1/sqrt(6)) in the textbook which is same as 22.207 degrees
|