Simulation Core
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.

CHoistingVariables.f90 477 B

1 year ago
123456789101112131415161718
  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