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