Simulation Core
 
 
 
 
 
 

18 lines
477 B

  1. module CHoistingVariables
  2. implicit none
  3. public
  4. !constants
  5. integer :: TopDrive_DriveType = 0
  6. integer :: Kelly_DriveType = 1
  7. ! variables
  8. Type::HoistingType
  9. integer :: DriveType
  10. real(8) :: TravelingBlockWeight
  11. real(8) :: TopDriveWeight
  12. real(8) :: KellyWeight
  13. integer :: NumberOfLine
  14. real(8) :: DrillingLineBreakingLoad
  15. End type HoistingType
  16. end module CHoistingVariables