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.
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 jacobian_det_triangle_first(self,xi,eta)result(J_Det)implicit none class(type_triangle_first),intent(in)::selfreal(real64),intent(in)::xi,etareal(real64)::J_Detreal(real64)::dx_xi,dx_etareal(real64)::dy_xi,dy_etainteger(int32)::idx_xi=self%jacobian(1,1,xi,eta)dx_eta=self%jacobian(1,2,xi,eta)dy_xi=self%jacobian(2,1,xi,eta)dy_eta=self%jacobian(2,2,xi,eta)J_Det=dx_xi*dy_eta-dx_eta*dy_xiend function jacobian_det_triangle_first