module CONVERT driver
More...
module CONVERT driver
- Description
- administrator of convert tools
- Author
- Team SCALE
- NAMELIST
-
PARAM_CONVERT
name | type | default value | comment |
CONVERT_NONE | logical | .false. | |
CONVERT_TOPO | logical | .false. | |
CONVERT_LANDUSE | logical | .false. | |
- History Output
- No history output
◆ convert_setup()
subroutine, public mod_convert::convert_setup |
( |
| ) |
|
Setup.
Definition at line 51 of file mod_convert.f90.
References mod_cnvlanduse::cnvlanduse_setup(), mod_cnvtopo::cnvtopo_setup(), scale_stdio::io_fid_conf, scale_stdio::io_fid_log, scale_stdio::io_fid_nml, scale_stdio::io_l, scale_stdio::io_nml, and scale_process::prc_mpistop().
Referenced by mod_rm_prep::scalerm_prep().
59 namelist / param_convert / &
67 if( io_l )
write(io_fid_log,*)
68 if( io_l )
write(io_fid_log,*)
'++++++ Module[convert] / Categ[preprocess] / Origin[SCALE-RM]' 72 read(io_fid_conf,nml=param_convert,iostat=ierr)
74 if( io_l )
write(io_fid_log,*)
'*** Not found namelist. Default used.' 75 elseif( ierr > 0 )
then 76 write(*,*)
'xxx Not appropriate names in namelist PARAM_CONVERT. Check!' 79 if( io_nml )
write(io_fid_nml,nml=param_convert)
82 if( convert_topo )
then 87 if( convert_landuse )
then subroutine, public prc_mpistop
Abort MPI.
module Convert topography
subroutine, public cnvtopo_setup
Setup.
module Convert LandUseIndex
subroutine, public cnvlanduse_setup
Setup.
◆ convert()
subroutine, public mod_convert::convert |
( |
| ) |
|
Driver.
Definition at line 97 of file mod_convert.f90.
References mod_cnvlanduse::cnvlanduse(), mod_cnvtopo::cnvtopo(), scale_stdio::io_fid_log, scale_stdio::io_l, and scale_process::prc_mpistop().
Referenced by mod_rm_prep::scalerm_prep().
106 if ( convert_none )
then 107 if( io_l )
write(io_fid_log,*)
108 if( io_l )
write(io_fid_log,*)
'++++++ SKIP CONVERT BOUNDARY DATA ++++++' 110 if( io_l )
write(io_fid_log,*)
111 if( io_l )
write(io_fid_log,*)
'++++++ START CONVERT BOUNDARY DATA ++++++' 113 if( convert_topo )
then 117 if( convert_landuse )
then 121 if( io_l )
write(io_fid_log,*)
'++++++ END CONVERT BOUNDARY DATA ++++++' subroutine, public prc_mpistop
Abort MPI.
module Convert topography
subroutine, public cnvlanduse
Driver.
module Convert LandUseIndex
subroutine, public cnvtopo
Driver.