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_den_3phase(input,i_material)result(property)implicit none class(abst_den),allocatable::propertyinteger(int32),intent(in)::i_materialtype(type_input),intent(in)::inputif(allocated(property))deallocate(property)allocate(Type_DEN_3Phase::property)property%material_id=i_materialproperty%material1=input%basic%materials(i_material)%thermal%density(1)property%material2=input%basic%materials(i_material)%thermal%density(2)property%material3=input%basic%materials(i_material)%thermal%density(3)end function construct_den_3phase