Simulation Core
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

COtherProblemsVariables.i90 725 B

vor 1 Jahr
123456789101112131415161718192021222324252627282930313233343536
  1. # 1 "/mnt/c/Projects/VSIM/SimulationCore2/CSharp/Problems/COtherProblemsVariables.f90"
  2. module COtherProblemsVariables
  3. use CProblemDifinition
  4. implicit none
  5. public
  6. ! Input vars
  7. TYPE:: OtherProblemsType
  8. type(CProblem) :: RigAlarm
  9. type(CProblem) :: RigWaterSupply
  10. type(CProblem) :: RigAir
  11. type(CProblem) :: Gen1
  12. type(CProblem) :: Gen2
  13. type(CProblem) :: Gen3
  14. type(CProblem) :: Gen4
  15. type(CProblem) :: Scr1
  16. type(CProblem) :: Scr2
  17. type(CProblem) :: Scr3
  18. type(CProblem) :: Scr4
  19. end type OtherProblemsType
  20. contains
  21. end module COtherProblemsVariables