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.
public subroutine apply_abc_to_boundary_s(id, a, b, c, ib, msh, x, bx)
WARNING!
- Use intent(inout) for BX(:)
- Do loop on the faces subset corresponding to IB bc.
- Only this section of BX(:) is going to be modified.
- BX(:) indexing starts from 1: when BX(:) is referenced an offset
equal to the # of boundary faces with flag > 0 and < IB must be
added to the I counter.
Arguments
Type
Intent
Optional
Attributes
Name
integer,
intent(in)
::
id
real(kind=psb_dpk_),
intent(in)
::
a(:)
real(kind=psb_dpk_),
intent(in)
::
b(:)
real(kind=psb_dpk_),
intent(in)
::
c(:)
integer,
intent(in)
::
ib
type(mesh),
intent(in)
::
msh
real(kind=psb_dpk_),
intent(in)
::
x(:)
real(kind=psb_dpk_),
intent(inout)
::
bx(:)
public subroutine apply_abc_to_boundary_v(id, a, b, c, ib, msh, x, bx)