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_vhc_gauss_point_3phase_apparent_ptr(self,state,DEN,LatentHeat,dQi_dT)result(VHC)implicit none class(type_vhc_3phase_apparent),intent(in)::selftype(type_gauss_point_state),intent(in)::stateclass(abst_den),pointer,intent(in),optional::DENreal(real64),intent(in),optional::LatentHeatreal(real64),intent(in),optional::dQi_dTreal(real64)::VHCreal(real64)::phi1,phi2,phi3phi1=1.0d0-state%porosityphi2=state%water_contentphi3=1.0d0-phi1-phi2VHC=calc_vhc_3a(self%material1,phi1,self%material2,phi2,self%material3,phi3,&LatentHeat,DEN%material3,dQi_dT)end function calc_vhc_gauss_point_3phase_apparent_ptr