4.1.2.1.3 pde.backends.numba.operators.cylindrical_sym module

This module implements differential operators on cylindrical grids.

make_laplace

Make a discretized laplace operator for a cylindrical grid.

make_gradient

Make a discretized gradient operator for a cylindrical grid.

make_divergence

Make a discretized divergence operator for a cylindrical grid.

make_vector_gradient

Make a discretized vector gradient operator for a cylindrical grid.

make_vector_laplace

Make a discretized vector laplace operator for a cylindrical grid.

make_tensor_divergence

Make a discretized tensor divergence operator for a cylindrical grid.

make_divergence(grid, *, backend=None)[source]

Make a discretized divergence operator for a cylindrical grid.

The cylindrical grid assumes polar symmetry, so that fields only depend on the radial coordinate r and the axial coordinate z. Here, the first axis is along the radius, while the second axis is along the axis of the cylinder. The radial discretization is defined as \(r_i = (i + \frac12) \Delta r\) for \(i=0, \ldots, N_r-1\).

Parameters:
  • grid (CylindricalSymGrid) – The grid for which the operator is created

  • backend (NumbaBackend) – References to the backend to read configuration details

Returns:

A function that can be applied to an array of values

Return type:

OperatorImplType

make_gradient(grid, *, backend=None)[source]

Make a discretized gradient operator for a cylindrical grid.

The cylindrical grid assumes polar symmetry, so that fields only depend on the radial coordinate r and the axial coordinate z. Here, the first axis is along the radius, while the second axis is along the axis of the cylinder. The radial discretization is defined as \(r_i = (i + \frac12) \Delta r\) for \(i=0, \ldots, N_r-1\).

Parameters:
  • grid (CylindricalSymGrid) – The grid for which the operator is created

  • backend (NumbaBackend) – References to the backend to read configuration details

Returns:

A function that can be applied to an array of values

Return type:

OperatorImplType

make_gradient_squared(grid, *, backend=None, central=True)[source]

Make a discretized gradient squared operator for a cylindrical grid.

The cylindrical grid assumes polar symmetry, so that fields only depend on the radial coordinate r and the axial coordinate z. Here, the first axis is along the radius, while the second axis is along the axis of the cylinder. The radial discretization is defined as \(r_i = (i + \frac12) \Delta r\) for \(i=0, \ldots, N_r-1\).

Parameters:
  • grid (CylindricalSymGrid) – The grid for which the operator is created

  • backend (NumbaBackend) – References to the backend to read configuration details

  • central (bool) – Whether a central difference approximation is used for the gradient operator. If this is False, the squared gradient is calculated as the mean of the squared values of the forward and backward derivatives.

Returns:

A function that can be applied to an array of values

Return type:

OperatorImplType

make_laplace(grid, *, backend=None)[source]

Make a discretized laplace operator for a cylindrical grid.

The cylindrical grid assumes polar symmetry, so that fields only depend on the radial coordinate r and the axial coordinate z. Here, the first axis is along the radius, while the second axis is along the axis of the cylinder. The radial discretization is defined as \(r_i = (i + \frac12) \Delta r\) for \(i=0, \ldots, N_r-1\).

Parameters:
  • grid (CylindricalSymGrid) – The grid for which the operator is created

  • backend (NumbaBackend) – References to the backend to read configuration details

Returns:

A function that can be applied to an array of values

Return type:

OperatorImplType

make_tensor_divergence(grid, *, backend=None)[source]

Make a discretized tensor divergence operator for a cylindrical grid.

The cylindrical grid assumes polar symmetry, so that fields only depend on the radial coordinate r and the axial coordinate z. Here, the first axis is along the radius, while the second axis is along the axis of the cylinder. The radial discretization is defined as \(r_i = (i + \frac12) \Delta r\) for \(i=0, \ldots, N_r-1\).

Parameters:
  • grid (CylindricalSymGrid) – The grid for which the operator is created

  • backend (NumbaBackend) – References to the backend to read configuration details

Returns:

A function that can be applied to an array of values

Return type:

OperatorImplType

make_vector_gradient(grid, *, backend=None)[source]

Make a discretized vector gradient operator for a cylindrical grid.

The cylindrical grid assumes polar symmetry, so that fields only depend on the radial coordinate r and the axial coordinate z. Here, the first axis is along the radius, while the second axis is along the axis of the cylinder. The radial discretization is defined as \(r_i = (i + \frac12) \Delta r\) for \(i=0, \ldots, N_r-1\).

Parameters:
  • grid (CylindricalSymGrid) – The grid for which the operator is created

  • backend (NumbaBackend) – References to the backend to read configuration details

Returns:

A function that can be applied to an array of values

Return type:

OperatorImplType

make_vector_laplace(grid, *, backend=None)[source]

Make a discretized vector laplace operator for a cylindrical grid.

The cylindrical grid assumes polar symmetry, so that fields only depend on the radial coordinate r and the axial coordinate z. Here, the first axis is along the radius, while the second axis is along the axis of the cylinder. The radial discretization is defined as \(r_i = (i + \frac12) \Delta r\) for \(i=0, \ldots, N_r-1\).

Parameters:
  • grid (CylindricalSymGrid) – The grid for which the operator is created

  • backend (NumbaBackend) – References to the backend to read configuration details

Returns:

A function that can be applied to an array of values

Return type:

OperatorImplType