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 calc_sph_gauss_point_3phase(self,state)result(SPH)implicit none class(type_sph_3phase),intent(in)::selftype(type_gauss_point_state),intent(in)::statereal(real64)::SPHreal(real64)::phi1,phi2,phi3phi1=1.0d0-state%porosityphi2=state%water_contentphi3=1.0d0-phi1-phi2SPH=calc_sph_3(self%material1,phi1,self%material2,phi2,self%material3,phi3)end function calc_sph_gauss_point_3phase