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_first(self)result(length)implicit none class(type_side_first),intent(in)::selfreal(real64)::lengthtype(type_dp_vector_3d)::coord1type(type_dp_vector_3d)::coord2type(type_dp_vector_3d)::delta! オブジェクト自身が持つ get_coordinate メソッドを使用して節点座標を取得coord1=self%get_coordinate(1)coord2=self%get_coordinate(2)! 2点間のベクトルを計算delta=coord2-coord1! ユークリッド距離(ベクトルの大きさ)を計算length=sqrt(delta%x**2+delta%y**2+delta%z**2)end function get_length_side_first