Skip to content

Commit

Permalink
add some more math mode
Browse files Browse the repository at this point in the history
  • Loading branch information
sandro-elsweijer committed Sep 4, 2023
1 parent abf0d26 commit c383f88
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/t8_geometry/t8_geometry_base.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ struct t8_geometry
* \param [in] glreeid The global tree (of the cmesh) in which the reference point is.
* \param [in] ref_coords Array of \a dimension many entries, specifying a point in \f$ [0,1]^\mathrm{dim} \f$.
* \param [out] jacobian The jacobian at \a ref_coords. Array of size dimension x 3. Indices 3*i, 3*i+1, 3*i+2
* correspond to the i-th column of the jacobian (Entry 3*i + j is del f_j/del x_i).
* correspond to the i-th column of the jacobian (Entry 3*i + j is \f$ \frac{\partial f_j}{\partial x_i} \f$).
*/
virtual void
t8_geom_evaluate_jacobian (t8_cmesh_t cmesh, t8_gloidx_t gtreeid, const double *ref_coords, double *jacobian) const
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ t8_geometry_analytic::t8_geom_evaluate (t8_cmesh_t cmesh, t8_gloidx_t gtreeid, c
* \param [in] gtreeid The global tree (of the cmesh) in which the reference point is.
* \param [in] ref_coords Array of \a dimension many entries, specifying a point in \f$ [0,1]^\mathrm{dim} \f$.
* \param [out] jacobian The jacobian at \a ref_coords. Array of size dimension x 3. Indices 3*i, 3*i+1, 3*i+2
* correspond to the i-th column of the jacobian (Entry 3*i + j is del f_j/del x_i).
* correspond to the i-th column of the jacobian (Entry 3*i + j is \f$ \frac{\partial f_j}{\partial x_i} \f$).
*/
/* *INDENT-OFF* */
/* Indent has trouble with the const keyword at the end */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ typedef void (*t8_geom_analytic_fn) (t8_cmesh_t cmesh, t8_gloidx_t gtreeid, cons
* \param [in] gtreeid The global tree (of the cmesh) in which the reference point is.
* \param [in] ref_coords Array of \a dimension many entries, specifying a point in \f$ [0,1]^\mathrm{dim} \f$.
* \param [out] jacobian The jacobian at \a ref_coords. Array of size dimension x 3. Indices 3*i, 3*i+1, 3*i+2
* correspond to the i-th column of the jacobian (Entry 3*i + j is del f_j/del x_i).
* correspond to the i-th column of the jacobian (Entry 3*i + j is \f$ \frac{\partial f_j}{\partial x_i} \f$).
* \param [in] tree_data The data of the current tree as loaded by a \ref t8_geom_load_tree_data_fn.
* \param [in] user_data The user data pointer stored in the geometry.
*/
Expand Down Expand Up @@ -101,7 +101,7 @@ struct t8_geometry_analytic: public t8_geometry
* \param [in] gtreeid The global tree (of the cmesh) in which the reference point is.
* \param [in] ref_coords Array of \a dimension many entries, specifying a point in \f$ [0,1]^\mathrm{dim} \f$.
* \param [out] jacobian The jacobian at \a ref_coords. Array of size dimension x 3. Indices 3*i, 3*i+1, 3*i+2
* correspond to the i-th column of the jacobian (Entry 3*i + j is del f_j/del x_i).
* correspond to the i-th column of the jacobian (Entry 3*i + j is \f$ \frac{\partial f_j}{\partial x_i} \f$).
* \note The jacobian will be
* (1) (1 0) (1 0 0)
* dim 1: J = (0) dim 2: J = (0 1) dim 3: J = (0 1 0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ t8_geometry_linear::t8_geom_evaluate (t8_cmesh_t cmesh, t8_gloidx_t gtreeid, con
* \param [in] gtreeid The global tree (of the cmesh) in which the reference point is.
* \param [in] ref_coords Array of \a dimension many entries, specifying a point in \f$ [0,1]^\mathrm{dim} \f$.
* \param [out] jacobian The jacobian at \a ref_coords. Array of size dimension x 3. Indices 3*i, 3*i+1, 3*i+2
* correspond to the i-th column of the jacobian (Entry 3*i + j is del f_j/del x_i).
* correspond to the i-th column of the jacobian (Entry 3*i + j is \f$ \frac{\partial f_j}{\partial x_i} \f$).
*/
/* *INDENT-OFF* */
/* indent adds second const */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ struct t8_geometry_linear: public t8_geometry_with_vertices
* \param [in] gtreeid The global tree (of the cmesh) in which the reference point is.
* \param [in] ref_coords Array of \a dimension many entries, specifying a point in \f$ [0,1]^\mathrm{dim} \f$.
* \param [out] jacobian The jacobian at \a ref_coords. Array of size dimension x 3. Indices 3*i, 3*i+1, 3*i+2
* correspond to the i-th column of the jacobian (Entry 3*i + j is del f_j/del x_i).
* correspond to the i-th column of the jacobian (Entry 3*i + j is \f$ \frac{\partial f_j}{\partial x_i} \f$).
*/
virtual void
t8_geom_evaluate_jacobian (t8_cmesh_t cmesh, t8_gloidx_t gtreeid, const double *ref_coords, double *jacobian) const;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ t8_geometry_linear_axis_aligned::t8_geom_evaluate (t8_cmesh_t cmesh, t8_gloidx_t
* \param [in] gtreeid The global tree (of the cmesh) in which the reference point is.
* \param [in] ref_coords Array of \a dimension many entries, specifying a point in \f$ [0,1]^\mathrm{dim} \f$.
* \param [out] jacobian The jacobian at \a ref_coords. Array of size dimension x 3. Indices 3*i, 3*i+1, 3*i+2
* correspond to the i-th column of the jacobian (Entry 3*i + j is del f_j/del x_i).
* correspond to the i-th column of the jacobian (Entry 3*i + j is \f$ \frac{\partial f_j}{\partial x_i} \f$).
*/
/* *INDENT-OFF* */
/* indent adds second const */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ struct t8_geometry_linear_axis_aligned: public t8_geometry_with_vertices
* \param [in] gtreeid The global tree (of the cmesh) in which the reference point is.
* \param [in] ref_coords Array of \a dimension many entries, specifying a point in \f$ [0,1]^\mathrm{dim} \f$.
* \param [out] jacobian The jacobian at \a ref_coords. Array of size dimension x 3. Indices 3*i, 3*i+1, 3*i+2
* correspond to the i-th column of the jacobian (Entry 3*i + j is del f_j/del x_i).
* correspond to the i-th column of the jacobian (Entry 3*i + j is \f$ \frac{\partial f_j}{\partial x_i} \f$).
*/
virtual void
t8_geom_evaluate_jacobian (t8_cmesh_t cmesh, t8_gloidx_t gtreeid, const double *ref_coords, double *jacobian) const;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ struct t8_geometry_occ: public t8_geometry_with_vertices
* \param [in] gtreeid The global tree (of the cmesh) in which the reference point is.
* \param [in] ref_coords Array of \a dimension many entries, specifying a point in \f$ [0,1]^\mathrm{dim} \f$.
* \param [out] jacobian The jacobian at \a ref_coords. Array of size dimension x 3. Indices 3*i, 3*i+1, 3*i+2
* correspond to the i-th column of the jacobian (Entry 3*i + j is del f_j/del x_i).
* correspond to the i-th column of the jacobian (Entry 3*i + j is \f$ \frac{\partial f_j}{\partial x_i} \f$).
*/
virtual void
t8_geom_evaluate_jacobian (t8_cmesh_t cmesh, t8_gloidx_t gtreeid, const double *ref_coords, double *jacobian) const;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ t8_geometry_zero::t8_geom_evaluate (t8_cmesh_t cmesh, t8_gloidx_t gtreeid, const
* \param [in] gtreeid The global tree (of the cmesh) in which the reference point is.
* \param [in] ref_coords Array of \a dimension many entries, specifying a point in \f$ [0,1]^\mathrm{dim} \f$.
* \param [out] jacobian The jacobian at \a ref_coords. Array of size dimension x 3. Indices 3*i, 3*i+1, 3*i+2
* correspond to the i-th column of the jacobian (Entry 3*i + j is del f_j/del x_i).
* correspond to the i-th column of the jacobian (Entry 3*i + j is \f$ \frac{\partial f_j}{\partial x_i} \f$).
*/
/* *INDENT-OFF* */
/* Indent has trouble with the const keyword at the end */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ struct t8_geometry_zero: public t8_geometry
* \param [in] gtreeid The global tree (of the cmesh) in which the reference point is.
* \param [in] ref_coords Array of \a dimension many entries, specifying a point in \f$ [0,1]^\mathrm{dim} \f$.
* \param [out] jacobian The jacobian at \a ref_coords. Array of size dimension x 3. Indices 3*i, 3*i+1, 3*i+2
* correspond to the i-th column of the jacobian (Entry 3*i + j is del f_j/del x_i).
* correspond to the i-th column of the jacobian (Entry 3*i + j is \f$ \frac{\partial f_j}{\partial x_i} \f$).
* \note All entries in \a jacobian will be set to zero.
*/
virtual void
Expand Down

0 comments on commit c383f88

Please sign in to comment.