Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Source Code
module function Calculate_kr_BC_Base(alpha1,n1,l,h)result(kr)!$omp declare simd uniform(alpha1, n1, l, h)implicit nonereal(real64),intent(in)::alpha1real(real64),intent(in)::n1real(real64),intent(in)::lreal(real64),intent(in)::hreal(real64)::krreal(real64)::Swif(h<alpha1)thenSw=(h/alpha1)**(-n1)elseSw=1.0d0end ifkr=Sw**(2.0d0/n1+l+2.0d0)end function Calculate_kr_BC_Base