From 0d9e0be5e3de06a2f02c0c02ae3a83e1427db3d0 Mon Sep 17 00:00:00 2001 From: Michael Waxmonsky Date: Mon, 27 Jan 2025 08:43:19 -0700 Subject: [PATCH] Updating unit tests missed in previous commit. --- test/unit-test/tests/phys_utils/test_atmos_pbl_utils.pf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/unit-test/tests/phys_utils/test_atmos_pbl_utils.pf b/test/unit-test/tests/phys_utils/test_atmos_pbl_utils.pf index 8d15a733..3e408bab 100644 --- a/test/unit-test/tests/phys_utils/test_atmos_pbl_utils.pf +++ b/test/unit-test/tests/phys_utils/test_atmos_pbl_utils.pf @@ -1,12 +1,12 @@ @test subroutine test_austausch_free_is_zero_when_richardson_equals_zero() use funit - use atmos_phys_pbl_utils, only : austausch_atm_free + use atmos_phys_pbl_utils, only : calc_free_eddy_flux_coefficient use ccpp_kinds, only: kind_phys real(kind_phys) :: kvf - kvf = austausch_atm_free(30.0_kind_phys, 0.0_kind_phys, 0.01_kind_phys) + kvf = calc_free_eddy_flux_coefficient(30.0_kind_phys, 0.0_kind_phys, 0.01_kind_phys) @assertEqual(0.0_kind_phys, kvf) end subroutine test_austausch_free_is_zero_when_richardson_equals_zero @@ -14,12 +14,12 @@ end subroutine test_austausch_free_is_zero_when_richardson_equals_zero @test subroutine test_austausch_free_is_zero_when_richardson_stable_near_zero() use funit - use atmos_phys_pbl_utils, only : austausch_atm_free + use atmos_phys_pbl_utils, only : calc_free_eddy_flux_coefficient use ccpp_kinds, only: kind_phys real(kind_phys) :: kvf - kvf = austausch_atm_free(30.0_kind_phys, nearest(0.0_kind_phys, 1.0_kind_phys), 0.01_kind_phys) + kvf = calc_free_eddy_flux_coefficient(30.0_kind_phys, nearest(0.0_kind_phys, 1.0_kind_phys), 0.01_kind_phys) @assertEqual(0.0_kind_phys, kvf) end subroutine test_austausch_free_is_zero_when_richardson_stable_near_zero