Skip to content

Commit 72fa5b4

Browse files
committed
revision
1 parent 3f298fc commit 72fa5b4

2 files changed

Lines changed: 24 additions & 7 deletions

File tree

source/3_numerical.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
.. _numerical:
22

33
Numerical Methods
4-
==================
4+
===================
5+
6+
Computational Density and Comparison
7+
==========================================

source/6_inputdeck.rst

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Input Deck for Solver Parameters
55

66
Input and Range Control
77
---------------------------------
8+
89
+-------------------+------------------------------------------------------+-------------------------+---------------------------------------------------------------------------------------------------------+
910
| Key | Description | Value(s) | Explaination |
1011
+===================+======================================================+=========================+=========================================================================================================+
@@ -56,13 +57,25 @@ Numerical Methods
5657
+-------------------+------------------------------------------------------+-------------------------+---------------------------------------------------------------------------------------------------------+
5758
| | | ``RK2`` | Runge–Kutta 2 with :math:`O(h^3)` error. |
5859
+-------------------+------------------------------------------------------+-------------------------+---------------------------------------------------------------------------------------------------------+
59-
| | | ``RK4`` | Runge–Kutta 4 with :math:`O(h^4)` error |
60+
| | | ``RK4`` | Runge–Kutta 4 with :math:`O(h^4)` error. |
61+
+-------------------+------------------------------------------------------+-------------------------+---------------------------------------------------------------------------------------------------------+
62+
| | | ``RK6`` | Runge–Kutta 6 with :math:`O(h^6)` error. |
63+
+-------------------+------------------------------------------------------+-------------------------+---------------------------------------------------------------------------------------------------------+
64+
| ``interp_method`` | Interpolation method | ``trilinear`` | NA |
6065
+-------------------+------------------------------------------------------+-------------------------+---------------------------------------------------------------------------------------------------------+
61-
| | | ``RK6`` | |
66+
| | | ``tricubic`` | |
6267
+-------------------+------------------------------------------------------+-------------------------+---------------------------------------------------------------------------------------------------------+
63-
| ``interp_method`` | Interpolation method | ``<string>`` | NA |
68+
| | | ``hermite`` | |
69+
+-------------------+------------------------------------------------------+-------------------------+---------------------------------------------------------------------------------------------------------+
70+
| | | ``reflect`` | |
6471
+-------------------+------------------------------------------------------+-------------------------+---------------------------------------------------------------------------------------------------------+
65-
| ``grad_order`` | Gradient approximation scheme | ``<int>`` | NA |
72+
| ``grad_order`` | The method (order) of gradient discretization | ``2`` | 2nd-order central difference. |
73+
+-------------------+------------------------------------------------------+-------------------------+---------------------------------------------------------------------------------------------------------+
74+
| | | ``4`` | 4th-order central difference. |
75+
+-------------------+------------------------------------------------------+-------------------------+---------------------------------------------------------------------------------------------------------+
76+
| | | ``6`` | 6th-order central difference. |
77+
+-------------------+------------------------------------------------------+-------------------------+---------------------------------------------------------------------------------------------------------+
78+
| | | ``100`` | |
6679
+-------------------+------------------------------------------------------+-------------------------+---------------------------------------------------------------------------------------------------------+
6780
| ``Eigen_method`` | Eigenvalue computation method | ``<string>`` | NA |
6881
+-------------------+------------------------------------------------------+-------------------------+---------------------------------------------------------------------------------------------------------+
@@ -71,12 +84,13 @@ Numerical Methods
7184

7285
Dynamic LCS Window
7386
---------------------------------
87+
7488
+-------------------+------------------------------------------------------+-------------------------+---------------------------------------------------------------------------------------------------------+
7589
| Key | Description | Value(s) | Explaination |
7690
+===================+======================================================+=========================+=========================================================================================================+
77-
| ``dyn_mode`` | Dynamic LCS mode selector | (``0``) | Treat this input as a steady whole. See :ref:`steady`. |
91+
| ``dyn_mode`` | Dynamic LCS mode selector | (``0``) | Treat this input as a steady whole, generating still results. See :ref:`steady`. |
7892
+-------------------+------------------------------------------------------+-------------------------+---------------------------------------------------------------------------------------------------------+
79-
| | | ``1`` | Dynamic LCS computation. See :ref:`unsteady`. |
93+
| | | ``1`` | Dynamic LCS computation based on sliding window. See :ref:`unsteady`. |
8094
+-------------------+------------------------------------------------------+-------------------------+---------------------------------------------------------------------------------------------------------+
8195
| ``win_size`` | Window size for dynamic LCS | ``<float>`` | The window size in frames for each batch of computation. Available under ``dyn_mode=1``. |
8296
+-------------------+------------------------------------------------------+-------------------------+---------------------------------------------------------------------------------------------------------+

0 commit comments

Comments
 (0)