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
integer function boundary_pressure_type(mesh,bc,face_id)result(type_id)type(mesh_t),intent(in)::meshtype(bc_set_t),intent(in)::bcinteger,intent(in)::face_idinteger::patch_idpatch_id=mesh%faces(face_id)%patchif(patch_id<=0)thentype_id=bc_unknownelsetype_id=bc%patches(patch_id)%pressure_type_idend if end function boundary_pressure_type