- Timestamp:
- Jun 28, 2017 2:35:57 PM (7 years ago)
- Location:
- palm/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/NCL/profiles.ncl
r2030 r2297 2233 2233 end if 2234 2234 2235 if (nof .EQ. 0) then2236 z_(n,:)=z/norm_z2237 z = z_(n,:)2238 else2235 ;if (nof .EQ. 0) then 2236 ;z_(n,:)=z/norm_z 2237 ;z = z_(n,:) 2238 ;else 2239 2239 z=z/norm_z 2240 end if2240 ;end if 2241 2241 2242 2242 delta_z = z(2) - z(1) -
palm/trunk/SCRIPTS/mrun
r2295 r2297 301 301 fftw_lib="" 302 302 fftw_support=false 303 303 fname=test 304 304 fromhost="" 305 305 global_revision="" -
palm/trunk/SOURCE/time_integration_spinup.f90
r2296 r2297 25 25 ! ----------------- 26 26 ! $Id$ 27 ! bugfixes 28 ! 29 ! 2296 2017-06-28 07:53:56Z maronga 27 30 ! Initial revision 28 31 ! … … 41 44 42 45 USE control_parameters, & 43 ONLY: averaging_interval_pr, constant_diffusion, constant_flux_layer, coupling_start_time, current_timestep_number, data_output_during_spinup, disturbance_created, dopr_n, do_sum, dt_averaging_input_pr, dt_dopr, dt_dots, dt_run_control, dt_spinup, humidity, intermediate_timestep_count, intermediate_timestep_count_max, land_surface, nr_timesteps_this_run, simulated_time, simulated_time_chr, skip_time_dopr, spinup, spinup_pt_amplitude, spinup_pt_mean, spinup_time, timestep_count, timestep_scheme, time_dopr, time_dopr_av, time_dots, time_run_control, time_since_reference_point, urban_surface 46 ONLY: averaging_interval_pr, constant_diffusion, constant_flux_layer, & 47 coupling_start_time, current_timestep_number, & 48 data_output_during_spinup, disturbance_created, dopr_n, do_sum, & 49 dt_averaging_input_pr, dt_dopr, dt_dots, dt_run_control, & 50 dt_spinup, humidity, intermediate_timestep_count, & 51 intermediate_timestep_count_max, land_surface, & 52 nr_timesteps_this_run, simulated_time, simulated_time_chr, & 53 skip_time_dopr, spinup, spinup_pt_amplitude, spinup_pt_mean, & 54 spinup_time, timestep_count, timestep_scheme, time_dopr, & 55 time_dopr_av, time_dots, time_run_control, & 56 time_since_reference_point, urban_surface 44 57 45 58 USE constants, & … … 71 84 ONLY: surface_layer_fluxes 72 85 73 USE surface_mod, &74 ONLY : surf_def_h, surf_def_v, surf_lsm_h, surf_lsm_v, surf_usm_h, &86 USE surface_mod, & 87 ONLY : surf_def_h, surf_def_v, surf_lsm_h, surf_lsm_v, surf_usm_h, & 75 88 surf_usm_v 76 89 … … 249 262 !-- If required, calculate radiative fluxes and heating rates 250 263 IF ( radiation .AND. intermediate_timestep_count & 251 == intermediate_timestep_count_max .AND. simulated_time > &264 == intermediate_timestep_count_max .AND. simulated_time > & 252 265 skip_time_do_radiation ) THEN 253 266 … … 337 350 !-- Computation and output of run control parameters. 338 351 !-- This is also done whenever perturbations have been imposed 339 IF ( time_run_control >= dt_run_control .OR. &340 timestep_scheme(1:5) /= 'runge' .OR. disturbance_created ) &352 IF ( time_run_control >= dt_run_control .OR. & 353 timestep_scheme(1:5) /= 'runge' .OR. disturbance_created ) & 341 354 THEN 342 355 CALL run_control 343 356 IF ( time_run_control >= dt_run_control ) THEN 344 time_run_control = MOD( time_run_control, &357 time_run_control = MOD( time_run_control, & 345 358 MAX( dt_run_control, dt_spinup ) ) 346 359 ENDIF
Note: See TracChangeset
for help on using the changeset viewer.