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 pure function get_length_side_second(self)result(length)implicit none class(type_side_second),intent(in)::selfreal(real64)::lengthreal(real64),parameter::xi1=-1.0d0/sqrt(3.0d0)real(real64),parameter::xi2=1.0d0/sqrt(3.0d0)! -----------------------------------------------type(type_dp_vector_3d)::r1,r2real(real64)::det1,det2r1=type_dp_vector_3d(-1.0d0/sqrt(3.0d0),0.0d0,0.0d0)r2=type_dp_vector_3d(1.0d0/sqrt(3.0d0),0.0d0,0.0d0)! 各ガウス積分点でのヤコビ行列式 det(J) = ds/dξ を計算det1=self%jacobian_det(r1)det2=self%jacobian_det(r2)! ガウス求積法で長さを計算: Length ≈ w1*det(J(ξ1)) + w2*det(J(ξ2))length=det1+det2end function get_length_side_second