blob: 92b989dc19efa2abe6ae898baa3339e5a27e4f5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|