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.
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.
Source Code
subroutine load_nusselts(cfgs)class(input_t),intent(in)::cfgs(:)character(20)::names(2)=['pipe','DBG']integer::itype(c_funptr)::init_nusselt_ext_ptrdo i=1,size(lib_handles)init_nusselt_ext_ptr=GetProcAddress(lib_handles(i),'init_nusselt_ext'//c_null_char)if(c_associated(init_nusselt_ext_ptr))then call c_f_procpointer(init_nusselt_ext_ptr,init_nusselt_ext)exit endif enddo allocate(nusselts(size(cfgs)+size(names)))do i=1,size(cfgs)call set_nusselt_correlation(nusselts(i),cfgs(i),'')enddo do i=1,size(names)call set_nusselt_correlation(nusselts(size(cfgs)+i),empty_cfg(),names(i))enddo end subroutine load_nusselts