Skip to content

Commit 8173368

Browse files
authored
Improve codecov (#977)
1 parent 9fbc566 commit 8173368

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/codecov.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
coverage:
2+
strict_yaml_branch: default
3+
max_report_age: off
24
status:
35
project:
46
default:

src/common/m_constants.fpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module m_constants
3333
real(wp), parameter :: acoustic_spatial_support_width = 2.5_wp !< Spatial support width of acoustic source, used in s_source_spatial
3434
real(wp), parameter :: dflt_vcfl_dt = 100._wp !< value of vcfl_dt when viscosity is off for computing adaptive timestep size
3535
real(wp), parameter :: broadband_spectral_level_constant = 20._wp !< The constant to scale the spectral level at the lower frequency bound
36-
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
36+
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
3737

3838
! Reconstruction Types
3939
integer, parameter :: WENO_TYPE = 1 !< Using WENO for reconstruction type
@@ -59,14 +59,14 @@ module m_constants
5959
real(wp), parameter :: initial_distance_buffer = 1.e12_wp !< Initialized levelset distance for the shortest path pair algorithm
6060

6161
! Lagrange bubbles constants
62-
integer, parameter :: mapCells = 3 !< Number of cells around the bubble where the smoothening function will have effect
63-
real(wp), parameter :: R_uni = 8314._wp ! Universal gas constant - J/kmol/K
62+
integer, parameter :: mapCells = 3 !< Number of cells around the bubble where the smoothening function will have effect
63+
real(wp), parameter :: R_uni = 8314._wp !< Universal gas constant - J/kmol/K
6464

6565
! Strang Splitting constants
6666
real(wp), parameter :: dflt_adap_dt_tol = 1.e-4_wp !< Default tolerance for adaptive step size
6767
integer, parameter :: dflt_adap_dt_max_iters = 100 !< Default max iteration for adaptive step size
6868

69-
! Constants of the algorithm described by Heirer, E. Hairer S.P.Nørsett G. Wanner, Solving Ordinary Differential Equations I, Chapter II.4
69+
! Constants of the algorithm described by Heirer, E. Hairer, S. P.Nørsett, G. Wanner, Solving Ordinary Differential Equations I, Chapter II.4
7070
! to choose the initial time step size for the adaptive time stepping routine
7171
real(wp), parameter :: threshold_first_guess = 1.e-5_wp
7272
real(wp), parameter :: threshold_second_guess = 1.e-15_wp

0 commit comments

Comments
 (0)