Changeset 4413
- Timestamp:
- Feb 19, 2020 3:52:19 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/pmc_interface_mod.f90
r4385 r4413 25 25 ! ----------------- 26 26 ! $Id$ 27 ! All the USE-statements within subroutines moved up to the module declaration section. 28 ! 29 ! 4385 2020-01-27 08:37:37Z hellstea 27 30 ! Error messages PA0425 and PA0426 made more specific 28 31 ! … … 187 190 pt, pt_2, q, q_2, qc, qc_2, qr, qr_2, s, s_2, & 188 191 u, u_p, u_2, v, v_p, v_2, w, w_p, w_2, zu, zw 189 192 193 USE chem_gasphase_mod, & 194 ONLY: nspec 195 196 USE chem_modules, & 197 ONLY: chem_species, ibc_cs_b, nesting_chem 198 199 USE chemistry_model_mod, & 200 ONLY: spec_conc_2 201 190 202 USE control_parameters, & 191 203 ONLY: air_chemistry, bc_dirichlet_l, bc_dirichlet_n, bc_dirichlet_r, & 192 204 bc_dirichlet_s, child_domain, & 193 205 constant_diffusion, constant_flux_layer, & 194 coupling_char, 206 coupling_char, end_time, & 195 207 debug_output_timestep, & 196 dt_3d, dz, humidity, message_string, & 197 neutral, passive_scalar, rans_mode, rans_tke_e, & 198 roughness_length, salsa, topography, volume_flow 199 200 USE chem_gasphase_mod, & 201 ONLY: nspec 202 203 USE chem_modules, & 204 ONLY: chem_species, nesting_chem 205 206 USE chemistry_model_mod, & 207 ONLY: spec_conc_2 208 208 dt_restart, dt_3d, dz, humidity, & 209 ibc_pt_b, ibc_q_b, ibc_s_b, ibc_uv_b, & 210 message_string, neutral, passive_scalar, rans_mode, rans_tke_e, & 211 restart_time, & 212 roughness_length, salsa, topography, volume_flow, time_restart 213 209 214 USE cpulog, & 210 215 ONLY: cpu_log, log_point_s … … 241 246 242 247 USE pmc_general, & 243 ONLY: da_namelen 248 ONLY: da_namelen, pmc_max_array 244 249 245 250 USE pmc_handle_communicator, & … … 258 263 259 264 #endif 260 265 261 266 USE salsa_mod, & 262 ONLY: aerosol_mass, aerosol_number, gconc_2, mconc_2, nbins_aerosol, & 267 ONLY: aerosol_mass, aerosol_number, gconc_2, ibc_salsa_b, & 268 mconc_2, nbins_aerosol, & 263 269 ncomponents_mass, nconc_2, nesting_salsa, ngases_salsa, & 264 270 salsa_gas, salsa_gases_from_chem 265 271 266 272 USE surface_mod, & 267 ONLY: surf_def_h, surf_lsm_h, surf_usm_h273 ONLY: bc_h, surf_def_h, surf_lsm_h, surf_usm_h 268 274 269 275 IMPLICIT NONE … … 525 531 526 532 SUBROUTINE pmci_init( world_comm ) 527 528 USE control_parameters, &529 ONLY: message_string530 533 531 534 IMPLICIT NONE … … 2303 2306 2304 2307 #if defined( __parallel ) 2305 USE pmc_general, &2306 ONLY: pmc_max_array2307 2308 2308 IMPLICIT NONE 2309 2309 ! … … 3056 3056 3057 3057 #if defined( __parallel ) 3058 3059 USE control_parameters, &3060 ONLY: dt_restart, end_time, message_string, restart_time, time_restart3061 3062 3058 IMPLICIT NONE 3063 3059 … … 4692 4688 4693 4689 #if defined( __parallel ) 4694 USE chem_modules, &4695 ONLY: ibc_cs_b4696 4697 USE control_parameters, &4698 ONLY: ibc_pt_b, ibc_q_b, ibc_s_b, ibc_uv_b4699 4700 USE salsa_mod, &4701 ONLY: ibc_salsa_b4702 4703 USE surface_mod, &4704 ONLY: bc_h4705 4706 4690 IMPLICIT NONE 4707 4691
Note: See TracChangeset
for help on using the changeset viewer.