You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a developer, I would like to have a utility function which can calculate the mass matrix, such that this can be re-used.
Acceptance Criteria
The calculation of the mass matrix is available as a utility function, which takes the displacement shape function, integration coefficient and soil density for all integration points and returns the element matrix.
This calculation is defined once and re-used at all locations where this calculation is done in the geomechanics application.
The utility function is documented and unit-tested.
Background
This issue handles the M in the equation describing our UPw system of equations:
$$ \begin{bmatrix} M & 0 \\
0 & 0 \end{bmatrix} \begin{bmatrix} \ddot{u} \\
\ddot{p} \end{bmatrix} +
\begin{bmatrix} D & 0 \\
Q^T & C \end{bmatrix} \begin{bmatrix} \dot{u} \\
\dot{p} \end{bmatrix} +
\begin{bmatrix} K & -Q \\
0 & H \end{bmatrix} \begin{bmatrix} u \\
p \end{bmatrix} =
\begin{bmatrix} f_u \\
f_p \end{bmatrix} $$
The mathematical definition is: $$M = \int_\Omega N_{u}^T \rho N_u d\Omega$$
Where $\Omega$ is the domain, $N_u$ is the displacement shape function and $\rho$ is the density.
The text was updated successfully, but these errors were encountered:
As a developer, I would like to have a utility function which can calculate the mass matrix, such that this can be re-used.
Acceptance Criteria
Background
This issue handles the
M
in the equation describing our UPw system of equations:The mathematical definition is:
$$M = \int_\Omega N_{u}^T \rho N_u d\Omega$$
Where$\Omega$ is the domain, $N_u$ is the displacement shape function and $\rho$ is the density.
The text was updated successfully, but these errors were encountered: