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.
 
 
 
 
 
 

30 lines
1.0 KiB

  1. module CChokeProblemsVariables
  2. use CProblemDifinition
  3. implicit none
  4. public
  5. ! Input vars
  6. type:: ChokeProblemsType
  7. type(CProblem) :: HydraulicChoke1Plugged
  8. type(CProblem) :: HydraulicChoke1Fail
  9. type(CProblem) :: HydraulicChoke1Washout
  10. integer :: HydraulicChoke1PluggedPercent
  11. type(CProblem) :: HydraulicChoke2Plugged
  12. type(CProblem) :: HydraulicChoke2Fail
  13. type(CProblem) :: HydraulicChoke2Washout
  14. integer :: HydraulicChoke2PluggedPercent
  15. type(CProblem) :: ManualChoke1Plugged
  16. type(CProblem) :: ManualChoke1Fail
  17. type(CProblem) :: ManualChoke1Washout
  18. integer :: ManualChoke1PluggedPercent
  19. type(CProblem) :: ManualChoke2Plugged
  20. type(CProblem) :: ManualChoke2Fail
  21. type(CProblem) :: ManualChoke2Washout
  22. integer :: ManualChoke2PluggedPercent
  23. type(CProblem) :: ChokePanelAirFail
  24. end type ChokeProblemsType
  25. contains
  26. end module CChokeProblemsVariables