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 psi_triangle_second(self,i,xi,eta)result(psi)implicit none class(type_triangle_second),intent(in)::selfinteger(int32),intent(in)::ireal(real64),intent(in)::xi,etareal(real64)::psiselect case(i)case(1)psi=xi*(2.0d0*xi-1.0d0)case(2)psi=eta*(2.0d0*eta-1.0d0)case(3)psi=(1.0d0-xi-eta)*(1.0d0-2.0d0*xi-2.0d0*eta)case(4)psi=4.0d0*xi*etacase(5)psi=4.0d0*(1.0d0-xi-eta)*etacase(6)psi=4.0d0*xi*(1.0d0-xi-eta)case defaultpsi=0.0d0end select end function psi_triangle_second