Skip to content

Commit

Permalink
print
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed Dec 23, 2024
1 parent 845f47f commit ca581c6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/Solution/ParticleTracker/TernarySolveTrack.f90
Original file line number Diff line number Diff line change
Expand Up @@ -297,12 +297,21 @@ subroutine solve_coefs(alpi, beti)

!> @brief Step (evaluate) analytically depending on case
subroutine step_analytical(t, alp, bet)
use TdisModule, only: kper
! -- dummy
real(DP), intent(in) :: t
real(DP) :: alp
real(DP) :: bet

if (icase .eq. 1) then
if (kper > 86) then
print *, "----"
print *, ca1
print *, ca2
print *, ca3
print *, waa
print *, t
end if
alp = ca1 + ca2 * dexp(waa * t) + ca3 * dexp(wbb * t)
bet = cb1 + cb2 * dexp(wbb * t)
else if (icase .eq. -1) then
Expand Down

0 comments on commit ca581c6

Please sign in to comment.