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 elemental function calc_vhc_gauss_point_3phase_apparent(self,state)result(VHC)implicit none class(type_vhc_3phase_apparent),intent(in)::selftype(type_state),intent(in)::statereal(real64)::VHCreal(real64)::phi1,phi2,phi3phi1=1.0d0-state%porosityphi2=state%water_contentif(phi2>state%porosity)phi2=state%porosityif(phi2<0.0d0)phi2=0.0d0phi3=1.0d0-phi1-phi2VHC=calc_vhc_3a(self%material1,phi1,self%material2,phi2,self%material3,phi3,&state%latent_heat,state%density_water,state%dQw_dT)end function calc_vhc_gauss_point_3phase_apparent