ply_space_integration_module Module

Spatial integration with the Gauss-Legendre numerical integration.


Uses

  • module~~ply_space_integration_module~~UsesGraph module~ply_space_integration_module ply_space_integration_module env_module env_module module~ply_space_integration_module->env_module tem_param_module tem_param_module module~ply_space_integration_module->tem_param_module

Used by

  • module~~ply_space_integration_module~~UsedByGraph module~ply_space_integration_module ply_space_integration_module module~ply_l2p_module ply_l2p_module module~ply_l2p_module->module~ply_space_integration_module

Subroutines

public subroutine ply_gaussLegPoints(x1, x2, x, w, nIntP)

Create Gauss-Legendre integration points and weights for one-dimensional integration on the interval [x1,x2].

Arguments

Type IntentOptional Attributes Name
real(kind=rk), intent(in) :: x1

lower limit of integration interval

real(kind=rk), intent(in) :: x2

upper limit of integration interval

real(kind=rk), intent(out) :: x(:)

The coordinates of the gauss points on the interval [x1,x2]. The array has the length nIntP.

real(kind=rk), intent(out) :: w(:)

The quadrature weights. The array has the length nIntP.

integer, intent(in) :: nIntP

The number of integration points.