Ignore:
Timestamp:
Feb 6, 2019 1:10:18 PM (6 years ago)
Author:
kanani
Message:

Correct and clean-up cpu_logs, some overlapping counts (chemistry_model_mod, disturb_heatflux, large_scale_forcing_nudging_mod, ocean_mod, palm, prognostic_equations, synthetic_turbulence_generator_mod, time_integration, time_integration_spinup, turbulence_closure_mod)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/time_integration_spinup.f90

    r3655 r3719  
    2525! -----------------
    2626! $Id$
     27! Removed log_point(19,54,74,50,75), since they count together with same log
     28! points in time_integration, impossible to separate the contributions.
     29! Instead, the entire spinup gets an individual log_point in palm.f90
     30!
     31! 3655 2019-01-07 16:51:22Z knoop
    2732! Removed call to calculation of near air (10 cm) potential temperature (now in
    2833! surface layer fluxes)
     
    360365!--          (constant flux) layer are computed
    361366             IF ( constant_flux_layer )  THEN
    362                 CALL cpu_log( log_point(19), 'surface_layer_fluxes', 'start' )
    363367                CALL surface_layer_fluxes
    364                 CALL cpu_log( log_point(19), 'surface_layer_fluxes', 'stop' )
    365368             ENDIF
    366369
     
    371374             IF ( land_surface )  THEN
    372375
    373                 CALL cpu_log( log_point(54), 'land_surface', 'start' )
    374376!
    375377!--             Call for horizontal upward-facing surfaces
     
    392394                CALL lsm_energy_balance( .FALSE., 3 )
    393395                CALL lsm_soil_model( .FALSE., 3, calc_soil_moisture_during_spinup )
    394                
    395                 CALL cpu_log( log_point(54), 'land_surface', 'stop' )
     396
    396397             ENDIF
    397398
     
    400401!--          the material heat model
    401402             IF (urban_surface) THEN
    402                 CALL cpu_log( log_point(74), 'urban_surface', 'start' )
     403
    403404                CALL usm_surface_energy_balance( .TRUE. )
    404405                IF ( usm_material_model )  THEN
     
    406407                   CALL usm_material_heat_model( .TRUE. )
    407408                ENDIF
    408                
    409                 CALL cpu_log( log_point(74), 'urban_surface', 'stop' )
     409
    410410             ENDIF
    411411
     
    422422             THEN
    423423
    424                 CALL cpu_log( log_point(50), 'radiation', 'start' )
    425 
    426424                IF ( .NOT. force_radiation_call )  THEN
    427425                   time_radiation = time_radiation - dt_3d
     
    430428                CALL radiation_control
    431429
    432                 CALL cpu_log( log_point(50), 'radiation', 'stop' )
    433 
    434430                IF ( radiation_interactions )  THEN
    435                    CALL cpu_log( log_point(75), 'radiation_interaction', 'start' )
    436431                   CALL radiation_interaction
    437                    CALL cpu_log( log_point(75), 'radiation_interaction', 'stop' )
    438432                ENDIF
    439433             ENDIF
Note: See TracChangeset for help on using the changeset viewer.