discretize.CylindricalMesh.cell_gradient_z#
- property CylindricalMesh.cell_gradient_z#
Z-derivative operator (cell centers to z-faces).
This property constructs an z-derivative operator that acts on cell centered quantities; i.e. the z-component of the cell gradient operator. When applied, the z-derivative is mapped to z-faces. The operator is a sparse matrix \(\mathbf{G_z}\) that can be applied as a matrix-vector product to a cell centered quantity \(\boldsymbol{\phi}\), i.e.:
grad_phi_z = Gz @ phi
By default, the operator assumes zero-Neumann boundary conditions on the scalar quantity. Before calling cell_gradient_z however, the user can set a mix of zero Dirichlet and zero Neumann boundary conditions using
set_cell_gradient_BC
. When cell_gradient_z is called, the boundary conditions are enforced for the differencing operator.- Returns:
- (
n_faces_z
,n_cells
)scipy.sparse.csr_matrix
Z-derivative operator (z-component of the cell gradient)
- (
Examples
Below, we demonstrate how to set boundary conditions for the z-component of the cell gradient, construct the operator and apply it to a discrete scalar quantity. The mapping of the operator and its sparsity is also illustrated.
We start by importing the necessary packages and modules.
>>> from discretize import TensorMesh >>> import numpy as np >>> import matplotlib.pyplot as plt >>> import matplotlib as mpl
We then construct a mesh and define a scalar function at cell centers.
>>> h = np.ones(40) >>> mesh = TensorMesh([h, h, h], "CCC") >>> centers = mesh.cell_centers >>> phi = np.exp(-(centers[:, 2] ** 2) / 8** 2)
Before constructing the operator, we must define the boundary conditions; zero Neumann for our example. Even though we are only computing the derivative along z, we define boundary conditions for all boundary faces. Once the operator is created, it is applied as a matrix-vector product.
>>> mesh.set_cell_gradient_BC(['neumann', 'neumann', 'neumann']) >>> Gz = mesh.cell_gradient_z >>> grad_phi_z = Gz @ phi
Now we plot the original scalar and the z-derivative for a slice at y = 0.
>>> fig = plt.figure(figsize=(13, 5)) >>> ax1 = fig.add_subplot(121) >>> mesh.plot_slice(phi, ax=ax1, normal='Y', slice_loc=0) >>> ax1.set_title("Scalar at cell centers", fontsize=14) >>> ax2 = fig.add_subplot(122) >>> v = np.r_[np.zeros(mesh.nFx+mesh.nFy), grad_phi_z] # Define vector for plotting fun >>> mesh.plot_slice(v, ax=ax2, v_type='Fz', normal='Y', slice_loc=0) >>> ax2.set_title("Z-derivative (z-faces)", fontsize=14) >>> plt.show()
(
Source code
,png
,pdf
)The z-component cell gradient is a sparse derivative matrix that maps from cell centers to z-faces. To demonstrate this, we provide a spy plot
>>> fig = plt.figure(figsize=(9, 9)) >>> ax1 = fig.add_subplot(111) >>> ax1.spy(mesh.cell_gradient_z, ms=1) >>> ax1.set_title("Spy Plot", fontsize=16, pad=5) >>> ax1.set_xlabel("Cell Index", fontsize=12) >>> ax1.set_ylabel("Z-Face Index", fontsize=12) >>> plt.show()