[1] | 1 | SUBROUTINE parin |
---|
| 2 | |
---|
| 3 | !------------------------------------------------------------------------------! |
---|
| 4 | ! Actual revisions: |
---|
| 5 | ! ----------------- |
---|
[63] | 6 | ! +dt_max, netcdf_64bit_3d in d3par, +loop_optimization, pt_reference in |
---|
| 7 | ! inipar, -data_output_ts |
---|
[1] | 8 | ! |
---|
| 9 | ! Former revisions: |
---|
| 10 | ! ----------------- |
---|
[2] | 11 | ! $Id: parin.f90 63 2007-03-13 03:52:49Z raasch $ |
---|
[39] | 12 | ! |
---|
| 13 | ! 20 2007-02-26 00:12:32Z raasch |
---|
| 14 | ! +top_heatflux, use_top_fluxes in inipar |
---|
| 15 | ! |
---|
[7] | 16 | ! -netcdf_64bit_3d |
---|
| 17 | ! |
---|
| 18 | ! 3 2007-02-13 11:30:58Z raasch |
---|
[3] | 19 | ! +netcdf_64bit_3d in d3par, |
---|
| 20 | ! RCS Log replace by Id keyword, revision history cleaned up |
---|
[2] | 21 | ! |
---|
[1] | 22 | ! Revision 1.57 2007/02/11 13:11:22 raasch |
---|
| 23 | ! Values of environment variables are now read from file ENVPAR instead of |
---|
| 24 | ! reading them with a system call, + NAMELIST envpar |
---|
| 25 | ! |
---|
| 26 | ! Revision 1.1 1997/07/24 11:22:50 raasch |
---|
| 27 | ! Initial revision |
---|
| 28 | ! |
---|
| 29 | ! |
---|
| 30 | ! Description: |
---|
| 31 | ! ------------ |
---|
| 32 | ! This subroutine reads variables controling the run from the NAMELIST files |
---|
| 33 | !------------------------------------------------------------------------------! |
---|
| 34 | |
---|
| 35 | USE arrays_3d |
---|
| 36 | USE averaging |
---|
| 37 | USE control_parameters |
---|
| 38 | USE grid_variables |
---|
| 39 | USE indices |
---|
| 40 | USE model_1d |
---|
| 41 | USE pegrid |
---|
| 42 | USE profil_parameter |
---|
| 43 | USE statistics |
---|
| 44 | |
---|
| 45 | IMPLICIT NONE |
---|
| 46 | |
---|
| 47 | INTEGER :: idum |
---|
| 48 | |
---|
| 49 | |
---|
| 50 | NAMELIST /inipar/ adjust_mixing_length, alpha_surface, bc_e_b, bc_lr, & |
---|
| 51 | bc_ns, bc_p_b, bc_p_t, bc_pt_b, bc_pt_t, bc_q_b, & |
---|
| 52 | bc_q_t,bc_s_b, bc_s_t, bc_uv_b, bc_uv_t, & |
---|
| 53 | building_height, building_length_x, building_length_y, & |
---|
| 54 | building_wall_left, building_wall_south, & |
---|
| 55 | cloud_droplets, cloud_physics, conserve_volume_flow, & |
---|
| 56 | cut_spline_overshoot, damp_level_1d, dissipation_1d, & |
---|
| 57 | dt, dt_pr_1d, dt_run_control_1d, dx, dy, dz, dz_max, & |
---|
| 58 | dz_stretch_factor, dz_stretch_level, e_min, & |
---|
| 59 | end_time_1d, fft_method, galilei_transformation, & |
---|
| 60 | grid_matching, inflow_disturbance_begin, & |
---|
| 61 | inflow_disturbance_end, initializing_actions, & |
---|
| 62 | km_constant, km_damp_max, long_filter_factor, & |
---|
[63] | 63 | loop_optimization, mixing_length_1d, moisture, & |
---|
| 64 | momentum_advec, netcdf_precision, npex, npey, nsor_ini, & |
---|
| 65 | nx, ny, nz, omega, outflow_damping_width, & |
---|
| 66 | overshoot_limit_e, & |
---|
[1] | 67 | overshoot_limit_pt, overshoot_limit_u, & |
---|
| 68 | overshoot_limit_v, overshoot_limit_w, passive_scalar, & |
---|
[57] | 69 | phi, prandtl_layer, precipitation, pt_reference, & |
---|
| 70 | pt_surface, pt_surface_initial_change, & |
---|
| 71 | pt_vertical_gradient, pt_vertical_gradient_level, & |
---|
| 72 | q_surface, q_surface_initial_change, & |
---|
| 73 | q_vertical_gradient, q_vertical_gradient_level, & |
---|
| 74 | radiation, random_generator, random_heatflux, rif_max, & |
---|
| 75 | rif_min, roughness_length, scalar_advec, & |
---|
| 76 | statistic_regions, surface_heatflux, surface_pressure, & |
---|
| 77 | surface_scalarflux, surface_waterflux, s_surface, & |
---|
| 78 | s_surface_initial_change, s_vertical_gradient, & |
---|
| 79 | s_vertical_gradient_level, top_heatflux, & |
---|
| 80 | timestep_scheme, topography, ug_surface, & |
---|
[1] | 81 | ug_vertical_gradient, ug_vertical_gradient_level, & |
---|
| 82 | ups_limit_e, ups_limit_pt, ups_limit_u, ups_limit_v, & |
---|
[20] | 83 | ups_limit_w, use_surface_fluxes, use_top_fluxes, & |
---|
| 84 | use_ug_for_galilei_tr, use_upstream_for_tke, & |
---|
| 85 | vg_surface, vg_vertical_gradient, & |
---|
[1] | 86 | vg_vertical_gradient_level, wall_adjustment, & |
---|
| 87 | wall_heatflux |
---|
| 88 | |
---|
| 89 | |
---|
| 90 | NAMELIST /d3par/ averaging_interval, averaging_interval_pr, & |
---|
| 91 | call_psolver_at_all_substeps, cfl_factor, & |
---|
| 92 | create_disturbances, cross_normalized_x, & |
---|
| 93 | cross_normalized_y, cross_profiles, cross_ts_uymax, & |
---|
| 94 | cross_ts_uymin, cross_xtext, cycle_mg, data_output, & |
---|
[48] | 95 | data_output_format, data_output_pr, & |
---|
[1] | 96 | data_output_2d_on_each_pe, disturbance_amplitude, & |
---|
| 97 | disturbance_energy_limit, disturbance_level_b, & |
---|
| 98 | disturbance_level_t, do2d_at_begin, do3d_at_begin, & |
---|
| 99 | do3d_compress, do3d_comp_prec, dt, dt_averaging_input, & |
---|
| 100 | dt_averaging_input_pr, dt_data_output, & |
---|
| 101 | dt_data_output_av, dt_disturb, dt_dopr, & |
---|
| 102 | dt_dopr_listing, dt_dots, dt_do2d_xy, dt_do2d_xz, & |
---|
[61] | 103 | dt_do2d_yz, dt_do3d, dt_max, dt_restart, dt_run_control,& |
---|
[1] | 104 | end_time, force_print_header, mg_cycles, & |
---|
[46] | 105 | mg_switch_to_pe0_level, netcdf_64bit, netcdf_64bit_3d, & |
---|
[2] | 106 | ngsrb, normalizing_region, nsor, nz_do3d, omega_sor, & |
---|
[1] | 107 | prandtl_number, profile_columns, profile_rows, psolver, & |
---|
| 108 | rayleigh_damping_factor, rayleigh_damping_height, & |
---|
| 109 | residual_limit, restart_time, section_xy, section_xz, & |
---|
| 110 | section_yz, skip_time_data_output, & |
---|
| 111 | skip_time_data_output_av, skip_time_dopr, & |
---|
| 112 | skip_time_dosp, skip_time_do2d_xy, skip_time_do2d_xz, & |
---|
| 113 | skip_time_do2d_yz, skip_time_do3d, & |
---|
| 114 | termination_time_needed, use_prior_plot1d_parameters, & |
---|
| 115 | z_max_do1d, z_max_do1d_normalized, z_max_do2d |
---|
| 116 | |
---|
| 117 | |
---|
| 118 | NAMELIST /envpar/ host, maximum_cpu_time_allowed, run_identifier, & |
---|
| 119 | tasks_per_node, write_binary |
---|
| 120 | |
---|
| 121 | |
---|
| 122 | #if defined( __parallel ) |
---|
| 123 | ! |
---|
| 124 | !-- Preliminary determination of processor-id which is needed here to open the |
---|
| 125 | !-- input files belonging to the corresponding processor and to produce |
---|
| 126 | !-- messages by PE0 only (myid and myid_char are later determined in |
---|
| 127 | !-- init_pegrid) |
---|
| 128 | CALL MPI_COMM_RANK( comm_palm, myid, ierr ) |
---|
| 129 | WRITE (myid_char,'(''_'',I4.4)') myid |
---|
| 130 | ! |
---|
| 131 | !-- Since on IBM machines the process rank may be changed when the final |
---|
| 132 | !-- communicator is defined, save the preliminary processor-id for opening |
---|
| 133 | !-- the binary output file for restarts (unit 14), because otherwise |
---|
| 134 | !-- a mismatch occurs when reading this file in the next job |
---|
| 135 | myid_char_14 = myid_char |
---|
| 136 | #endif |
---|
| 137 | |
---|
| 138 | ! |
---|
| 139 | !-- Open the NAMELIST-file which is send with this job |
---|
| 140 | CALL check_open( 11 ) |
---|
| 141 | |
---|
| 142 | ! |
---|
| 143 | !-- Read the control parameters for initialization. |
---|
| 144 | !-- The namelist "inipar" must be provided in the NAMELIST-file. If this is |
---|
| 145 | !-- not the case and the file contains - instead of "inipar" - any other |
---|
| 146 | !-- namelist, a read error is created on t3e and control is transferred |
---|
| 147 | !-- to the statement with label 10. Therefore, on t3e machines one can not |
---|
| 148 | !-- distinguish between errors produced by a wrong "inipar" namelist or |
---|
| 149 | !-- because this namelist is totally missing. |
---|
| 150 | READ ( 11, inipar, ERR=10, END=11 ) |
---|
| 151 | GOTO 12 |
---|
| 152 | 10 IF ( myid == 0 ) THEN |
---|
| 153 | PRINT*, '+++ parin: errors in \$inipar' |
---|
| 154 | PRINT*, ' or no \$inipar-namelist found (CRAY-machines only)' |
---|
| 155 | ENDIF |
---|
| 156 | CALL local_stop |
---|
| 157 | 11 IF ( myid == 0 ) THEN |
---|
| 158 | PRINT*, '+++ parin: no \$inipar-namelist found' |
---|
| 159 | ENDIF |
---|
| 160 | CALL local_stop |
---|
| 161 | |
---|
| 162 | ! |
---|
| 163 | !-- If required, read control parameters from restart file (produced by |
---|
| 164 | !-- a prior run) |
---|
| 165 | 12 IF ( TRIM( initializing_actions ) == 'read_restart_data' ) THEN |
---|
| 166 | |
---|
| 167 | CALL read_var_list |
---|
| 168 | ! |
---|
| 169 | !-- Increment the run count |
---|
| 170 | runnr = runnr + 1 |
---|
| 171 | |
---|
| 172 | ELSE |
---|
| 173 | ! |
---|
| 174 | !-- This is not a restart job. |
---|
| 175 | !-- Check, if the grid point numbers are well defined. |
---|
| 176 | IF ( nx <= 0 ) THEN |
---|
| 177 | IF ( myid == 0 ) THEN |
---|
| 178 | PRINT*, '+++ parin: no value or wrong value given for nx: nx=', nx |
---|
| 179 | ENDIF |
---|
| 180 | CALL local_stop |
---|
| 181 | ENDIF |
---|
| 182 | IF ( ny <= 0 ) THEN |
---|
| 183 | IF ( myid == 0 ) THEN |
---|
| 184 | PRINT*, '+++ parin: no value or wrong value given for ny: ny=', ny |
---|
| 185 | ENDIF |
---|
| 186 | CALL local_stop |
---|
| 187 | ENDIF |
---|
| 188 | IF ( nz <= 0 ) THEN |
---|
| 189 | IF ( myid == 0 ) THEN |
---|
| 190 | PRINT*, '+++ parin: no value or wrong value given for nz: nz=', nz |
---|
| 191 | ENDIF |
---|
| 192 | CALL local_stop |
---|
| 193 | ENDIF |
---|
| 194 | |
---|
| 195 | ! |
---|
| 196 | !-- Allocate arrays which will be already initialized in init_pegrid or |
---|
| 197 | !-- check_parameters. During restart jobs, these arrays will be allocated |
---|
| 198 | !-- in read_var_list. All other arrays are allocated in init_3d_model. |
---|
| 199 | ALLOCATE( ug(0:nz+1), vg(0:nz+1), & |
---|
| 200 | pt_init(0:nz+1), q_init(0:nz+1), u_init(0:nz+1), & |
---|
| 201 | v_init(0:nz+1), & |
---|
| 202 | hom(0:nz+1,2,var_hom,0:statistic_regions) ) |
---|
| 203 | hom = 0.0 |
---|
| 204 | |
---|
| 205 | ENDIF |
---|
| 206 | |
---|
| 207 | ! |
---|
| 208 | !-- Definition of names of areas used for computing statistics. They must |
---|
| 209 | !-- be defined at this place, because they are allowed to be redefined by |
---|
| 210 | !-- the user in user_parin. |
---|
| 211 | region = 'total domain' |
---|
| 212 | |
---|
| 213 | ! |
---|
| 214 | !-- Read runtime parameters given by the user for this run (namelist "d3par"). |
---|
| 215 | !-- The namelist "d3par" can be omitted. In that case, default values are |
---|
| 216 | !-- used for the parameters. |
---|
| 217 | READ ( 11, d3par, END=20 ) |
---|
| 218 | |
---|
| 219 | ! |
---|
| 220 | !-- Read control parameters for optionally used model software packages |
---|
| 221 | 20 CALL package_parin |
---|
| 222 | |
---|
| 223 | ! |
---|
| 224 | !-- Read user-defined variables |
---|
| 225 | CALL user_parin |
---|
| 226 | |
---|
| 227 | ! |
---|
| 228 | !-- NAMELIST-file is not needed anymore |
---|
| 229 | CALL close_file( 11 ) |
---|
| 230 | |
---|
| 231 | ! |
---|
| 232 | !-- Read values of environment variables (this NAMELIST file is generated by |
---|
| 233 | !-- mrun) |
---|
| 234 | OPEN ( 90, FILE='ENVPAR', STATUS='OLD', FORM='FORMATTED', ERR=30 ) |
---|
| 235 | READ ( 90, envpar, ERR=31, END=32 ) |
---|
| 236 | CLOSE ( 90 ) |
---|
| 237 | RETURN |
---|
| 238 | |
---|
| 239 | 30 IF ( myid == 0 ) THEN |
---|
| 240 | PRINT*, '+++ parin: WARNING: local file ENVPAR not found' |
---|
| 241 | PRINT*, ' some variables for steering may not be properly set' |
---|
| 242 | ENDIF |
---|
| 243 | RETURN |
---|
| 244 | |
---|
| 245 | 31 IF ( myid == 0 ) THEN |
---|
| 246 | PRINT*, '+++ parin: WARNING: errors in local file ENVPAR' |
---|
| 247 | PRINT*, ' some variables for steering may not be properly set' |
---|
| 248 | ENDIF |
---|
| 249 | RETURN |
---|
| 250 | |
---|
| 251 | 32 IF ( myid == 0 ) THEN |
---|
| 252 | PRINT*, '+++ parin: WARNING: no envpar-NAMELIST found in local file ', & |
---|
| 253 | 'ENVPAR' |
---|
| 254 | PRINT*, ' some variables for steering may not be properly set' |
---|
| 255 | ENDIF |
---|
| 256 | |
---|
| 257 | END SUBROUTINE parin |
---|