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.
subroutine Gradient_Vector3D(this,df)implicit none class(Vector3D),intent(in)::thistype(c_ptr),intent(inout)::df! The vector gradient is the tensor df(i,j,k,e,v,idir,dir) = d(f_idir)/dxi^dir.! Treating the three vector components as 3*nvar scalar fields, this is the! scalar gradient of each, with the derivative direction written to separate! slots (matching Gradient_Vector3D_t).call ScalarGradient_3D_gpu(this%interp%dMatrix_gpu,this%interior_gpu,df,&this%interp%N,3*this%nvar,this%nelem)endsubroutine Gradient_Vector3D