86 total holes
57 analyzed holes
Max radial extent occurred on Hole 77 and is 4.82 meters.
Max bounding box area occurred on Hole 55 and is 13.19 square meters.
Geometry Plots Browser | here |
Raw Drill Data | raw_data.tar.bz2 |
Processed Drill Data | processed_data.tar.bz2 |
Geometry Plots | plot_data.tar.bz2 |
Processing Scripts | scripts.tar.bz2 |
Drill Mechanical Drawing | drill_drawing.pdf |
Drill Navpack Data Sheet | Watson SHR-360 |
Depth Pressure Sensor Data Sheet | Paro Scientific Model 8cb4000-I ( 0 to 6000 psi ) |
Note: Twenty-nine holes where left out of the analysis either due to drill communication issues or that their data was not stored in an accessible database.
K = F * K0; DEPTH = (C/(K*D))*(exp(-1*K*P0) - exp(-1*K*P)) D = density of water at 0C and 0PSI = 0.99987 g/cm3 C = conversion factor PSI -> mH20 = 0.7030696 (for D=1.0000) K0 = compressibility of pure water = 3.44557e-6 /PSI K = compressibility of aerated water = K0*1.0975 = 3.78151e-6 /PSI P0 = Ambient Pressure [ PSI - meteorology office ] P = Paro pressure reading [PSI]
if heading>north_correction:
corrected_heading = heading - north_correction
else:
corrected_heading = 360.0 + ( heading - north_correction )
drill_theta = math.sqrt(math.pow(bank_angle, 2.0) + \
math.pow(elevation_angle, 2.0))
if elevation_angle != 0:
drill_phi = math.atan2(-1.0 * bank_angle, elevation_angle)
sin_drill_phi = math.sin(drill_phi)
cos_drill_phi = math.cos(drill_phi)
rad_heading = math.radians(corrected_heading)
cos_heading = math.cos(rad_heading)
sin_heading = math.sin(rad_heading)
space_phi = math.atan2(
sin_heading + math.tan(drill_phi) * cos_heading,
cos_heading - math.tan(drill_phi) * sin_heading)
drill_dx = payout_diff * math.radians(drill_theta) * cos_drill_phi
drill_dy = payout_diff * math.radians(drill_theta) * sin_drill_phi
space_dx = drill_dx * cos_heading - \
drill_dy * sin_heading
space_dy = drill_dx * sin_heading + \
drill_dy * cos_heading
x_location = x_location + space_dx
y_location = y_location + space_dy
output_fd.write("%f\t%f\t%f\n" % ( payout, x_location, y_location))