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
pure elemental module function jacobian_side_first(self,i,j,r)result(jacobian)implicit none class(type_side_first),intent(in)::selfinteger(int32),intent(in)::iinteger(int32),intent(in)::jtype(type_dp_vector_3d),intent(in)::rreal(real64)::jacobiantype(type_dp_vector_3d)::coord1type(type_dp_vector_3d)::coord2type(type_dp_vector_3d)::deltajacobian=0.0d0select case(j)case(1)coord1=self%get_coordinate(1)coord2=self%get_coordinate(2)delta=coord2-coord1! J = 0.5 * (x2 - x1)select case(i)case(1)! x-componentjacobian=0.5d0*delta%xcase(2)! y-componentjacobian=0.5d0*delta%ycase(3)! z-componentjacobian=0.5d0*delta%zend select end select end function jacobian_side_first