Changeset 3182 for palm/trunk/SOURCE/check_parameters.f90
- Timestamp:
- Jul 27, 2018 1:36:03 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/check_parameters.f90
r3129 r3182 20 20 ! Current revisions: 21 21 ! ----------------- 22 ! 22 ! Rename boundary conditions in offline nesting 23 23 ! 24 24 ! Former revisions: … … 1069 1069 !-- Check turbulence closure setup 1070 1070 CALL tcm_check_parameters 1071 1071 1072 ! 1072 1073 !-- Check approximation … … 1437 1438 CALL MPI_ALLREDUCE( dt_spinup, dt_spinup_max, 1, MPI_REAL, & 1438 1439 MPI_MAX, MPI_COMM_WORLD, ierr ) 1440 1439 1441 IF ( spinup_time /= spinup_time_max .OR. dt_spinup /= dt_spinup_max ) & 1440 1442 THEN … … 1781 1783 ! 1782 1784 !-- Overwrite latitude if necessary and compute Coriolis parameter. 1783 !-- Todo - move initialization of f and fs to coriolis_mod.1785 !-- @todo - move initialization of f and fs to coriolis_mod. 1784 1786 IF ( input_pids_static ) THEN 1785 1787 latitude = init_model%latitude … … 1976 1978 !-- TO_DO: later set bc_p_t to neumann before, in case of nested domain 1977 1979 ELSEIF ( bc_p_t == 'neumann' .OR. bc_p_t == 'nested' .OR. & 1978 bc_p_t == ' forcing' ) THEN1980 bc_p_t == 'nesting_offline' ) THEN 1979 1981 ibc_p_t = 1 1980 1982 ELSE … … 2006 2008 ELSEIF ( bc_pt_t == 'initial_gradient' ) THEN 2007 2009 ibc_pt_t = 2 2008 ELSEIF ( bc_pt_t == 'nested' .OR. bc_pt_t == ' forcing' ) THEN2010 ELSEIF ( bc_pt_t == 'nested' .OR. bc_pt_t == 'nesting_offline' ) THEN 2009 2011 ibc_pt_t = 3 2010 2012 ELSE … … 2234 2236 ELSEIF ( bc_uv_t == 'neumann' ) THEN 2235 2237 ibc_uv_t = 1 2236 ELSEIF ( bc_uv_t == 'nested' .OR. bc_uv_t == ' forcing' ) THEN2238 ELSEIF ( bc_uv_t == 'nested' .OR. bc_uv_t == 'nesting_offline' ) THEN 2237 2239 ibc_uv_t = 3 2238 2240 ELSE … … 3926 3928 dist_nxl = MAX( inflow_disturbance_begin, nxl ) 3927 3929 dist_nxr(1) = MIN( inflow_disturbance_end, nxr ) 3928 ELSEIF ( bc_lr == 'nested' .OR. bc_lr == ' forcing' ) THEN3930 ELSEIF ( bc_lr == 'nested' .OR. bc_lr == 'nesting_offline' ) THEN 3929 3931 dist_nxl = MAX( inflow_disturbance_begin, nxl ) 3930 3932 dist_nxr = MIN( nx - inflow_disturbance_begin, nxr ) … … 3936 3938 dist_nys = MAX( inflow_disturbance_begin, nys ) 3937 3939 dist_nyn(1) = MIN( inflow_disturbance_end, nyn ) 3938 ELSEIF ( bc_ns == 'nested' .OR. bc_ns == ' forcing' ) THEN3940 ELSEIF ( bc_ns == 'nested' .OR. bc_ns == 'nesting_offline' ) THEN 3939 3941 dist_nys = MAX( inflow_disturbance_begin, nys ) 3940 3942 dist_nyn = MIN( ny - inflow_disturbance_begin, nyn ) … … 3949 3951 dist_nxl = inflow_disturbance_begin 3950 3952 dist_nxr(1) = inflow_disturbance_end 3951 ELSEIF ( bc_lr == 'nested' .OR. bc_lr == ' forcing' ) THEN3953 ELSEIF ( bc_lr == 'nested' .OR. bc_lr == 'nesting_offline' ) THEN 3952 3954 dist_nxr = nx - inflow_disturbance_begin 3953 3955 dist_nxl = inflow_disturbance_begin … … 3959 3961 dist_nys = inflow_disturbance_begin 3960 3962 dist_nyn(1) = inflow_disturbance_end 3961 ELSEIF ( bc_ns == 'nested' .OR. bc_ns == ' forcing' ) THEN3963 ELSEIF ( bc_ns == 'nested' .OR. bc_ns == 'nesting_offline' ) THEN 3962 3964 dist_nyn = ny - inflow_disturbance_begin 3963 3965 dist_nys = inflow_disturbance_begin … … 4403 4405 ELSEIF ( bc_t == 'initial_gradient' ) THEN 4404 4406 ibc_t = 2 4405 ELSEIF ( bc_t == 'nested' .OR. bc_t == ' forcing' ) THEN4407 ELSEIF ( bc_t == 'nested' .OR. bc_t == 'nesting_offline' ) THEN 4406 4408 ibc_t = 3 4407 4409 ELSE
Note: See TracChangeset
for help on using the changeset viewer.