Skip to content

Commit 6cec60a

Browse files
committed
doc fixes
1 parent d31f425 commit 6cec60a

4 files changed

Lines changed: 6 additions & 22 deletions

File tree

Doxyfile

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1379,15 +1379,6 @@ HTML_COLORSTYLE_SAT = 100
13791379

13801380
HTML_COLORSTYLE_GAMMA = 80
13811381

1382-
# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
1383-
# page will contain the date and time when the page was generated. Setting this
1384-
# to YES can help to show when doxygen was last run and thus if the
1385-
# documentation is up to date.
1386-
# The default value is: NO.
1387-
# This tag requires that the tag GENERATE_HTML is set to YES.
1388-
1389-
HTML_TIMESTAMP = YES
1390-
13911382
# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML
13921383
# documentation will contain a main index with vertical navigation menus that
13931384
# are dynamically created via JavaScript. If disabled, the navigation index will
@@ -2049,14 +2040,6 @@ LATEX_HIDE_INDICES = NO
20492040

20502041
LATEX_BIB_STYLE = plain
20512042

2052-
# If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated
2053-
# page will contain the date and time when the page was generated. Setting this
2054-
# to NO can help when comparing the output of multiple runs.
2055-
# The default value is: NO.
2056-
# This tag requires that the tag GENERATE_LATEX is set to YES.
2057-
2058-
LATEX_TIMESTAMP = NO
2059-
20602043
# The LATEX_EMOJI_DIRECTORY tag is used to specify the (relative or absolute)
20612044
# path from which the emoji images will be read. If a relative path is entered,
20622045
# it will be relative to the LATEX_OUTPUT directory. If left blank the

examples/fluids/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -841,13 +841,13 @@ string, then the algorithmic approach will be performed.
841841
This problem is really just an initial condition, the [Taylor-Green Vortex](https://en.wikipedia.org/wiki/Taylor%E2%80%93Green_vortex):
842842

843843
$$
844-
\begin{align*}
844+
\begin{aligned}
845845
u &= V_0 \sin(\hat x) \cos(\hat y) \sin(\hat z) \\
846846
v &= -V_0 \cos(\hat x) \sin(\hat y) \sin(\hat z) \\
847847
w &= 0 \\
848848
p &= p_0 + \frac{\rho_0 V_0^2}{16} \left ( \cos(2 \hat x) + \cos(2 \hat y)\right) \left( \cos(2 \hat z) + 2 \right) \\
849849
\rho &= \frac{p}{R T_0} \\
850-
\end{align*}
850+
\end{aligned}
851851
$$
852852

853853
where $\hat x = 2 \pi x / L$ for $L$ the length of the domain in that specific direction.

interface/ceed-basis.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ static int CeedChebyshevPolynomialsAtPoint(CeedScalar x, CeedInt n, CeedScalar *
5858
/**
5959
@brief Compute values of the derivative of Chebyshev polynomials at a point
6060
61-
@param[in] x Coordinate to evaluate derivative of Chebyshev polynomials at
62-
@param[in] n Number of Chebyshev polynomials to evaluate, n >= 2
63-
@param[out] chebyshev_x Array of Chebyshev polynomial derivative values
61+
@param[in] x Coordinate to evaluate derivative of Chebyshev polynomials at
62+
@param[in] n Number of Chebyshev polynomials to evaluate, n >= 2
63+
@param[out] chebyshev_dx Array of Chebyshev polynomial derivative values
6464
6565
@return An error code: 0 - success, otherwise - failure
6666

interface/ceed-elemrestriction.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1128,6 +1128,7 @@ int CeedElemRestrictionApply(CeedElemRestriction rstr, CeedTransposeMode t_mode,
11281128
@brief Restrict an L-vector of points to a single element or apply its transpose
11291129
11301130
@param[in] rstr CeedElemRestriction
1131+
@param[in] elem Element number in range 0..@a num_elem
11311132
@param[in] t_mode Apply restriction or transpose
11321133
@param[in] u Input vector (of size @a l_size when t_mode=@ref CEED_NOTRANSPOSE)
11331134
@param[out] ru Output vector (of shape [@a num_elem * @a elem_size] when t_mode=@ref CEED_NOTRANSPOSE).

0 commit comments

Comments
 (0)