From beebba7a14d1333bade3a3d540cc3c90ed1f1faa Mon Sep 17 00:00:00 2001 From: Andrew Kiss <31054815+aekiss@users.noreply.github.com> Date: Fri, 31 Mar 2023 16:24:28 +1100 Subject: [PATCH] fix calving flux halo update bug - closes https://github.com/COSIMA/cice5/issues/68 --- drivers/auscom/cpl_interface.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/auscom/cpl_interface.F90 b/drivers/auscom/cpl_interface.F90 index 8d42679a..79f0d372 100644 --- a/drivers/auscom/cpl_interface.F90 +++ b/drivers/auscom/cpl_interface.F90 @@ -707,7 +707,7 @@ subroutine update_halos_from_atm(time) call ice_HaloUpdate(qair0, halo_info, field_loc_center, field_type_scalar) call ice_HaloUpdate(uwnd0, halo_info, field_loc_center, field_type_vector) call ice_HaloUpdate(vwnd0, halo_info, field_loc_center, field_type_vector) - call ice_HaloUpdate(calv0, halo_info, field_loc_center, field_type_vector) + call ice_HaloUpdate(calv0, halo_info, field_loc_center, field_type_scalar) call ice_timer_stop(timer_from_atm_halos) end subroutine update_halos_from_atm