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.
 
 
 
 
 
 

37 lines
725 B

  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