Changeset 3724
- Timestamp:
- Feb 6, 2019 4:28:23 PM (6 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/bulk_cloud_model_mod.f90
r3700 r3724 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Correct double-used log_point_s unit 28 ! 29 ! 3700 2019-01-26 17:03:42Z knoop 27 30 ! nopointer option removed 28 31 ! … … 2065 2068 REAL(wp) :: flag !< flag to indicate first grid level above 2066 2069 2067 CALL cpu_log( log_point_s(5 4), 'adjust_cloud', 'start' )2070 CALL cpu_log( log_point_s(50), 'adjust_cloud', 'start' ) 2068 2071 2069 2072 DO i = nxlg, nxrg … … 2100 2103 ENDDO 2101 2104 2102 CALL cpu_log( log_point_s(5 4), 'adjust_cloud', 'stop' )2105 CALL cpu_log( log_point_s(50), 'adjust_cloud', 'stop' ) 2103 2106 2104 2107 END SUBROUTINE adjust_cloud … … 2324 2327 REAL(wp) :: xc !< 2325 2328 2326 CALL cpu_log( log_point_s( 55), 'autoconversion', 'start' )2329 CALL cpu_log( log_point_s(47), 'autoconversion', 'start' ) 2327 2330 2328 2331 DO i = nxlg, nxrg … … 2420 2423 ENDDO 2421 2424 2422 CALL cpu_log( log_point_s( 55), 'autoconversion', 'stop' )2425 CALL cpu_log( log_point_s(47), 'autoconversion', 'stop' ) 2423 2426 2424 2427 END SUBROUTINE autoconversion -
palm/trunk/SOURCE/time_integration.f90
r3719 r3724 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Correct double-used log_point_s unit 28 ! 29 ! 3719 2019-02-06 13:10:18Z kanani 27 30 ! - removed wind_turbine cpu measurement, since same time is measured inside 28 31 ! wtm_forces subroutine as special measures … … 1351 1354 IF ( ( urban_surface .OR. land_surface ) .AND. & 1352 1355 radiation_interactions ) THEN 1353 CALL cpu_log( log_point_s( 75), 'radiation_interaction', 'start' )1356 CALL cpu_log( log_point_s(46), 'radiation_interaction', 'start' ) 1354 1357 CALL radiation_interaction 1355 CALL cpu_log( log_point_s( 75), 'radiation_interaction', 'stop' )1358 CALL cpu_log( log_point_s(46), 'radiation_interaction', 'stop' ) 1356 1359 ENDIF 1357 1360 -
palm/trunk/SOURCE/turbulence_closure_mod.f90
r3719 r3724 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Correct double-used log_point_s units 28 ! 29 ! 3719 2019-02-06 13:10:18Z kanani 27 30 ! Changed log_point to log_point_s, otherwise this overlaps with 28 31 ! 'all progn.equations' cpu measurement. … … 1949 1952 IF ( .NOT. constant_diffusion ) THEN 1950 1953 1951 CALL cpu_log( log_point_s( 16), 'tke-equation', 'start' )1954 CALL cpu_log( log_point_s(67), 'tke-equation', 'start' ) 1952 1955 1953 1956 sbt = tsc(2) … … 2057 2060 ENDIF 2058 2061 2059 CALL cpu_log( log_point_s( 16), 'tke-equation', 'stop' )2062 CALL cpu_log( log_point_s(67), 'tke-equation', 'stop' ) 2060 2063 2061 2064 ENDIF ! TKE equation … … 2065 2068 IF ( rans_tke_e ) THEN 2066 2069 2067 CALL cpu_log( log_point_s( 33), 'diss-equation', 'start' )2070 CALL cpu_log( log_point_s(64), 'diss-equation', 'start' ) 2068 2071 2069 2072 sbt = tsc(2) … … 2157 2160 ENDIF 2158 2161 2159 CALL cpu_log( log_point_s( 33), 'diss-equation', 'stop' )2162 CALL cpu_log( log_point_s(64), 'diss-equation', 'stop' ) 2160 2163 2161 2164 ENDIF
Note: See TracChangeset
for help on using the changeset viewer.