Simulation Core
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

77 linhas
1.8 KiB

  1. # 1 "/home/admin/SimulationCore2/Geo/GeoMain.f90"
  2. module GeoMain
  3. use CLog4
  4. implicit none
  5. public
  6. integer :: SampleValue, TestValue
  7. contains
  8. ! subroutine Setup()
  9. ! use CPathChangeEvents
  10. ! implicit none
  11. ! call BeforeTraverse%Add(InitialVarsBeforePathsChanges)
  12. ! call OnPathOpen%Add(WhenPathOpen)
  13. ! !call OnPathClose%Add(WhenPathClose)
  14. ! end subroutine
  15. ! subroutine InitialVarsBeforePathsChanges()
  16. ! implicit none
  17. ! #ifdef deb
  18. ! if(print_log) print*, "ValveOne: FALSE (init)"
  19. ! #endif
  20. ! end subroutine
  21. ! subroutine WhenPathOpen(valves)
  22. ! implicit none
  23. ! integer, allocatable, intent (in) :: valves(:)
  24. ! ! if ( any(valves == 1)) then
  25. ! !#ifdef deb
  26. ! ! if(print_log) print*, "ValveOne: TRUE"
  27. ! !#endif
  28. ! ! endif
  29. ! end subroutine
  30. ! subroutine Geo_Setup()
  31. ! ! use CSimulationVariables
  32. ! implicit none
  33. ! !call OnSimulationInitialization%Add(Geo_Init)
  34. ! call OnSimulationStop%Add(Geo_Stop)
  35. ! call OnGeoStart%Add(Geo_Start)
  36. ! call OnGeoStep%Add(Geo_Step)
  37. ! !call OnGeoOutput%Add(Geo_Output)
  38. ! call OnGeoMain%Add(GeoMainBody)
  39. ! end subroutine
  40. subroutine Geo_Stop
  41. implicit none
  42. !if(print_log) print*, 'Geo_Stop'
  43. end subroutine Geo_Stop
  44. ! subroutine Geo_Start
  45. ! implicit none
  46. ! !if(print_log) print*, '****************Geo_Start****************'
  47. ! end subroutine Geo_Start
  48. subroutine Geo_Step
  49. implicit none
  50. end subroutine Geo_Step
  51. ! !subroutine Geo_Output
  52. ! ! implicit none
  53. ! ! !if(print_log) print*, 'Geo_Output'
  54. ! !end subroutine Geo_Output
  55. ! subroutine GeoMainBody
  56. ! implicit none
  57. ! end subroutine GeoMainBody
  58. end module GeoMain