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_Impedance_Viscosity(Ks,Omega,useViscosity,nsize)result(structure_HCF)implicit nonereal(real64),intent(in)::Ksreal(real64),intent(in)::Omegainteger(int32),intent(in)::useViscosityinteger(int32),intent(in)::nsizeclass(Abstract_HCF),allocatable::structure_HCFif(allocated(structure_HCF))deallocate(structure_HCF)allocate(Type_HCF_Impedance_Viscosity::structure_HCF)select type(this=>structure_HCF)type is(Type_HCF_Impedance_Viscosity)this%Ks=Ksthis%Omega=Omegathis%nsize=nsizecall this%Set_Calculate_Viscosity(useViscosity,this%Calculate_Viscosity)this%Kzero=this%Ks*this%Calculate_Viscosity(15.d0)call Allocate_Array(this%Kflh,nsize)this%Kflh(:)=0.0d0end select end function Construct_Type_HCF_Impedance_Viscosity