From 888708cbf1398b6687263cfc3774762de76b1f64 Mon Sep 17 00:00:00 2001 From: Spencer Bryngelson Date: Wed, 6 Aug 2025 10:04:57 -0400 Subject: [PATCH 1/2] Update codecov.yml --- .github/codecov.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/codecov.yml b/.github/codecov.yml index 679a2f56f9..f5a9dcf97b 100644 --- a/.github/codecov.yml +++ b/.github/codecov.yml @@ -1,4 +1,6 @@ coverage: + strict_yaml_branch: default + max_report_age: off status: project: default: From 78da8785cda99d48219b3fd41110ee373c770d09 Mon Sep 17 00:00:00 2001 From: Spencer Bryngelson Date: Wed, 6 Aug 2025 10:09:40 -0400 Subject: [PATCH 2/2] Update m_constants.fpp --- src/common/m_constants.fpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/common/m_constants.fpp b/src/common/m_constants.fpp index 7973a00d24..1d2e53d206 100644 --- a/src/common/m_constants.fpp +++ b/src/common/m_constants.fpp @@ -33,7 +33,7 @@ module m_constants real(wp), parameter :: acoustic_spatial_support_width = 2.5_wp !< Spatial support width of acoustic source, used in s_source_spatial real(wp), parameter :: dflt_vcfl_dt = 100._wp !< value of vcfl_dt when viscosity is off for computing adaptive timestep size real(wp), parameter :: broadband_spectral_level_constant = 20._wp !< The constant to scale the spectral level at the lower frequency bound - real(wp), parameter :: broadband_spectral_level_growth_rate = 10._wp !< The spectral level constant to correct the magnitude at each frqeuency to ensure the source is overall broadband + real(wp), parameter :: broadband_spectral_level_growth_rate = 10._wp !< The spectral level constant to correct the magnitude at each frequency to ensure the source is overall broadband ! Reconstruction Types integer, parameter :: WENO_TYPE = 1 !< Using WENO for reconstruction type @@ -59,14 +59,14 @@ module m_constants real(wp), parameter :: initial_distance_buffer = 1.e12_wp !< Initialized levelset distance for the shortest path pair algorithm ! Lagrange bubbles constants - integer, parameter :: mapCells = 3 !< Number of cells around the bubble where the smoothening function will have effect - real(wp), parameter :: R_uni = 8314._wp ! Universal gas constant - J/kmol/K + integer, parameter :: mapCells = 3 !< Number of cells around the bubble where the smoothening function will have effect + real(wp), parameter :: R_uni = 8314._wp !< Universal gas constant - J/kmol/K ! Strang Splitting constants real(wp), parameter :: dflt_adap_dt_tol = 1.e-4_wp !< Default tolerance for adaptive step size integer, parameter :: dflt_adap_dt_max_iters = 100 !< Default max iteration for adaptive step size - ! Constants of the algorithm described by Heirer, E. Hairer S.P.Nørsett G. Wanner, Solving Ordinary Differential Equations I, Chapter II.4 + ! Constants of the algorithm described by Heirer, E. Hairer, S. P.Nørsett, G. Wanner, Solving Ordinary Differential Equations I, Chapter II.4 ! to choose the initial time step size for the adaptive time stepping routine real(wp), parameter :: threshold_first_guess = 1.e-5_wp real(wp), parameter :: threshold_second_guess = 1.e-15_wp