Simulation Core
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

CHoistingVariables.f90 494 B

před 2 roky
před 2 roky
před 2 roky
12345678910111213141516171819
  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. Type(HoistingType)::Hoisting
  17. end module CHoistingVariables