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_thc_3(input,i_material)result(property)implicit none class(abst_thc),allocatable::propertytype(type_input),intent(in)::Inputinteger(int32),intent(in)::i_materialif(allocated(property))deallocate(property)allocate(type_thc_3phase::property)property%material_id=i_materialproperty%material1=input%basic%materials(i_material)%thermal%thermal_conductivity(1)property%material2=input%basic%materials(i_material)%thermal%thermal_conductivity(2)property%material3=input%basic%materials(i_material)%thermal%thermal_conductivity(3)end function construct_thc_3