From 384e64e5d1c3d5a217eeb7055116abed029f37d2 Mon Sep 17 00:00:00 2001 From: Nuwan Yapa Date: Fri, 21 Jun 2024 14:25:31 -0400 Subject: [PATCH] Tidy --- dirac.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dirac.jl b/dirac.jl index 5837d5b..b3f41ec 100644 --- a/dirac.jl +++ b/dirac.jl @@ -26,7 +26,7 @@ end "Solve the Dirac equation and return g(r=r_max) for given scalar and vector potentials where r_max is the outer boundary in fm, the other parameters are the same from dirac!(...)." -function boundaryValue(κ, p, E, Φ0, W0, B0, A0, r_max,) +function boundaryValue(κ, p, E, Φ0, W0, B0, A0, r_max) prob = ODEProblem(dirac!, [0, 1], (0, r_max)) sol = solve(prob, RK4(), p=(κ, p, E, Φ0, W0, B0, A0)) return sol(r_max)[1]