SCALE-RM
scale-rm_pp.F90
Go to the documentation of this file.
1 !-------------------------------------------------------------------------------
11 !-------------------------------------------------------------------------------
12 program scalerm_pp
13  !-----------------------------------------------------------------------------
14  !
15  !++ used modules
16  !
17  use mod_launcher
18  !-----------------------------------------------------------------------------
19  implicit none
20 
21  logical :: execute_preprocess = .true. ! execute preprocess tools?
22  logical :: execute_model = .false. ! execute main model?
23 
24  call launcher( execute_preprocess, & ! (in)
25  execute_model ) ! (in)
26 
27  stop
28 end program scalerm_pp
mod_launcher::launcher
subroutine, public launcher(EXECUTE_PREPROCESS, EXECUTE_MODEL)
Definition: mod_launcher.F90:44
mod_launcher
module Launcher(a launcher of main routine)
Definition: mod_launcher.F90:12
scalerm_pp
program scalerm_pp
Program SCALE-RM_pp (a launcher of main routine)
Definition: scale-rm_pp.F90:12