Simulation Core
Não pode escolher mais do que 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.
 
 
 
 
 
 

45 linhas
1.4 KiB

  1. # 1 "/mnt/c/Projects/VSIM/SimulationCore2/SimulationCore2.f90"
  2. ! SimulationCore2.f90
  3. !
  4. ! FUNCTIONS:
  5. ! SimulationCore2 - Entry point of console application.
  6. !
  7. !****************************************************************************
  8. !
  9. ! PROGRAM: SimulationCore2
  10. !
  11. ! PURPOSE: Entry point for the console application.
  12. !
  13. !****************************************************************************
  14. program SimulationCore2
  15. use Simulator
  16. use RedisInterface
  17. !use testRedisModule
  18. implicit none
  19. character(len=100) :: redis_host,redis_password, sim_id, temp
  20. integer :: redis_port, log_level, status,stepTime
  21. ! Variables
  22. ! Body of SimulationCore2
  23. ! print *, 'Hello World'
  24. ! call read_variables()
  25. if(command_argument_count()/=6) then
  26. print *, "Simulator Program must have 6 parameter: redis_host,redisPort,redis_password, sim_id,log_level"
  27. stop
  28. endif
  29. call get_command_argument(1, redis_host)
  30. call get_command_argument(2, temp)
  31. read(temp,*,iostat=status) redis_port
  32. call get_command_argument(3, redis_password)
  33. call get_command_argument(4, sim_id)
  34. call get_command_argument(5, temp)
  35. read(temp,*,iostat=status) log_level
  36. call get_command_argument(6, temp)
  37. read(temp,*,iostat=status) stepTime
  38. call simulate(trim(redis_host),redis_port,trim(redis_password), trim(sim_id),log_level,stepTime)
  39. end program SimulationCore2