Skip to content

Commit e069d99

Browse files
committed
Adjust latex documentation
1 parent 98f0a75 commit e069d99

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

source/pbat/fem/LaplacianMatrix.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ struct SymmetricLaplacianMatrix
132132
MatrixX deltag; ///< `|# element nodes| x |# element nodes * # quad.pts.|` matrix of element
133133
///< laplacians at quadrature points
134134
int dims; ///< Dimensionality of image of FEM function space, i.e. this Laplacian matrix is
135-
///< actually \f$ L \kronecker I_{dims \times dims} \f$. Must have `dims >= 1`.
135+
///< actually \f$ L \otimes I_{d} \f$. Must have `dims >= 1`.
136136
};
137137

138138
template <CMesh TMesh>

source/pbat/fem/LoadVector.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,7 @@ struct LoadVector
9191
///< (IntegratedShapeFunctions()).
9292
Eigen::Ref<MatrixX const> detJe; ///< `|# element quadrature points|x|# elements|` matrix of
9393
///< jacobian determinants at element quadrature points
94-
int dims; ///< Dimensionality of image of FEM function space, i.e. this load vector is
95-
///< actually \f$ \mathbf{f} \kronecker 1_{dims \times dims} \f$. Should have `dims >=
96-
///< 1`.
94+
int dims; ///< Dimensionality of external loading. Should have `dims >= 1`.
9795
};
9896

9997
template <CMesh TMesh, int QuadratureOrder>

0 commit comments

Comments
 (0)