Simulation Core
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

62 řádky
1.6 KiB

  1. module ChokeControlMain
  2. implicit none
  3. public
  4. contains
  5. ! subroutine ChokeControl_Setup()
  6. ! ! use CSimulationVariables
  7. ! implicit none
  8. ! call OnSimulationInitialization%Add(ChokeControl_Init)
  9. ! call OnSimulationStop%Add(ChokeControl_Init)
  10. ! call OnChokeControlStep%Add(ChokeControl_Step)
  11. ! call OnChokeControlOutput%Add(ChokeControl_Output)
  12. ! call OnChokeControlMain%Add(ChokeControlMainBody)
  13. ! end subroutine
  14. ! subroutine ChokeControl_Init
  15. ! implicit none
  16. ! end subroutine ChokeControl_Init
  17. subroutine ChokeControl_Step
  18. use ChokeModule
  19. implicit none
  20. CALL CHOKE_MainBody
  21. end subroutine ChokeControl_Step
  22. ! subroutine ChokeControl_Output
  23. ! implicit none
  24. ! end subroutine ChokeControl_Output
  25. ! subroutine ChokeControlMainBody
  26. ! use CRigSizeVariables
  27. ! use CHOKE
  28. ! implicit none
  29. ! CALL Choke_StartUp()
  30. ! loop1: DO
  31. ! CALL CHOKE_MainBody
  32. ! call sleepqq(100)
  33. ! !IF (IsStopped==.true.) THEN
  34. ! ! EXIT loop1
  35. ! !ENDIF
  36. ! !write(*,*) '1111111111111'
  37. ! if(IsStopped) then
  38. ! !write(*,*) '22222222222222'
  39. ! CALL DEALLOCATE_ARRAYS_CHOKE()
  40. ! !write(*,*) '333333333'
  41. ! call Quit()
  42. ! end if
  43. ! ENDDO loop1
  44. ! CLOSE(150)
  45. ! !CALL DEALLOCATE_ARRAYS_CHOKE()
  46. ! end subroutine ChokeControlMainBody
  47. end module ChokeControlMain