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
984 B

  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. use RedisInterface
  16. !use testRedisModule
  17. implicit none
  18. character(len=50)::configFilename = "config-local.json"
  19. ! Variables
  20. ! Body of SimulationCore2
  21. ! print *, 'Hello World'
  22. ! call read_variables()
  23. if(command_argument_count()>0) then
  24. call get_command_argument(1, configFilename)
  25. endif
  26. ! print *,"config-file at SimCore= ",configFilename
  27. ! call initSimulation()
  28. call simulate(configFilename)
  29. ! Initialise the json_file object.
  30. ! call testRedis()
  31. ! pause
  32. end program SimulationCore2