Simulation Core
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

SimulationCore2.f90 616 B

hace 1 año
hace 1 año
hace 1 año
123456789101112131415161718192021222324252627282930
  1. ! SimulationCore2.f90
  2. !
  3. ! FUNCTIONS:
  4. ! SimulationCore2 - Entry point of console application.
  5. !
  6. !****************************************************************************
  7. !
  8. ! PROGRAM: SimulationCore2
  9. !
  10. ! PURPOSE: Entry point for the console application.
  11. !
  12. !****************************************************************************
  13. program SimulationCore2
  14. use Simulator
  15. implicit none
  16. ! Variables
  17. ! Body of SimulationCore2
  18. ! print *, 'Hello World'
  19. call read_variables()
  20. call simulate()
  21. ! Initialise the json_file object.
  22. pause
  23. end program SimulationCore2