You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- module CHoistingVariables
- implicit none
- public
- !constants
- integer :: TopDrive_DriveType = 0
- integer :: Kelly_DriveType = 1
-
- ! variables
- integer :: DriveType
- real(8) :: TravelingBlockWeight
- real(8) :: TopDriveWeight
- real(8) :: KellyWeight
- integer :: NumberOfLine
- real(8) :: DrillingLineBreakingLoad
- contains
- end module CHoistingVariables
|