You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is caused by the inverse laplace transform needing to use complex variables. The error is thrown because we need to evalue sqrt(Complex{ForwardDiff.Dual{Float64}... unsure the best fix for this. We are ok when calculating the flux because the z variable is never square rooted
For references the function throwing error is:
@inlinefunctionα_coeff!(α, μa, D, sn)
@inboundsfor ind in1:length(μa)
α[ind] =sqrt(μa[ind] / D[ind] + sn^2)
endreturn α
end
The text was updated successfully, but these errors were encountered:
This is caused by the inverse laplace transform needing to use complex variables. The error is thrown because we need to evalue
sqrt(Complex{ForwardDiff.Dual{Float64}
... unsure the best fix for this. We are ok when calculating the flux because thez
variable is never square rootedFor references the function throwing error is:
The text was updated successfully, but these errors were encountered: