Simulation Core
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CChokeProblemsVariables.f90 1.0 KiB

1 년 전
1 년 전
12345678910111213141516171819202122232425262728293031
  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. type(CProblem) :: HydraulicChoke2Plugged
  11. type(CProblem) :: HydraulicChoke2Fail
  12. type(CProblem) :: HydraulicChoke2Washout
  13. type(CProblem) :: ManualChoke1Plugged
  14. type(CProblem) :: ManualChoke1Fail
  15. type(CProblem) :: ManualChoke1Washout
  16. type(CProblem) :: ManualChoke2Plugged
  17. type(CProblem) :: ManualChoke2Fail
  18. type(CProblem) :: ManualChoke2Washout
  19. type(CProblem) :: ChokePanelAirFail
  20. integer :: ManualChoke1PluggedPercent
  21. integer :: HydraulicChoke2PluggedPercent
  22. integer :: HydraulicChoke1PluggedPercent
  23. integer :: ManualChoke2PluggedPercent
  24. end type ChokeProblemsType
  25. contains
  26. end module CChokeProblemsVariables