!======================================================================= ! MODULE module_check_a_mundo ! ! ! Contains subroutines that check the consistency of some namelist ! settings. Some namelist settings depend on other values in the ! namelist. These subroutines reset the dependent values and write ! a message to stdout instead of detecting a fatal error and abort- ! ing on a parameter mis-match. This works around depending on the ! user to set these specific settings in the namelist. ! ! SUBROUTINE check_nml_consistency : ! Check namelist settings for consistency ! ! SUBROUTINE set_physics_rconfigs: ! Check namelist settings that determine memory allocations. ! ! USE module_state_description USE module_wrf_error USE module_configure IMPLICIT NONE !======================================================================= CONTAINS !======================================================================= SUBROUTINE check_nml_consistency ! ! ! Check consistency of namelist settings ! ! IMPLICIT NONE INTEGER :: i !----------------------------------------------------------------------- ! Check that all values of sf_surface_physics are the same for all domains !----------------------------------------------------------------------- DO i = 2, model_config_rec % max_dom IF ( model_config_rec % sf_surface_physics(i) .NE. & model_config_rec % sf_surface_physics(i-1) ) THEN wrf_err_message = '--- ERROR: sf_surface_physics must be equal for all domains ' CALL wrf_message ( wrf_err_message ) wrf_err_message = '--- Fix sf_surface_physics in namelist.input ' CALL wrf_error_fatal ( TRIM( wrf_err_message ) ) END IF ENDDO !----------------------------------------------------------------------- ! If fractional_seaice = 0, and tice2tsk_if2cold = .true, nothing will happen !----------------------------------------------------------------------- IF ( ( model_config_rec%fractional_seaice .EQ. 0 ).AND. & ( model_config_rec%tice2tsk_if2cold ) ) THEN wrf_err_message = '--- WARNING: You set tice2tsk_if2cold = .true., but fractional_seaice = 0' CALL wrf_message ( wrf_err_message ) wrf_err_message = '--- WARNING: tice2tsk_if2cold will have no effect on results.' CALL wrf_message ( wrf_err_message ) END IF !----------------------------------------------------------------------- ! Check that if fine_input_stream /= 0, io_form_auxinput2 must also be in use !----------------------------------------------------------------------- DO i = 1, model_config_rec % max_dom IF ( ( model_config_rec%fine_input_stream(i) .NE. 0 ).AND. & ( model_config_rec%io_form_auxinput2 .EQ. 0 ) ) THEN wrf_err_message = '--- ERROR: If fine_input_stream /= 0, io_form_auxinput2 must be /= 0' CALL wrf_message ( wrf_err_message ) wrf_err_message = '--- Set io_form_auxinput2 in the time_control namelist (probably to 2).' CALL wrf_error_fatal ( TRIM( wrf_err_message ) ) END IF ENDDO !----------------------------------------------------------------------- ! If sst_update = 0, set io_form_auxinput4 to 0 so WRF will not try to ! input the data; auxinput_interval must also be 0 !----------------------------------------------------------------------- IF ( model_config_rec%sst_update .EQ. 0 ) THEN model_config_rec%io_form_auxinput4 = 0 DO i = 1, model_config_rec % max_dom WRITE (wrf_err_message, FMT='(A,A)') '--- NOTE: sst_update is 0, ', & 'setting io_form_auxinput4 = 0 and auxinput4_interval = 0 for all domains' CALL wrf_message ( wrf_err_message ) model_config_rec%auxinput4_interval(i) = 0 model_config_rec%auxinput4_interval_y(i) = 0 model_config_rec%auxinput4_interval_d(i) = 0 model_config_rec%auxinput4_interval_h(i) = 0 model_config_rec%auxinput4_interval_m(i) = 0 model_config_rec%auxinput4_interval_s(i) = 0 ENDDO ELSE IF ( model_config_rec%io_form_auxinput4 .EQ. 0 ) THEN wrf_err_message = '--- ERROR: If sst_update /= 0, io_form_auxinput4 must be /= 0' CALL wrf_message ( wrf_err_message ) wrf_err_message = '--- Set io_form_auxinput4 in the time_control namelist (probably to 2).' CALL wrf_error_fatal ( TRIM( wrf_err_message ) ) END IF END IF #if ((EM_CORE == 1) && (DA_CORE != 1)) !----------------------------------------------------------------------- ! Check that if grid_sfdda is one, grid_fdda is also 1 !----------------------------------------------------------------------- DO i = 1, model_config_rec % max_dom IF ( ( model_config_rec%grid_sfdda(i) .EQ. 1 ).AND. & ( model_config_rec%grid_fdda (i) .NE. 1 ) ) THEN wrf_err_message = '--- ERROR: If grid_sfdda = 1, then grid_fdda must also = 1 for that domain ' CALL wrf_message ( wrf_err_message ) wrf_err_message = '--- Change grid_fdda or grid_sfdda in namelist.input ' CALL wrf_error_fatal ( TRIM( wrf_err_message ) ) END IF ENDDO !----------------------------------------------------------------------- ! If grid_fdda or grid_sfdda is 0 for any domain, all interval and ! ending time information that domain must be set to zero. For ! surface fdda, we also need to make sure that the PXLSM soil nudging ! switch is also zero. Either surface fdda or soil nudging with the ! PX scheme are enough to allow the surface fdda file to be read. !----------------------------------------------------------------------- DO i = 1, model_config_rec % max_dom IF ( model_config_rec%grid_fdda(i) .EQ. 0 ) THEN WRITE (wrf_err_message, FMT='(A,I6,A)') '--- NOTE: grid_fdda is 0 for domain ', & i, ', setting gfdda interval and ending time to 0 for that domain.' CALL wrf_message ( wrf_err_message ) model_config_rec%gfdda_end_y(i) = 0 model_config_rec%gfdda_end_d(i) = 0 model_config_rec%gfdda_end_h(i) = 0 model_config_rec%gfdda_end_m(i) = 0 model_config_rec%gfdda_end_s(i) = 0 model_config_rec%gfdda_interval(i) = 0 model_config_rec%gfdda_interval_y(i) = 0 model_config_rec%gfdda_interval_d(i) = 0 model_config_rec%gfdda_interval_h(i) = 0 model_config_rec%gfdda_interval_m(i) = 0 model_config_rec%gfdda_interval_s(i) = 0 END IF IF ( ( model_config_rec%grid_sfdda(i) .EQ. 0 ) .AND. & ( model_config_rec%pxlsm_soil_nudge(i) .EQ. 0 ) ) THEN WRITE (wrf_err_message, FMT='(A,I6,A)') & '--- NOTE: both grid_sfdda and pxlsm_soil_nudge are 0 for domain ', & i, ', setting sgfdda interval and ending time to 0 for that domain.' CALL wrf_message ( wrf_err_message ) model_config_rec%sgfdda_end_y(i) = 0 model_config_rec%sgfdda_end_d(i) = 0 model_config_rec%sgfdda_end_h(i) = 0 model_config_rec%sgfdda_end_m(i) = 0 model_config_rec%sgfdda_end_s(i) = 0 model_config_rec%sgfdda_interval(i) = 0 model_config_rec%sgfdda_interval_y(i) = 0 model_config_rec%sgfdda_interval_d(i) = 0 model_config_rec%sgfdda_interval_h(i) = 0 model_config_rec%sgfdda_interval_m(i) = 0 model_config_rec%sgfdda_interval_s(i) = 0 END IF IF ( model_config_rec%obs_nudge_opt(i) .EQ. 0 ) THEN WRITE (wrf_err_message, FMT='(A,I6,A)') '--- NOTE: obs_nudge_opt is 0 for domain ', & i, ', setting obs nudging interval and ending time to 0 for that domain.' CALL wrf_message ( wrf_err_message ) model_config_rec%fdda_end(i) = 0 model_config_rec%auxinput11_interval(i) = 0 model_config_rec%auxinput11_interval_y(i) = 0 model_config_rec%auxinput11_interval_d(i) = 0 model_config_rec%auxinput11_interval_h(i) = 0 model_config_rec%auxinput11_interval_m(i) = 0 model_config_rec%auxinput11_interval_s(i) = 0 model_config_rec%auxinput11_end(i) = 0 model_config_rec%auxinput11_end_y(i) = 0 model_config_rec%auxinput11_end_d(i) = 0 model_config_rec%auxinput11_end_h(i) = 0 model_config_rec%auxinput11_end_m(i) = 0 model_config_rec%auxinput11_end_s(i) = 0 END IF ENDDO ! Loop over domains !----------------------------------------------------------------------- ! If analysis FDDA is turned off, reset the io_forms to zero so that ! there is no chance that WRF tries to input the data. !----------------------------------------------------------------------- IF ( MAXVAL( model_config_rec%grid_fdda ) .EQ. 0 ) THEN model_config_rec%io_form_gfdda = 0 ELSE IF ( model_config_rec%io_form_gfdda .EQ. 0 ) THEN wrf_err_message = '--- ERROR: If grid_fdda /= 0, io_form_gfdda must be /= 0' CALL wrf_message ( wrf_err_message ) wrf_err_message = '--- Set io_form_gfdda in the time_control namelist (probably to 2).' CALL wrf_error_fatal ( TRIM( wrf_err_message ) ) END IF END IF IF ( MAXVAL( model_config_rec%grid_sfdda ) .EQ. 0 ) THEN model_config_rec%io_form_sgfdda = 0 ELSE IF ( model_config_rec%io_form_sgfdda .EQ. 0 ) THEN wrf_err_message = '--- ERROR: If grid_sfdda /= 0, io_form_sgfdda must be /= 0' CALL wrf_message ( wrf_err_message ) wrf_err_message = '--- Set io_form_sgfdda in the time_control namelist (probably to 2).' CALL wrf_error_fatal ( TRIM( wrf_err_message ) ) END IF END IF ! Remapping namelist variables for gridded and surface fdda to aux streams 9 and 10. ! Relocated here so that the remappings are after checking the namelist for inconsistencies. # include "../dyn_em/namelist_remappings_em.h" #endif END SUBROUTINE !======================================================================= SUBROUTINE set_physics_rconfigs ! ! ! Some derived rconfig entries need to be set based on the value of other, ! non-derived entries before package-dependent memory allocation takes place. ! This works around depending on the user to set these specific settings in the ! namelist. ! ! IMPLICIT NONE !----------------------------------------------------------------------- ! Set the namelist parameters for the CAM radiation scheme if either ! ra_lw_physics = CAMLWSCHEME or ra_sw_physics = CAMSWSCHEME. !----------------------------------------------------------------------- IF (( model_config_rec % ra_lw_physics(1) .EQ. CAMLWSCHEME ) .OR. & ( model_config_rec % ra_sw_physics(1) .EQ. CAMSWSCHEME )) THEN model_config_rec % paerlev = 29 model_config_rec % levsiz = 59 model_config_rec % cam_abs_dim1 = 4 model_config_rec % cam_abs_dim2 = model_config_rec % e_vert(1) wrf_err_message = '--- NOTE: CAM radiation is in use, setting: ' // & 'paerlev=29, levsiz=59, cam_abs_dim1=4, cam_abs_dim2=e_vert' CALL wrf_message ( wrf_err_message ) END IF !----------------------------------------------------------------------- ! Set namelist parameter num_soil_levels depending on the value of ! sf_surface_physics !----------------------------------------------------------------------- IF ( model_config_rec % sf_surface_physics(1) .EQ. 0 ) & model_config_rec % num_soil_layers = 5 IF ( model_config_rec % sf_surface_physics(1) .EQ. SLABSCHEME ) & model_config_rec % num_soil_layers = 5 IF ( model_config_rec % sf_surface_physics(1) .EQ. LSMSCHEME ) & model_config_rec % num_soil_layers = 4 IF ( model_config_rec % sf_surface_physics(1) .EQ. RUCLSMSCHEME) & model_config_rec % num_soil_layers = 6 IF ( model_config_rec % sf_surface_physics(1) .EQ. PXLSMSCHEME ) & model_config_rec % num_soil_layers = 2 IF ( model_config_rec % sf_surface_physics(1) .EQ. 88 ) & model_config_rec % num_soil_layers = 4 WRITE (wrf_err_message, FMT='(A,I6)') '--- NOTE: num_soil_layers has been set to ', & model_config_rec % num_soil_layers CALL wrf_message ( wrf_err_message ) END SUBROUTINE set_physics_rconfigs !======================================================================= END MODULE module_check_a_mundo !=======================================================================