Skip to content
This repository was archived by the owner on Oct 23, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 2 additions & 25 deletions src/core_atmosphere/dynamics/mpas_atm_time_integration.F
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ subroutine atm_srk3(domain, dt, itimestep)
call mpas_timer_stop('atm_compute_moist_coefficients')

#ifdef DO_PHYSICS
call mpas_timer_start('physics_addtend')
call mpas_timer_start('physics_get_tend')
block => domain % blocklist
do while (associated(block))
call mpas_pool_get_subpool(block % structs, 'mesh', mesh)
Expand All @@ -419,7 +419,7 @@ subroutine atm_srk3(domain, dt, itimestep)
tend_rho_physics )
block => block % next
end do
call mpas_timer_stop('physics_addtend')
call mpas_timer_stop('physics_get_tend')
#endif

!
Expand Down Expand Up @@ -595,29 +595,6 @@ subroutine atm_srk3(domain, dt, itimestep)
end do
call mpas_timer_stop('atm_compute_dyn_tend')

#ifdef DO_PHYSICS
! call mpas_timer_start('physics_addtend')
! block => domain % blocklist
! do while (associated(block))
! call mpas_pool_get_subpool(block % structs, 'mesh', mesh)
! call mpas_pool_get_subpool(block % structs, 'state', state)
! call mpas_pool_get_subpool(block % structs, 'diag', diag)
! call mpas_pool_get_subpool(block % structs, 'tend', tend)
! call mpas_pool_get_subpool(block % structs, 'tend_physics', tend_physics)
! call physics_addtend( block, &
! mesh, &
! state, &
! diag, &
! tend, &
! tend_physics, &
! block % configs, &
! rk_step, &
! dynamics_substep )
! block => block % next
! end do
! call mpas_timer_stop('physics_addtend')
#endif


!***********************************
! need tendencies at all edges of owned cells -
Expand Down
Loading