Simulation Core
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

SoftwareInputsVariables.f90 559 B

123456789101112131415161718
  1. module SoftwareInputsVariables
  2. ! use CVoidEventHandlerCollection
  3. type:: SoftwareInputsType
  4. real :: HookHeight = 0
  5. real :: IbopHeight = 0
  6. real :: NearFloorConnection = 0
  7. real :: SafetyValveHeight = 0
  8. logical :: SlackOff = .false.
  9. integer :: StandRack = 0
  10. real :: StringPressure = 0
  11. real :: TdsStemJointHeight = 0
  12. logical :: ZeroStringSpeed = .false.
  13. end type SoftwareInputsType
  14. ! type(SoftwareInputsType):: softwareInputs
  15. contains
  16. end module