36 generic :: mkinit => mkinit_
37 procedure :: setup_ => user_setup
38 generic :: setup => setup_
58 class(
user),
intent(inout) :: this
65 subroutine user_setup( this, atm )
66 use scale_prc,
only: &
70 class(
user),
intent(inout) :: this
73 logical :: USER_do = .false.
74 namelist / param_user / &
81 log_info(
"USER_setup",*)
'Setup'
85 read(io_fid_conf,nml=param_user,iostat=ierr)
87 log_info(
"USER_setup",*)
'Not found namelist. Default used.'
88 elseif( ierr > 0 )
then
89 log_error(
"USER_setup",*)
'Not appropriate names in namelist PARAM_USER. Check!'
95 log_info(
"USER_setup",*)
'This module is dummy.'
97 call this%UserBase%Setup( atm, user_do )
100 end subroutine user_setup
module ATMOSPHERE component
subroutine user_mkinit(this, atm)