FE-Project
Loading...
Searching...
No Matches
scale-dg.F90
Go to the documentation of this file.
1!-------------------------------------------------------------------------------
2!> Program SCALE-DG (a launcher of main routine)
3!!
4!! @par Description
5!! SCALE: Scalable Computing by Advanced Library and Environment
6!! numerical model with DGM for regional weather, regional climate, and large-Eddy Simulation (LES)
7!!
8!! @author Yuta Kawai, Team SCALE
9!!
10!<
11!-------------------------------------------------------------------------------
12program scaledg
13 !-----------------------------------------------------------------------------
14 !
15 !++ used modules
16 !
18 !-----------------------------------------------------------------------------
19 implicit none
20 !-----------------------------------------------------------------------------
21 !
22 !++ included parameters
23 !
24 !-----------------------------------------------------------------------------
25 !
26 !++ parameters & variables
27 !
28 !=============================================================================
29
30 logical :: execute_preprocess = .false. ! execute preprocess tools?
31 logical :: execute_model = .true. ! execute main model?
32
33 !-----------------------------------------------------------
34
35 call launcher( execute_preprocess, & ! (in)
36 execute_model ) ! (in)
37
38 stop
39end program scaledg
module Launcher(a launcher of main routine)
subroutine, public launcher(execute_preprocess, execute_model)
program scaledg
Program SCALE-DG (a launcher of main routine)
Definition scale-dg.F90:12