@@ -32,9 +32,13 @@ def mfouri(self, oper="", coeff="", mode="", isym="", theta="", curve="", **kwar
3232 oper
3333 Type of Fourier operation:
3434
35- Calculate Fourier coefficients COEFF from MODE, ISYM,
36- THETA, and CURVE. - Evaluate the Fourier curve CURVE from
37- COEFF, MODE, ISYM and THETA.
35+ FIT
36+ Calculate Fourier coefficients COEFF from MODE, ISYM,
37+ THETA, and CURVE.
38+
39+ EVAL
40+ Evaluate the Fourier curve CURVE from
41+ COEFF, MODE, ISYM and THETA.
3842
3943 coeff
4044 Name of the array parameter vector containing the Fourier
@@ -50,7 +54,11 @@ def mfouri(self, oper="", coeff="", mode="", isym="", theta="", curve="", **kwar
5054 the corresponding Fourier terms. The vector should contain keys
5155 for each term as follows:
5256
53- Symmetric (cosine) term - Antisymmetric (sine) term.
57+ 0 or 1
58+ Symmetric (cosine) term
59+
60+ -1
61+ Antisymmetric (sine) term.
5462
5563 theta, curve
5664 Names of the array parameter vectors containing the theta vs. curve
@@ -174,16 +182,22 @@ def moper(
174182 oper
175183 Matrix operations:
176184
177- * `INVERT` - ``(*MOPER, ParR, Par1, INVERT)``
185+ * `INVERT`
186+ ``(*MOPER, ParR, Par1, INVERT)``
178187 Square matrix invert: Inverts the ``n`` x ``n`` matrix in ``Par1``
179188 into ``ParR``. The matrix must be well conditioned.
180189
181- **Warning**: Non-independent or ill-conditioned equations can
182- cause erroneous results. - For large matrices, use the
190+ .. warning::
191+
192+ Non-independent or ill-conditioned equations can
193+ cause erroneous results.
194+
195+ For large matrices, use the
183196 APDL Math operation ``*LSFACTOR`` for efficiency (see APDL
184197 Math).
185198
186- * `MULT` - ``(*MOPER, ParR, Par1, MULT, Par2)``
199+ * `MULT`
200+ ``(*MOPER, ParR, Par1, MULT, Par2)``
187201 Matrix multiply: Multiplies ``Par1`` by ``Par2``. The number of
188202 rows of ``Par2`` must equal the number of columns of ``Par1`` for
189203 the operation. If ``Par2`` is input with a number of rows
@@ -192,7 +206,8 @@ def moper(
192206 number of rows of ``Par2`` equal to the number of columns of
193207 ``Par1``.
194208
195- * `COVAR` - ``(*MOPER, ParR, Par1, COVAR, Par2)``
209+ * `COVAR`
210+ ``(*MOPER, ParR, Par1, COVAR, Par2)``
196211 Covariance: The measure of association between two columns
197212 of the input matrix (``Par1``). ``Par1``, of size m runs (rows)
198213 by ``n`` data (columns) is first processed to produce a row
@@ -202,7 +217,8 @@ def moper(
202217 ``n`` matrix (``ParR``) of covariances (with the variances as the
203218 diagonal terms).
204219
205- * `CORR` - ``(*MOPER, ParR, Par1, CORR, Par2)``
220+ * `CORR`
221+ ``(*MOPER, ParR, Par1, CORR, Par2)``
206222 Correlation: The correlation coefficient between two
207223 variables. The input matrix (``Par1``), of size m runs (rows)
208224 by n data (columns), is first processed to produce a row
@@ -212,7 +228,8 @@ def moper(
212228 ``n`` matrix (``ParR``) of correlation coefficients (with a value
213229 of 1.0 for the diagonal terms).
214230
215- * `SOLV` - ``(*MOPER, ParR, Par1, SOLV, Par2)``
231+ * `SOLV`
232+ ``(*MOPER, ParR, Par1, SOLV, Par2)``
216233 Solution of simultaneous equations: Solves the set of ``n``
217234 equations of n terms of the form ``an_1 x_1 + an_2 x_2 + ... +
218235 an_n x_n = b_n`` where ``Par1`` contains the matrix of
@@ -226,7 +243,8 @@ def moper(
226243 APDL Math operation ``*LSFACTOR`` for efficiency (see APDL
227244 Math).
228245
229- * `SORT` - ``(*MOPER, ParR, Par1, SORT, Par2, n1, n2, n3)``
246+ * `SORT`
247+ ``(*MOPER, ParR, Par1, SORT, Par2, n1, n2, n3)``
230248 Matrix sort: Sorts matrix ``Par1`` according to sort vector
231249 ``Par2`` and places the result back in ``Par1``. Rows of ``Par1`` are
232250 moved to the corresponding positions indicated by the
@@ -238,23 +256,26 @@ def moper(
238256 row positions (the permutation vector). Sorting ``Par1``
239257 according to ``ParR`` should reproduce the initial ordering.
240258
241- * `NNEAR` - ``(*MOPER, ParR, Par1, NNEAR, Toler)``
259+ * `NNEAR`
260+ ``(*MOPER, ParR, Par1, NNEAR, Toler)``
242261 Nearest Node: Quickly determine all the nodes within a
243262 specified tolerance of a given array. ``ParR`` is a vector of
244263 the nearest selected nodes, or 0 if no nodes are nearer
245264 than ``Toler``. ``Par1`` is the ``n`` x 3 array of coordinate
246265 locations. ``Toler`` defaults to 1 and is limited to the
247266 maximum model size.
248267
249- * `ENEAR` - ``(*MOPER, ``ParR``, ``Par1``, ENEAR, Toler)``
268+ * `ENEAR`
269+ ``(*MOPER, ``ParR``, ``Par1``, ENEAR, Toler)``
250270 Nearest Element: Quickly determine the elements with
251271 centroids that are within a specified tolerance of the
252272 points in a given array. - ``ParR`` is a vector of the nearest
253273 selected elements, or 0 if no element centroids are nearer
254274 than ``Toler``. ``Par1`` is the ``n`` x 3 array of coordinate
255275 locations.
256276
257- * `MAP` - ``(*MOPER, ParR, Par1, MAP, Par2, Par3, kDim, --, kOut, LIMIT)``
277+ * `MAP`
278+ ``(*MOPER, ParR, Par1, MAP, Par2, Par3, kDim, --, kOut, LIMIT)``
258279 Maps the results from one set of points to another. For
259280 example, you can map pressures from a CFD analysis onto
260281 your model for a structural analysis.
@@ -297,14 +318,16 @@ def moper(
297318 bounds. Results mapping is available from the command line
298319 only.
299320
300- * `INTP` - ``(*MOPER, ParR, Par1, INTP, Par2)``
321+ * `INTP`
322+ ``(*MOPER, ParR, Par1, INTP, Par2)``
301323 Finds the elements that contain each point in the array of
302324 ``n`` x 3 points in ``Par1``. ``Par2`` will contain the set of element
303325 ID numbers and ``ParR`` will contain their ``n`` x 3 set of
304326 natural element coordinates (values between -1 and
305327 1). ``Par1`` must be in global Cartesian coordinates.
306328
307- * `SGET` - ``(*MOPER, ParR, Par1, SGET, Par2, Label, Comp)``
329+ * `SGET`
330+ ``(*MOPER, ParR, Par1, SGET, Par2, Label, Comp)``
308331 Gets the nodal solution item corresponding to Label and
309332 Comp (see the PLNSOL command) and interpolates it to the
310333 given element locations. ``Par1`` contains the ``n`` x 3 array of
0 commit comments