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.
Functions
private pure function compute_Tgc_bspline_1d_scalar(f_Xt, f_knot, f_degree, f_nc) result(f_Tgc)
Arguments
Type
Intent
Optional
Attributes
Name
real(kind=rk),
intent(in)
::
f_Xt
real(kind=rk),
intent(in),
contiguous
::
f_knot(:)
integer,
intent(in)
::
f_degree
integer,
intent(in)
::
f_nc
Return Value
real(kind=rk), allocatable, (:)
private pure function compute_Tgc_bspline_1d_vector(f_Xt, f_knot, f_degree, f_nc, f_ng) result(f_Tgc)
Arguments
Type
Intent
Optional
Attributes
Name
real(kind=rk),
intent(in),
contiguous
::
f_Xt(:)
real(kind=rk),
intent(in),
contiguous
::
f_knot(:)
integer,
intent(in)
::
f_degree
integer,
intent(in)
::
f_nc
integer,
intent(in)
::
f_ng
Return Value
real(kind=rk), allocatable, (:,:)
private pure function compute_Tgc_nurbs_1d_scalar(f_Xt, f_knot, f_degree, f_nc, f_Wc) result(f_Tgc)
Arguments
Type
Intent
Optional
Attributes
Name
real(kind=rk),
intent(in)
::
f_Xt
real(kind=rk),
intent(in),
contiguous
::
f_knot(:)
integer,
intent(in)
::
f_degree
integer,
intent(in)
::
f_nc
real(kind=rk),
intent(in),
contiguous
::
f_Wc(:)
Return Value
real(kind=rk), allocatable, (:)
private pure function compute_Tgc_nurbs_1d_vector(f_Xt, f_knot, f_degree, f_nc, f_ng, f_Wc) result(f_Tgc)