Changeset 2261 for palm/trunk/SOURCE
- Timestamp:
- Jun 8, 2017 2:25:57 PM (8 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/palm.f90
r2233 r2261 25 25 ! ----------------- 26 26 ! $Id$ 27 ! output of run number for mrun to create unified cycle numbers 28 ! 29 ! 2233 2017-05-30 18:08:54Z suehring 27 30 ! 28 31 ! 2232 2017-05-30 17:47:52Z suehring … … 171 174 172 175 USE control_parameters, & 173 174 176 ONLY: cloud_physics, constant_diffusion, coupling_char, coupling_mode,& 175 177 do2d_at_begin, do3d_at_begin, humidity, initializing_actions, & 176 land_surface, io_blocks, io_group, & 177 large_scale_forcing, message_string, microphysics_seifert, & 178 nest_domain, neutral, & 179 nudging, passive_scalar, simulated_time, simulated_time_chr, & 180 urban_surface, & 178 io_blocks, io_group, land_surface, large_scale_forcing, & 179 message_string, microphysics_seifert, nest_domain, neutral, & 180 nudging, passive_scalar, runnr, simulated_time, & 181 simulated_time_chr, urban_surface, & 181 182 user_interface_current_revision, & 182 183 user_interface_required_revision, version, wall_heatflux, & … … 480 481 481 482 ! 483 !-- Write run number to file (used by mrun to create unified cycle numbers for 484 !-- output files 485 IF ( myid == 0 .AND. runnr > 0 ) THEN 486 OPEN( 90, FILE='RUN_NUMBER', FORM='FORMATTED' ) 487 WRITE( 90, '(I4)' ) runnr 488 CLOSE( 90 ) 489 ENDIF 490 491 ! 482 492 !-- Take final CPU-time for CPU-time analysis 483 493 CALL cpu_log( log_point(1), 'total', 'stop' ) -
palm/trunk/SOURCE/prognostic_equations.f90
r2233 r2261 25 25 ! ----------------- 26 26 ! $Id$ 27 ! bugfix for r2232: openmp directives removed 28 ! 29 ! 2233 2017-05-30 18:08:54Z suehring 27 30 ! 28 31 ! 2232 2017-05-30 17:47:52Z suehring … … 404 407 call_microphysics_at_all_substeps ) ) & 405 408 THEN 406 !$OMP PARALLEL private(i,j)409 !$OMP PARALLEL PRIVATE (i,j) 407 410 !$OMP DO 408 !$OMP PARALLEL PRIVATE (i, j)409 !$OMP DO410 411 DO i = nxlg, nxrg 411 412 DO j = nysg, nyng … … 414 415 ENDDO 415 416 !$OMP END PARALLEL 416 !$OMP END PARALLEL417 417 ENDIF 418 418 419 419 ! 420 420 !-- Loop over all prognostic equations 421 !$OMP PARALLEL private(i,i_omp_start,j,k,loop_start,tn)421 !$OMP PARALLEL PRIVATE (i,i_omp_start,j,k,loop_start,tn) 422 422 423 423 !$ tn = omp_get_thread_num()
Note: See TracChangeset
for help on using the changeset viewer.