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.
Source Code
real(dp)function hNb3Sn(t,nu)real(dp),intent(in)::t,nureal(dp)::hif(t>0.0_dp.and.t<1.0_dp)thenh=(1.0_dp-t**nu)*(1.0_dp-t*t)else if(t<=0.0_dp)thenh=1.0_dpelse if(t>=1.0_dp)thenh=0.0_dpendifhNb3Sn=hreturn end function hNb3Sn