Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Vaca committed Dec 22, 2024
1 parent 12de935 commit 432bcff
Show file tree
Hide file tree
Showing 10 changed files with 120 additions and 120 deletions.
10 changes: 5 additions & 5 deletions src/common/m_helper.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -231,13 +231,13 @@ contains
real(wp), intent(in) :: omega, peclet
real(wp), intent(out) :: Re_trans, Im_trans

complex :: trans, c1, c2, c3
complex :: imag = (0._wp, 1._wp)
real(wp) :: f_transcoeff
complex(wp) :: imag, trans, c1, c2, c3

imag = (0._wp, 1._wp)

Check warning on line 236 in src/common/m_helper.fpp

View check run for this annotation

Codecov / codecov/patch

src/common/m_helper.fpp#L236

Added line #L236 was not covered by tests

c1 = imag*omega*peclet
c2 = csqrt(c1)
c3 = (cexp(c2) - cexp(-c2))/(cexp(c2) + cexp(-c2)) ! TANH(c2)
c2 = sqrt(c1)
c3 = (exp(c2) - exp(-c2))/(exp(c2) + exp(-c2)) ! TANH(c2)
trans = ((c2/c3 - 1._wp)**(-1) - 3._wp/c1)**(-1) ! transfer function

Re_trans = trans
Expand Down
32 changes: 16 additions & 16 deletions tests/18A29336/golden-metadata.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 16 additions & 16 deletions tests/1A1D02B7/golden-metadata.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions tests/1A1D02B7/golden.txt

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions tests/5B195322/golden-metadata.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions tests/5B195322/golden.txt

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions tests/81579DD9/golden-metadata.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 432bcff

Please sign in to comment.