module CONVERT driver
More...
module CONVERT driver
- Description
- administrator of convert tools
- Author
- Team SCALE
- NAMELIST
-
PARAM_CONVERT
name | type | default value | comment |
CONVERT_TOPO | logical | .false. | |
CONVERT_LANDUSE | logical | .false. | |
CONVERT_2D | logical | .false. | |
- History Output
- No history output
◆ convert_setup()
subroutine, public mod_convert::convert_setup |
( |
| ) |
|
Setup.
Definition at line 52 of file mod_convert.F90.
References mod_cnv2d::cnv2d_setup(), mod_cnvlanduse::cnvlanduse_setup(), mod_cnvtopo::cnvtopo_setup(), scale_io::io_fid_conf, and scale_prc::prc_abort().
Referenced by mod_rm_prep::rm_prep().
62 namelist / param_convert / &
71 log_info(
"CONVERT_setup",*)
'Setup' 77 log_info(
"CONVERT_setup",*)
'Not found namelist. Default used.' 78 elseif( ierr > 0 )
then 79 log_error(
"CONVERT_setup",*)
'Not appropriate names in namelist PARAM_CONVERT. Check!' 82 log_nml(param_convert)
85 if( convert_topo )
then 90 if( convert_landuse )
then module Convert topography
integer, public io_fid_conf
Config file ID.
subroutine, public cnvtopo_setup
Setup.
subroutine, public cnv2d_setup
Setup.
subroutine, public prc_abort
Abort Process.
module Convert LandUseIndex
subroutine, public cnvlanduse_setup
Setup.
◆ convert()
subroutine, public mod_convert::convert |
( |
| ) |
|
Driver.
Definition at line 105 of file mod_convert.F90.
References mod_cnv2d::cnv2d(), mod_cnvlanduse::cnvlanduse(), mod_cnvtopo::cnvtopo(), and scale_prc::prc_abort().
Referenced by mod_rm_prep::rm_prep().
116 if ( convert_topo .OR. convert_landuse .OR. convert_2d )
then 118 log_progress(*)
'start convert boundary data' 120 if( convert_landuse )
then 124 if( convert_topo )
then 128 if( convert_2d )
then 132 log_progress(*)
'end convert boundary data' 135 log_progress(*)
'skip convert boundary data' module Convert topography
subroutine, public cnvlanduse
Driver.
subroutine, public prc_abort
Abort Process.
module Convert LandUseIndex
subroutine, public cnvtopo
Driver.
subroutine, public cnv2d
Driver.