You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`ic_eps`| Real | Interface compression threshold (default: 1e-4) |
@@ -546,6 +547,10 @@ It is recommended to set `weno_eps` to $10^{-6}$ for WENO-JS, and to $10^{-40}$
546
547
-`muscl_lim` specifies the slope limiter that is used in 2nd order MUSCL Reconstruction by an integer from 1 through 5.
547
548
`muscl_lim = 1`, `2`, `3`, `4`, and `5` correspond to minmod, monotonized central, Van Albada, Van Leer, and SUPERBEE, respectively.
548
549
550
+
-`muscl_eps` controls the slope-product activation threshold for all MUSCL limiters.
551
+
When not set (default), the threshold is 1e-9 for minmod/MC, and 1e-6 for others.
552
+
Setting `muscl_eps = 0` gives textbook limiter behavior where limiters activate whenever both slopes have the same sign.
553
+
549
554
-`int_comp` activates interface compression using THINC used in MUSCL Reconstruction, with control parameters (`ic_eps`, and `ic_beta`).
550
555
551
556
-`riemann_solver` specifies the choice of the Riemann solver that is used in simulation by an integer from 1 through 4.
@@ -1081,8 +1086,20 @@ When ``cyl_coord = 'T'`` is set in 2D the following constraints must be met:
1081
1086
1082
1087
-`cantera_file` specifies the chemical mechanism file. If the file is part of the standard Cantera library, only the filename is required. Otherwise, the file must be located in the same directory as your `case.py` file
1083
1088
1089
+
### 18. Chemistry-Specific Boundary Conditions
1090
+
1091
+
| Parameter | Type | Description |
1092
+
| ---: | :----: | :--- |
1093
+
|`bc_[x,y,z]%%isothermal_in`| Logical | Enable isothermal wall at the domain entrance (minimum coordinate). |
1094
+
|`bc_[x,y,z]%%isothermal_out`| Logical | Enable isothermal wall at the domain exit (maximum coordinate). |
1095
+
|`bc_[x,y,z]%%Twall_in`| Real | Temperature [K] of the entrance isothermal wall. |
1096
+
|`bc_[x,y,z]%%Twall_out`| Real | Temperature [K] of the exit isothermal wall. |
1097
+
1098
+
This boundary condition can be used for fixed-temperature (isothermal) walls at the domain extremities. It is exclusively available for reacting flows and requires chemistry to be enabled. It properly evaluates heat and species fluxes at the interface when ``chemistry = 'T'``, ``chem_params%%diffusion = 'T'``, and the corresponding domain boundary is set to a slip wall (`bc_[x,y,z]%%[beg,end]` = -15) or a no-slip wall (`bc_[x,y,z]%%[beg,end]` = -16).
0 commit comments