pygeon.discretizations.fem.vec_hdiv module
Module for the discretizations of the H(div) space.
- class pygeon.discretizations.fem.vec_hdiv.VecHDiv(keyword='unitary_data')[source]
Bases:
VecDiscretizationBase class for vector-valued discretizations in the H(div) space. This class provides methods for assembling mass matrices, trace matrices, asymmetric matrices, and lumped matrices for vector-valued finite element discretizations in the H(div) space.
- assemble_mass_matrix_elasticity(sd, data=None)[source]
Assembles and returns the elasticity inner product matrix, which is given by \((A \sigma, \tau)\) where
\[A \sigma = \frac{1}{2\mu} \left[ \sigma - c \text{Tr}(\sigma) I\right]\]with \(\mu\) and \(\lambda\) the Lamé constants and
\[c = \frac{\lambda}{2\mu + d \lambda}\]where \(d\) is the dimension.
- Parameters:
sd (pg.Grid) – The grid.
data (dict) – Data for the assembly.
- Returns:
The mass matrix obtained from the discretization.
- Return type:
sps.csc_array
- assemble_mass_matrix_cosserat(sd, data=None)[source]
Assembles and returns the Cosserat inner product, which is given by \((A \sigma, \tau)\) where
\[A \sigma = \frac{1}{2\mu} \left( \text{sym}(\sigma) - c \text{Tr}(\sigma) I \right) + \frac{1}{2\mu_c} \text{skw}(\sigma)\]with \(\mu\) and \(\lambda\) the Lamé constants, \(\mu_c\) the coupling Lamé modulus, and
\[c = \frac{\lambda}{2\mu + d \lambda}\]where \(d\) is the dimension.
- Parameters:
sd (pg.Grid) – The grid.
data (dict) – Data for the assembly.
- Returns:
The mass matrix obtained from the discretization.
- Return type:
sps.csc_array
- assemble_lumped_matrix_elasticity(sd, data=None)[source]
Assembles the lumped matrix for the given grid.
- Parameters:
sd (pg.Grid) – The grid object.
data (dict | None) – Optional data dictionary.
- Returns:
The assembled lumped matrix.
- Return type:
sps.csc_array
- assemble_lumped_matrix_cosserat(sd, data=None)[source]
Assembles the lumped matrix with Cosserat terms for the given grid.
- Parameters:
sd (pg.Grid) – The grid object.
data (dict | None) – Optional data dictionary.
- Returns:
The assembled lumped matrix.
- Return type:
sps.csc_array
- assemble_asym_matrix(sd)[source]
Assemble the asymmetric matrix for the given grid.
This method constructs an asymmetric matrix by projecting to matrix piecewise polynomials and combining it with the discretization’s asymmetric matrix.
- Parameters:
sd (pg.Grid) – The grid object representing the spatial discretization.
- Returns:
The assembled asymmetric matrix in compressed sparse column format.
- Return type:
sps.csc_array
- abstractmethod assemble_trace_matrix(sd)[source]
Assembles and returns the trace matrix for the vector HDiv.
- Parameters:
sd (pg.Grid) – The grid.
- Returns:
The trace matrix obtained from the discretization.
- Return type:
sps.csc_array
Note
This method should be implemented in subclasses.
- class pygeon.discretizations.fem.vec_hdiv.VecBDM1(keyword='unitary_data')[source]
Bases:
VecHDivVecBDM1 is a class that represents the vector BDM1 (Brezzi-Douglas-Marini) finite element method. It provides methods for assembling matrices like the mass matrix, the trace matrix, the asymmetric matrix and the differential matrix. It also provides methods for evaluating the solution at cell centers, interpolating a given function onto the grid, assembling the natural boundary condition term, and more.
- poly_order = 1
Polynomial degree of the basis functions
- tensor_order = 2
Matrix-valued discretization
- __init__(keyword='unitary_data')[source]
Initialize the vector BDM1 discretization class. The base discretization class is pg.BDM1.
We are considering the following structure of the stress tensor in 2D:
\[\begin{split}\sigma = \begin{bmatrix} \sigma_{xx} & \sigma_{xy} \\ \sigma_{yx} & \sigma_{yy} \end{bmatrix}\end{split}\]which is represented in the code unrolled row-wise as a vector of length 4:
\[\sigma = [\sigma_{xx}, \sigma_{xy}, \sigma_{yx}, \sigma_{yy}]\]While in 3D the stress tensor can be written as:
\[\begin{split}\sigma = \begin{bmatrix} \sigma_{xx} & \sigma_{xy} & \sigma_{xz} \\ \sigma_{yx} & \sigma_{yy} & \sigma_{yz} \\ \sigma_{zx} & \sigma_{zy} & \sigma_{zz} \end{bmatrix}\end{split}\]where its vectorized structure of length 9 is given by:
\[\sigma = [\sigma_{xx}, \sigma_{xy}, \sigma_{xz}, \sigma_{yx}, \sigma_{yy}, \sigma_{yz}, \sigma_{zx}, \sigma_{zy}, \sigma_{zz}]\]- Parameters:
keyword (str) – The keyword for the vector discretization class. Default is pg.UNITARY_DATA.
- Returns:
None
- assemble_trace_matrix(sd)[source]
Assembles and returns the trace matrix for the vector BDM1.
- Parameters:
sd (pg.Grid) – The grid.
- Returns:
The trace matrix obtained from the discretization.
- Return type:
sps.csc_array
- assemble_asym_matrix(sd, as_pwconstant=False)[source]
Assembles and returns the asymmetric matrix for the vector BDM1.
The asymmetric operator \(\text{as}\) for a tensor is a scalar in 2D:
\[\text{as}(\tau) = \tau_{yx} - \tau_{xy}\]while for a tensor in 3D it is a vector:
\[\begin{split}\text{as}(\tau) = \begin{bmatrix} \tau_{zy} - \tau_{yz} \\ \tau_{xz} - \tau_{zx} \\ \tau_{yx} - \tau_{xy} \end{bmatrix}\end{split}\]Note: We assume that the \(\text{as}(\tau)\) is piecewise linear.
- Parameters:
sd (pg.Grid) – The grid.
as_pwconstant (bool) – Compute the operator with the range on the piece-wise linears (default), otherwise the mapping is on the piece-wise constant.
- Returns:
The asymmetric matrix obtained from the discretization.
- Return type:
sps.csc_array
- proj_to_RT0(sd)[source]
Project the function space to the lowest order Raviart-Thomas (RT0) space.
- Parameters:
sd (pg.Grid) – The grid object representing the computational domain.
- Returns:
The projection matrix to the RT0 space.
- Return type:
sps.csc_array
- proj_from_RT0(sd)[source]
Project the RT0 finite element space onto the faces of the given grid.
- Parameters:
sd (pg.Grid) – The grid on which the projection is performed.
- Returns:
The projection matrix.
- Return type:
sps.csc_array
- class pygeon.discretizations.fem.vec_hdiv.VecRT0(keyword='unitary_data')[source]
Bases:
VecHDivVecRT0 is a tensor-valued discretization class for the Raviart-Thomas RT0 finite element, specialized for handling stress tensors in 2D and 3D. This class provides methods for assembling trace and asymmetric matrices for vector RT0 discretizations, as well as retrieving the appropriate range discretization class.
- poly_order = 1
Polynomial degree of the basis functions
- tensor_order = 2
Matrix-valued discretization
- __init__(keyword='unitary_data')[source]
Initialize the vector RT0 discretization class. The base discretization class is pg.RT0.
We are considering the following structure of the stress tensor in 2D:
\[\begin{split}\sigma = \begin{bmatrix} \sigma_{xx} & \sigma_{xy} \\ \sigma_{yx} & \sigma_{yy} \end{bmatrix}\end{split}\]which is represented in the code unrolled row-wise as a vector of length 4:
\[\sigma = [\sigma_{xx}, \sigma_{xy}, \sigma_{yx}, \sigma_{yy}]\]While in 3D the stress tensor can be written as:
\[\begin{split}\sigma = \begin{bmatrix} \sigma_{xx} & \sigma_{xy} & \sigma_{xz} \\ \sigma_{yx} & \sigma_{yy} & \sigma_{yz} \\ \sigma_{zx} & \sigma_{zy} & \sigma_{zz} \end{bmatrix}\end{split}\]where its vectorized structure of length 9 is given by:
\[\sigma = [\sigma_{xx}, \sigma_{xy}, \sigma_{xz}, \sigma_{yx}, \sigma_{yy}, \sigma_{yz}, \sigma_{zx}, \sigma_{zy}, \sigma_{zz}]\]- Parameters:
keyword (str) – The keyword for the vector discretization class. Default is pg.UNITARY_DATA.
- Returns:
None
- assemble_trace_matrix(sd)[source]
Assembles and returns the trace matrix for the vector RT0.
- Parameters:
sd (pg.Grid) – The grid.
- Returns:
The trace matrix obtained from the discretization.
- Return type:
sps.csc_array
- assemble_asym_matrix(sd, as_pwconstant=False)[source]
Assembles and returns the asymmetric matrix for the vector RT0.
The asymmetric operator \(\text{as}\) for a tensor is a scalar in 2D:
\[\text{as}(\tau) = \tau_{xy} - \tau_{yx}\]while for a tensor in 3D it is a vector:
\[\begin{split}\text{as}(\tau) = \begin{bmatrix} \tau_{zy} - \tau_{yz} \\ \tau_{xz} - \tau_{zx} \\ \tau_{yx} - \tau_{xy} \end{bmatrix}\end{split}\]Note: We assume that the \(\text{as}(\tau)\) is a cell variable.
- Parameters:
sd (pg.Grid) – The grid.
as_pwconstant (bool) – Compute the operator with the range on the piece-wise constants (default), otherwise the mapping is on the piece-wise linears.
- Returns:
The asymmetric matrix obtained from the discretization.
- Return type:
sps.csc_array
- class pygeon.discretizations.fem.vec_hdiv.VecRT1(keyword='unitary_data')[source]
Bases:
VecHDivVecRT1 is a vector Raviart-Thomas finite element discretization class of order 1.
This class is designed for matrix-valued finite element discretizations in the H(div) space, specifically using the Raviart-Thomas elements of order 1 (RT1).
- poly_order = 2
Polynomial degree of the basis functions
- tensor_order = 2
Matrix-valued discretization
- __init__(keyword='unitary_data')[source]
Initialize the vector RT1 discretization class. The base discretization class is pg.RT1.
- Parameters:
keyword (str) – The keyword for the vector discretization class. Default is pg.UNITARY_DATA.
- Returns:
None
- assemble_trace_matrix(sd)[source]
Assemble the trace matrix for the given grid.
This method constructs a sparse matrix that represents the trace operator for a finite element discretization on a given grid. The trace operator maps the degrees of freedom associated with the elements of the grid to the degrees of freedom associated with the faces and edges of the grid.
- Parameters:
sd (pg.Grid) – The grid object containing information about the discretization.
- Returns:
A sparse matrix in compressed sparse column (CSC) format representing the trace operator.
- Return type:
sps.csc_array