DrillItem
- class wellcad.com.DrillItem(dispatch)
A Drill Item found in an engineering log gives information about the dimensions of the drilled borehole.
The drill item gives information about the diameter and length of the borehole. You can have multiple drill items in a borehole if the diameter varies at certain depths. Only a bottom depth is specified: it will range from the top of the borehole (at depth 0) to the specified bottom_depth OR if another drill item is present above, it will range from the bottom of the other drill to the bottom_depth of the current drill.
Example
>>> log = borehole.log("Well Sketch") >>> drill_item = log.drill_item(0) >>> drill_item.diameter 300 >>> drill_item.comment 'Drill 0.00-15.00 diameter:300'
- property bottom_depth
The bottom depth of the drill in current depth units.
- Type:
float
- property comment
The comment associated with the drill item.
- Type:
str
- property diameter
The diameter of the drill in arbitrary units.
Note that some other dimensions in an engineering log are relative to this measure.
- Type:
float