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 Construct_Type_HCF_Base_DVGCH(Ks,alpha1,n1,w1,n2,l,nsize)result(structure_HCF)implicit nonereal(real64),intent(in)::Ksreal(real64),intent(in)::alpha1real(real64),intent(in)::n1real(real64),intent(in)::w1real(real64),intent(in)::n2real(real64),intent(in)::linteger(int32),intent(in)::nsizeclass(Abstract_HCF),allocatable::structure_HCFif(allocated(structure_HCF))deallocate(structure_HCF)allocate(Type_HCF_Base_DVGCH::structure_HCF)select type(this=>structure_HCF)type is(Type_HCF_Base_DVGCH)this%Ks=Ksthis%alpha1=alpha1this%n1=n1this%m1=1.0d0-1.0d0/n1this%w1=w1this%n2=n2this%m2=1.0d0-1.0d0/n2this%w2=1.0d0-w1this%l=lthis%nsize=nsizecall Allocate_Array(this%Kflh,nsize)this%Kflh(:)=0.0d0end select end function Construct_Type_HCF_Base_DVGCH