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 construct_type_vhc_3phase_apparent(input,material_id)result(property)implicit none class(abst_vhc),allocatable::propertytype(type_input),intent(in)::inputinteger(int32),intent(in)::material_idif(allocated(property))deallocate(property)allocate(type_vhc_3phase_apparent::property)property%material_id=material_idproperty%material1=input%basic%materials(material_id)%thermal%density(1)*&input%basic%materials(material_id)%thermal%specific_heat(1)property%material2=input%basic%materials(material_id)%thermal%density(2)*&input%basic%materials(material_id)%thermal%specific_heat(2)property%material3=input%basic%materials(material_id)%thermal%density(3)*&input%basic%materials(material_id)%thermal%specific_heat(3)end function construct_type_vhc_3phase_apparent