From 8feada8c1f185af3079922a2c4e7c0317e34a6dc Mon Sep 17 00:00:00 2001 From: alperaltuntas Date: Thu, 17 Oct 2024 10:58:48 -0600 Subject: [PATCH] get rid of new ale diags --- src/ALE/MOM_ALE.F90 | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/src/ALE/MOM_ALE.F90 b/src/ALE/MOM_ALE.F90 index d1aeffddea..9282c518e3 100644 --- a/src/ALE/MOM_ALE.F90 +++ b/src/ALE/MOM_ALE.F90 @@ -376,16 +376,18 @@ subroutine ALE_register_diags(Time, G, GV, US, diag, CS) 'vert_remap_h_tendency', diag%axestl, Time, & 'Layer thicknesses tendency due to ALE regridding and remapping', & trim(thickness_units)//" s-1", conversion=GV%H_to_MKS*US%s_to_T, v_extensive=.true.) - CS%id_remap_delta_integ_u2 = register_diag_field('ocean_model', 'ale_u2', diag%axesCu1, Time, & - 'Rate of change in half rho0 times depth integral of squared zonal'//& - ' velocity by remapping. If REMAP_VEL_CONSERVE_KE is .true. then '//& - ' this measures the change before the KE-conserving correction is applied.', & - 'W m-2', conversion=GV%H_to_kg_m2 * US%L_T_to_m_s**2 * US%s_to_T) - CS%id_remap_delta_integ_v2 = register_diag_field('ocean_model', 'ale_v2', diag%axesCv1, Time, & - 'Rate of change in half rho0 times depth integral of squared meridional'//& - ' velocity by remapping. If REMAP_VEL_CONSERVE_KE is .true. then '//& - ' this measures the change before the KE-conserving correction is applied.', & - 'W m-2', conversion=GV%H_to_kg_m2 * US%L_T_to_m_s**2 * US%s_to_T) + !CS%id_remap_delta_integ_u2 = register_diag_field('ocean_model', 'ale_u2', diag%axesCu1, Time, & + ! 'Rate of change in half rho0 times depth integral of squared zonal'//& + ! ' velocity by remapping. If REMAP_VEL_CONSERVE_KE is .true. then '//& + ! ' this measures the change before the KE-conserving correction is applied.', & + ! 'W m-2', conversion=GV%H_to_kg_m2 * US%L_T_to_m_s**2 * US%s_to_T) + !CS%id_remap_delta_integ_v2 = register_diag_field('ocean_model', 'ale_v2', diag%axesCv1, Time, & + ! 'Rate of change in half rho0 times depth integral of squared meridional'//& + ! ' velocity by remapping. If REMAP_VEL_CONSERVE_KE is .true. then '//& + ! ' this measures the change before the KE-conserving correction is applied.', & + ! 'W m-2', conversion=GV%H_to_kg_m2 * US%L_T_to_m_s**2 * US%s_to_T) + CS%id_remap_delta_integ_u2 = -1 !< Change in depth-integrated rho0*u**2/2 + CS%id_remap_delta_integ_v2 = -1 !< Change in depth-integrated rho0*v**2/2 end subroutine ALE_register_diags