1965d9f74SJames Wright# Theory and Background 2965d9f74SJames Wright 3965d9f74SJames WrightHONEE solves the time-dependent Navier-Stokes equations of compressible gas dynamics in a static Eulerian three-dimensional frame using unstructured high-order finite/spectral element spatial discretizations and explicit or implicit high-order time-stepping (available in PETSc). 4965d9f74SJames WrightMoreover, the Navier-Stokes example has been developed using PETSc, so that the pointwise physics (defined at quadrature points) is separated from the parallelization and meshing concerns. 5965d9f74SJames Wright 6*0fb1909eSJames Wright## The Navier-Stokes Equations 7965d9f74SJames Wright 8965d9f74SJames WrightThe mathematical formulation (from {cite}`shakib1991femcfd`) is given in what follows. 9965d9f74SJames WrightThe compressible Navier-Stokes equations in conservative form are 10965d9f74SJames Wright 11965d9f74SJames Wright$$ 12965d9f74SJames Wright\begin{aligned} 13965d9f74SJames Wright\frac{\partial \rho}{\partial t} + \nabla \cdot \bm{U} &= 0 \\ 14965d9f74SJames Wright\frac{\partial \bm{U}}{\partial t} + \nabla \cdot \left( \frac{\bm{U} \otimes \bm{U}}{\rho} + P \bm{I}_3 -\bm\sigma \right) - \rho \bm{b} &= 0 \\ 15965d9f74SJames Wright\frac{\partial E}{\partial t} + \nabla \cdot \left( \frac{(E + P)\bm{U}}{\rho} -\bm{u} \cdot \bm{\sigma} - k \nabla T \right) - \rho \bm{b} \cdot \bm{u} &= 0 \, , \\ 16965d9f74SJames Wright\end{aligned} 17965d9f74SJames Wright$$ (eq-ns) 18965d9f74SJames Wright 19965d9f74SJames Wrightwhere $\bm{\sigma} = \mu(\nabla \bm{u} + (\nabla \bm{u})^T + \lambda (\nabla \cdot \bm{u})\bm{I}_3)$ is the Cauchy (symmetric) stress tensor, with $\mu$ the dynamic viscosity coefficient, and $\lambda = - 2/3$ the Stokes hypothesis constant. 20965d9f74SJames WrightIn equations {eq}`eq-ns`, $\rho$ represents the volume mass density, $U$ the momentum density (defined as $\bm{U}=\rho \bm{u}$, where $\bm{u}$ is the vector velocity field), $E$ the total energy density (defined as $E = \rho e$, where $e$ is the total energy including thermal and kinetic but not potential energy), $\bm{I}_3$ represents the $3 \times 3$ identity matrix, $\bm{b}$ is a body force vector (e.g., gravity vector $\bm{g}$), $k$ the thermal conductivity constant, $T$ represents the temperature, and $P$ the pressure, given by the following equation of state 21965d9f74SJames Wright 22965d9f74SJames Wright$$ 23965d9f74SJames WrightP = \left( {c_p}/{c_v} -1\right) \left( E - {\bm{U}\cdot\bm{U}}/{(2 \rho)} \right) \, , 24965d9f74SJames Wright$$ (eq-state) 25965d9f74SJames Wright 26965d9f74SJames Wrightwhere $c_p$ is the specific heat at constant pressure and $c_v$ is the specific heat at constant volume (that define $\gamma = c_p / c_v$, the specific heat ratio). 27965d9f74SJames Wright 28965d9f74SJames WrightThe system {eq}`eq-ns` can be rewritten in vector form 29965d9f74SJames Wright 30965d9f74SJames Wright$$ 31965d9f74SJames Wright\frac{\partial \bm{q}}{\partial t} + \nabla \cdot \bm{F}(\bm{q}) -S(\bm{q}) = 0 \, , 32965d9f74SJames Wright$$ (eq-vector-ns) 33965d9f74SJames Wright 34965d9f74SJames Wrightfor the state variables 5-dimensional vector 35965d9f74SJames Wright 36965d9f74SJames Wright$$ 37965d9f74SJames Wright\bm{q} = 38965d9f74SJames Wright\begin{pmatrix} 39965d9f74SJames Wright \rho \\ 40965d9f74SJames Wright \bm{U} \equiv \rho \bm{ u }\\ 41965d9f74SJames Wright E \equiv \rho e 42965d9f74SJames Wright\end{pmatrix} 43965d9f74SJames Wright\begin{array}{l} 44965d9f74SJames Wright \leftarrow\textrm{ volume mass density}\\ 45965d9f74SJames Wright \leftarrow\textrm{ momentum density}\\ 46965d9f74SJames Wright \leftarrow\textrm{ energy density} 47965d9f74SJames Wright\end{array} 48965d9f74SJames Wright$$ 49965d9f74SJames Wright 50965d9f74SJames Wrightwhere the flux and the source terms, respectively, are given by 51965d9f74SJames Wright 52965d9f74SJames Wright$$ 53965d9f74SJames Wright\begin{aligned} 54965d9f74SJames Wright\bm{F}(\bm{q}) &= 55965d9f74SJames Wright\underbrace{\begin{pmatrix} 56965d9f74SJames Wright \bm{U}\\ 57965d9f74SJames Wright {(\bm{U} \otimes \bm{U})}/{\rho} + P \bm{I}_3 \\ 58965d9f74SJames Wright {(E + P)\bm{U}}/{\rho} 59965d9f74SJames Wright\end{pmatrix}}_{\bm F_{\text{adv}}} + 60965d9f74SJames Wright\underbrace{\begin{pmatrix} 61965d9f74SJames Wright0 \\ 62965d9f74SJames Wright- \bm{\sigma} \\ 63965d9f74SJames Wright - \bm{u} \cdot \bm{\sigma} - k \nabla T 64965d9f74SJames Wright\end{pmatrix}}_{\bm F_{\text{diff}}},\\ 65965d9f74SJames WrightS(\bm{q}) &= 66965d9f74SJames Wright \begin{pmatrix} 67965d9f74SJames Wright 0\\ 68965d9f74SJames Wright \rho \bm{b}\\ 69965d9f74SJames Wright \rho \bm{b}\cdot \bm{u} 70965d9f74SJames Wright\end{pmatrix}. 71965d9f74SJames Wright\end{aligned} 72965d9f74SJames Wright$$ (eq-ns-flux) 73965d9f74SJames Wright 74965d9f74SJames Wright### Finite Element Formulation (Spatial Discretization) 75965d9f74SJames Wright 76965d9f74SJames WrightLet the discrete solution be 77965d9f74SJames Wright 78965d9f74SJames Wright$$ 79965d9f74SJames Wright\bm{q}_N (\bm{x},t)^{(e)} = \sum_{k=1}^{P}\psi_k (\bm{x})\bm{q}_k^{(e)} 80965d9f74SJames Wright$$ 81965d9f74SJames Wright 82965d9f74SJames Wrightwith $P=p+1$ the number of nodes in the element $e$. 83965d9f74SJames WrightWe use tensor-product bases $\psi_{kji} = h_i(X_0)h_j(X_1)h_k(X_2)$. 84965d9f74SJames Wright 85965d9f74SJames WrightTo obtain a finite element discretization, we first multiply the strong form {eq}`eq-vector-ns` by a test function $\bm v \in H^1(\Omega)$ and integrate, 86965d9f74SJames Wright 87965d9f74SJames Wright$$ 88965d9f74SJames Wright\int_{\Omega} \bm v \cdot \left(\frac{\partial \bm{q}_N}{\partial t} + \nabla \cdot \bm{F}(\bm{q}_N) - \bm{S}(\bm{q}_N) \right) \,dV = 0 \, , \; \forall \bm v \in \mathcal{V}_p\,, 89965d9f74SJames Wright$$ 90965d9f74SJames Wright 91965d9f74SJames Wrightwith $\mathcal{V}_p = \{ \bm v(\bm x) \in H^{1}(\Omega_e) \,|\, \bm v(\bm x_e(\bm X)) \in P_p(\bm{I}), e=1,\ldots,N_e \}$ a mapped space of polynomials containing at least polynomials of degree $p$ (with or without the higher mixed terms that appear in tensor product spaces). 92965d9f74SJames Wright 93965d9f74SJames WrightIntegrating by parts on the divergence term, we arrive at the weak form, 94965d9f74SJames Wright 95965d9f74SJames Wright$$ 96965d9f74SJames Wright\begin{aligned} 97965d9f74SJames Wright\int_{\Omega} \bm v \cdot \left( \frac{\partial \bm{q}_N}{\partial t} - \bm{S}(\bm{q}_N) \right) \,dV 98965d9f74SJames Wright- \int_{\Omega} \nabla \bm v \!:\! \bm{F}(\bm{q}_N)\,dV & \\ 99965d9f74SJames Wright+ \int_{\partial \Omega} \bm v \cdot \bm{F}(\bm q_N) \cdot \widehat{\bm{n}} \,dS 100965d9f74SJames Wright &= 0 \, , \; \forall \bm v \in \mathcal{V}_p \,, 101965d9f74SJames Wright\end{aligned} 102965d9f74SJames Wright$$ (eq-weak-vector-ns) 103965d9f74SJames Wright 104965d9f74SJames Wrightwhere $\bm{F}(\bm q_N) \cdot \widehat{\bm{n}}$ is typically replaced with a boundary condition. 105965d9f74SJames Wright 106965d9f74SJames Wright:::{note} 107965d9f74SJames WrightThe notation $\nabla \bm v \!:\! \bm F$ represents contraction over both fields and spatial dimensions while a single dot represents contraction in just one, which should be clear from context, e.g., $\bm v \cdot \bm S$ contracts over fields while $\bm F \cdot \widehat{\bm n}$ contracts over spatial dimensions. 108965d9f74SJames Wright::: 109965d9f74SJames Wright 110965d9f74SJames Wright### Time Discretization 111*0fb1909eSJames Wright<!-- TODO: This should be reframed in terms of PETSc TS's F(t, u, \dot u) = G(t, u) rather than specifically about Explicit RK --> 112965d9f74SJames WrightFor the time discretization, we use two types of time stepping schemes through PETSc. 113965d9f74SJames Wright 114965d9f74SJames Wright 115*0fb1909eSJames Wright#### Explicit Time-Stepping Method 116*0fb1909eSJames Wright<!-- TODO: This should talk about the mass operator and the options associated with it (i.e. lumped mass matrix )--> 117965d9f74SJames WrightThe following explicit formulation is solved with the adaptive Runge-Kutta-Fehlberg (RKF4-5) method by default (any explicit time-stepping scheme available in PETSc can be chosen at runtime) 118965d9f74SJames Wright 119965d9f74SJames Wright$$ 120965d9f74SJames Wright\bm{q}_N^{n+1} = \bm{q}_N^n + \Delta t \sum_{i=1}^{s} b_i k_i \, , 121965d9f74SJames Wright$$ 122965d9f74SJames Wright 123965d9f74SJames Wrightwhere 124965d9f74SJames Wright 125965d9f74SJames Wright$$ 126965d9f74SJames Wright\begin{aligned} 127965d9f74SJames Wright k_1 &= f(t^n, \bm{q}_N^n)\\ 128965d9f74SJames Wright k_2 &= f(t^n + c_2 \Delta t, \bm{q}_N^n + \Delta t (a_{21} k_1))\\ 129965d9f74SJames Wright k_3 &= f(t^n + c_3 \Delta t, \bm{q}_N^n + \Delta t (a_{31} k_1 + a_{32} k_2))\\ 130965d9f74SJames Wright \vdots&\\ 131965d9f74SJames Wright k_i &= f\left(t^n + c_i \Delta t, \bm{q}_N^n + \Delta t \sum_{j=1}^s a_{ij} k_j \right)\\ 132965d9f74SJames Wright\end{aligned} 133965d9f74SJames Wright$$ 134965d9f74SJames Wright 135965d9f74SJames Wrightand with 136965d9f74SJames Wright 137965d9f74SJames Wright$$ 138965d9f74SJames Wrightf(t^n, \bm{q}_N^n) = - [\nabla \cdot \bm{F}(\bm{q}_N)]^n + [S(\bm{q}_N)]^n \, . 139965d9f74SJames Wright$$ 140965d9f74SJames Wright 141*0fb1909eSJames Wright#### Implicit Time-Stepping Method 142965d9f74SJames Wright 143965d9f74SJames WrightThis time stepping method which can be selected using the option `-implicit` is solved with Backward Differentiation Formula (BDF) method by default (similarly, any implicit time-stepping scheme available in PETSc can be chosen at runtime). 144965d9f74SJames WrightThe implicit formulation solves nonlinear systems for $\bm q_N$: 145965d9f74SJames Wright 146965d9f74SJames Wright$$ 147965d9f74SJames Wright\bm f(\bm q_N) \equiv \bm g(t^{n+1}, \bm{q}_N, \bm{\dot{q}}_N) = 0 \, , 148965d9f74SJames Wright$$ (eq-ts-implicit-ns) 149965d9f74SJames Wright 150965d9f74SJames Wrightwhere the time derivative $\bm{\dot q}_N$ is defined by 151965d9f74SJames Wright 152965d9f74SJames Wright$$ 153965d9f74SJames Wright\bm{\dot{q}}_N(\bm q_N) = \alpha \bm q_N + \bm z_N 154965d9f74SJames Wright$$ 155965d9f74SJames Wright 156965d9f74SJames Wrightin terms of $\bm z_N$ from prior state and $\alpha > 0$, both of which depend on the specific time integration scheme (backward difference formulas, generalized alpha, implicit Runge-Kutta, etc.). 157965d9f74SJames WrightEach nonlinear system {eq}`eq-ts-implicit-ns` will correspond to a weak form, as explained below. 158965d9f74SJames WrightIn determining how difficult a given problem is to solve, we consider the Jacobian of {eq}`eq-ts-implicit-ns`, 159965d9f74SJames Wright 160965d9f74SJames Wright$$ 161965d9f74SJames Wright\frac{\partial \bm f}{\partial \bm q_N} = \frac{\partial \bm g}{\partial \bm q_N} + \alpha \frac{\partial \bm g}{\partial \bm{\dot q}_N}. 162965d9f74SJames Wright$$ 163965d9f74SJames Wright 164965d9f74SJames WrightThe scalar "shift" $\alpha$ scales inversely with the time step $\Delta t$, so small time steps result in the Jacobian being dominated by the second term, which is a sort of "mass matrix", and typically well-conditioned independent of grid resolution with a simple preconditioner (such as Jacobi). 165965d9f74SJames WrightIn contrast, the first term dominates for large time steps, with a condition number that grows with the diameter of the domain and polynomial degree of the approximation space. 166965d9f74SJames WrightBoth terms are significant for time-accurate simulation and the setup costs of strong preconditioners must be balanced with the convergence rate of Krylov methods using weak preconditioners. 167965d9f74SJames Wright 168965d9f74SJames WrightMore details of PETSc's time stepping solvers can be found in the [TS User Guide](https://petsc.org/release/docs/manual/ts/). 169965d9f74SJames Wright 170965d9f74SJames Wright### Stabilization 171965d9f74SJames WrightWe solve {eq}`eq-weak-vector-ns` using a Galerkin discretization (default) or a stabilized method, as is necessary for most real-world flows. 172965d9f74SJames Wright 173965d9f74SJames WrightGalerkin methods produce oscillations for transport-dominated problems (any time the cell Péclet number is larger than 1), and those tend to blow up for nonlinear problems such as the Euler equations and (low-viscosity/poorly resolved) Navier-Stokes, in which case stabilization is necessary. 174965d9f74SJames WrightOur formulation follows {cite}`hughesetal2010`, which offers a comprehensive review of stabilization and shock-capturing methods for continuous finite element discretization of compressible flows. 175965d9f74SJames Wright 176965d9f74SJames Wright- **SUPG** (streamline-upwind/Petrov-Galerkin) 177965d9f74SJames Wright 178965d9f74SJames Wright In this method, the weighted residual of the strong form {eq}`eq-vector-ns` is added to the Galerkin formulation {eq}`eq-weak-vector-ns`. 179965d9f74SJames Wright The weak form for this method is given as 180965d9f74SJames Wright 181965d9f74SJames Wright $$ 182965d9f74SJames Wright \begin{aligned} 183965d9f74SJames Wright \int_{\Omega} \bm v \cdot \left( \frac{\partial \bm{q}_N}{\partial t} - \bm{S}(\bm{q}_N) \right) \,dV 184965d9f74SJames Wright - \int_{\Omega} \nabla \bm v \!:\! \bm{F}(\bm{q}_N)\,dV & \\ 185965d9f74SJames Wright + \int_{\partial \Omega} \bm v \cdot \bm{F}(\bm{q}_N) \cdot \widehat{\bm{n}} \,dS & \\ 186965d9f74SJames Wright + \int_{\Omega} \nabla\bm v \tcolon\left(\frac{\partial \bm F_{\text{adv}}}{\partial \bm q}\right) \bm\tau \left( \frac{\partial \bm{q}_N}{\partial t} \, + \, 187965d9f74SJames Wright \nabla \cdot \bm{F} \, (\bm{q}_N) - \bm{S}(\bm{q}_N) \right) \,dV &= 0 188965d9f74SJames Wright \, , \; \forall \bm v \in \mathcal{V}_p 189965d9f74SJames Wright \end{aligned} 190965d9f74SJames Wright $$ (eq-weak-vector-ns-supg) 191965d9f74SJames Wright 192965d9f74SJames Wright This stabilization technique can be selected using the option `-stab supg`. 193965d9f74SJames Wright 194965d9f74SJames Wright- **SU** (streamline-upwind) 195965d9f74SJames Wright 196965d9f74SJames Wright This method is a simplified version of *SUPG* {eq}`eq-weak-vector-ns-supg` which is developed for debugging/comparison purposes. The weak form for this method is 197965d9f74SJames Wright 198965d9f74SJames Wright $$ 199965d9f74SJames Wright \begin{aligned} 200965d9f74SJames Wright \int_{\Omega} \bm v \cdot \left( \frac{\partial \bm{q}_N}{\partial t} - \bm{S}(\bm{q}_N) \right) \,dV 201965d9f74SJames Wright - \int_{\Omega} \nabla \bm v \!:\! \bm{F}(\bm{q}_N)\,dV & \\ 202965d9f74SJames Wright + \int_{\partial \Omega} \bm v \cdot \bm{F}(\bm{q}_N) \cdot \widehat{\bm{n}} \,dS & \\ 203965d9f74SJames Wright + \int_{\Omega} \nabla\bm v \tcolon\left(\frac{\partial \bm F_{\text{adv}}}{\partial \bm q}\right) \bm\tau \nabla \cdot \bm{F} \, (\bm{q}_N) \,dV 204965d9f74SJames Wright & = 0 \, , \; \forall \bm v \in \mathcal{V}_p 205965d9f74SJames Wright \end{aligned} 206965d9f74SJames Wright $$ (eq-weak-vector-ns-su) 207965d9f74SJames Wright 208965d9f74SJames Wright This stabilization technique can be selected using the option `-stab su`. 209965d9f74SJames Wright 210965d9f74SJames WrightIn both {eq}`eq-weak-vector-ns-su` and {eq}`eq-weak-vector-ns-supg`, $\bm\tau \in \mathbb R^{5\times 5}$ (field indices) is an intrinsic time scale matrix. 211965d9f74SJames WrightThe SUPG technique and the operator $\frac{\partial \bm F_{\text{adv}}}{\partial \bm q}$ (rather than its transpose) can be explained via an ansatz for subgrid state fluctuations $\tilde{\bm q} = -\bm\tau \bm r$ where $\bm r$ is a strong form residual. 212965d9f74SJames WrightThe forward variational form can be readily expressed by differentiating $\bm F_{\text{adv}}$ of {eq}`eq-ns-flux` 213965d9f74SJames Wright 214965d9f74SJames Wright$$ 215965d9f74SJames Wright\begin{aligned} 216965d9f74SJames Wright\diff\bm F_{\text{adv}}(\diff\bm q; \bm q) &= \frac{\partial \bm F_{\text{adv}}}{\partial \bm q} \diff\bm q \\ 217965d9f74SJames Wright&= \begin{pmatrix} 218965d9f74SJames Wright\diff\bm U \\ 219965d9f74SJames Wright(\diff\bm U \otimes \bm U + \bm U \otimes \diff\bm U)/\rho - (\bm U \otimes \bm U)/\rho^2 \diff\rho + \diff P \bm I_3 \\ 220965d9f74SJames Wright(E + P)\diff\bm U/\rho + (\diff E + \diff P)\bm U/\rho - (E + P) \bm U/\rho^2 \diff\rho 221965d9f74SJames Wright\end{pmatrix}, 222965d9f74SJames Wright\end{aligned} 223965d9f74SJames Wright$$ 224965d9f74SJames Wright 225965d9f74SJames Wrightwhere $\diff P$ is defined by differentiating {eq}`eq-state`. 226965d9f74SJames Wright 227965d9f74SJames Wright:::{dropdown} Stabilization scale $\bm\tau$ 228965d9f74SJames WrightA velocity vector $\bm u$ can be pulled back to the reference element as $\bm u_{\bm X} = \nabla_{\bm x}\bm X \cdot \bm u$, with units of reference length (non-dimensional) per second. 229965d9f74SJames WrightTo build intuition, consider a boundary layer element of dimension $(1, \epsilon)$, for which $\nabla_{\bm x} \bm X = \bigl(\begin{smallmatrix} 2 & \\ & 2/\epsilon \end{smallmatrix}\bigr)$. 230965d9f74SJames WrightSo a small normal component of velocity will be amplified (by a factor of the aspect ratio $1/\epsilon$) in this transformation. 231965d9f74SJames WrightThe ratio $\lVert \bm u \rVert / \lVert \bm u_{\bm X} \rVert$ is a covariant measure of (half) the element length in the direction of the velocity. 232965d9f74SJames WrightA contravariant measure of element length in the direction of a unit vector $\hat{\bm n}$ is given by $\lVert \bigl(\nabla_{\bm X} \bm x\bigr)^T \hat{\bm n} \rVert$. 233965d9f74SJames WrightWhile $\nabla_{\bm X} \bm x$ is readily computable, its inverse $\nabla_{\bm x} \bm X$ is needed directly in finite element methods and thus more convenient for our use. 234965d9f74SJames WrightIf we consider a parallelogram, the covariant measure is larger than the contravariant measure for vectors pointing between acute corners and the opposite holds for vectors between oblique corners. 235965d9f74SJames Wright 236965d9f74SJames WrightThe cell Péclet number is classically defined by $\mathrm{Pe}_h = \lVert \bm u \rVert h / (2 \kappa)$ where $\kappa$ is the diffusivity (units of $m^2/s$). 237965d9f74SJames WrightThis can be generalized to arbitrary grids by defining the local Péclet number 238965d9f74SJames Wright 239965d9f74SJames Wright$$ 240965d9f74SJames Wright\mathrm{Pe} = \frac{\lVert \bm u \rVert^2}{\lVert \bm u_{\bm X} \rVert \kappa}. 241965d9f74SJames Wright$$ (eq-peclet) 242965d9f74SJames Wright 243965d9f74SJames WrightFor scalar advection-diffusion, the stabilization is a scalar 244965d9f74SJames Wright 245965d9f74SJames Wright$$ 246965d9f74SJames Wright\tau = \frac{\xi(\mathrm{Pe})}{\lVert \bm u_{\bm X} \rVert}, 247965d9f74SJames Wright$$ (eq-tau-advdiff) 248965d9f74SJames Wright 249965d9f74SJames Wrightwhere $\xi(\mathrm{Pe}) = \coth \mathrm{Pe} - 1/\mathrm{Pe}$ approaches 1 at large local Péclet number. 250965d9f74SJames WrightNote that $\tau$ has units of time and, in the transport-dominated limit, is proportional to element transit time in the direction of the propagating wave. 251965d9f74SJames WrightFor advection-diffusion, $\bm F(q) = \bm u q$, and thus the SU stabilization term is 252965d9f74SJames Wright 253965d9f74SJames Wright$$ 254965d9f74SJames Wright\nabla v \cdot \bm u \tau \bm u \cdot \nabla q = \nabla_{\bm X} v \cdot (\bm u_{\bm X} \tau \bm u_{\bm X}) \cdot \nabla_{\bm X} q . 255965d9f74SJames Wright$$ (eq-su-stabilize-advdiff) 256965d9f74SJames Wright 257965d9f74SJames Wrightwhere the term in parentheses is a rank-1 diffusivity tensor that has been pulled back to the reference element. 258965d9f74SJames WrightSee {cite}`hughesetal2010` equations 15-17 and 34-36 for further discussion of this formulation. 259965d9f74SJames Wright 2604ca5135bSJames Wright#### Navier-Stokes $\tau$ definition 2614ca5135bSJames Wright 262965d9f74SJames WrightFor the Navier-Stokes and Euler equations, {cite}`whiting2003hierarchical` defines a $5\times 5$ diagonal stabilization $\mathrm{diag}(\tau_c, \tau_m, \tau_m, \tau_m, \tau_E)$ consisting of 263965d9f74SJames Wright1. continuity stabilization $\tau_c$ 264965d9f74SJames Wright2. momentum stabilization $\tau_m$ 265965d9f74SJames Wright3. energy stabilization $\tau_E$ 266965d9f74SJames Wright 267965d9f74SJames WrightThe Navier-Stokes code in this example uses the following formulation for $\tau_c$, $\tau_m$, $\tau_E$: 268965d9f74SJames Wright 269965d9f74SJames Wright$$ 270965d9f74SJames Wright\begin{aligned} 271965d9f74SJames Wright 272965d9f74SJames Wright\tau_c &= \frac{C_c \mathcal{F}}{8\rho \trace(\bm g)} \\ 273965d9f74SJames Wright\tau_m &= \frac{C_m}{\mathcal{F}} \\ 274965d9f74SJames Wright\tau_E &= \frac{C_E}{\mathcal{F} c_v} \\ 275965d9f74SJames Wright\end{aligned} 276965d9f74SJames Wright$$ 277965d9f74SJames Wright 278965d9f74SJames Wright$$ 279965d9f74SJames Wright\mathcal{F} = \sqrt{ \rho^2 \left [ \left(\frac{2C_t}{\Delta t}\right)^2 280965d9f74SJames Wright+ \bm u \cdot (\bm u \cdot \bm g)\right] 281965d9f74SJames Wright+ C_v \mu^2 \Vert \bm g \Vert_F ^2} 282965d9f74SJames Wright$$ 283965d9f74SJames Wright 284965d9f74SJames Wrightwhere $\bm g = \nabla_{\bm x} \bm{X}^T \cdot \nabla_{\bm x} \bm{X}$ is the metric tensor and $\Vert \cdot \Vert_F$ is the Frobenius norm. 285965d9f74SJames WrightThis formulation is currently not available in the Euler code. 286965d9f74SJames Wright 2874ca5135bSJames Wright#### Advection-Diffusion $\tau$ definition 2884ca5135bSJames Wright 2894ca5135bSJames WrightFor Advection-Diffusion, we first examine a 1D definition given by: 290965d9f74SJames Wright 291965d9f74SJames Wright$$ 2924ca5135bSJames Wright \tau = \textrm{minreg}_2 \left\{\frac{\Delta t}{2 C_t},\ \frac{h}{aC_a}, \ \frac{h^2}{\kappa C_d} \right\} 293965d9f74SJames Wright$$ 294965d9f74SJames Wright 2954ca5135bSJames Wrightfor $C_t$, $C_a$, $C_d$ being some scaling coefficients, $h$ is the element length, and $\textrm{minreg}_n \{x_j\} = (\sum_j x_j^{-n})^{-1/n}$. 2964ca5135bSJames WrightTo make this definition compatible with higher dimensional domains, we use a similar system from the Navier-Stokes equations. 2974ca5135bSJames WrightThis results in the following definition: 2984ca5135bSJames Wright 2994ca5135bSJames Wright$$ 3004ca5135bSJames Wright\begin{aligned} 3014ca5135bSJames Wright \tau &= \textrm{minreg}_2 \left \{ \frac{\Delta t}{2 C_t}, \frac{1}{C_a \sqrt{\bm u \cdot (\bm u \cdot \bm g)}}, \frac{1}{C_d \kappa \Vert \bm g \Vert_F} \right\} \\ 3024ca5135bSJames Wright &= \left [ \left(\frac{2 C_t}{\Delta t}\right)^2 + C_a^2 \bm u \cdot (\bm u \cdot \bm g) + \left(C_d \kappa\right)^2 \Vert \bm g \Vert_F^2\right]^{-1/2} 3034ca5135bSJames Wright\end{aligned} 3044ca5135bSJames Wright$$ 3054ca5135bSJames Wright 3064ca5135bSJames WrightNote that $\bm g$ is scaled so that it is identity for a unit square, keeping this definition aligned with the traditional 1D definition, which uses the element length directly. 3074ca5135bSJames WrightThe scaling coefficients are set via `-Ctau_t`, `-Ctau_a`, and `-Ctau_d`, respectively. 3084ca5135bSJames Wright 3094ca5135bSJames Wright#### Euler $\tau$ definition 310965d9f74SJames WrightIn the Euler code, we follow {cite}`hughesetal2010` in defining a $3\times 3$ diagonal stabilization according to spatial criterion 2 (equation 27) as follows. 311965d9f74SJames Wright 312965d9f74SJames Wright$$ 313965d9f74SJames Wright\tau_{ii} = c_{\tau} \frac{2 \xi(\mathrm{Pe})}{(\lambda_{\max \text{abs}})_i \lVert \nabla_{x_i} \bm X \rVert} 314965d9f74SJames Wright$$ (eq-tau-conservative) 315965d9f74SJames Wright 316965d9f74SJames Wrightwhere $c_{\tau}$ is a multiplicative constant reported to be optimal at 0.5 for linear elements, $\hat{\bm n}_i$ is a unit vector in direction $i$, and $\nabla_{x_i} = \hat{\bm n}_i \cdot \nabla_{\bm x}$ is the derivative in direction $i$. 317965d9f74SJames WrightThe flux Jacobian $\frac{\partial \bm F_{\text{adv}}}{\partial \bm q} \cdot \hat{\bm n}_i$ in each direction $i$ is a $5\times 5$ matrix with spectral radius $(\lambda_{\max \text{abs}})_i$ equal to the fastest wave speed. 318965d9f74SJames WrightThe complete set of eigenvalues of the Euler flux Jacobian in direction $i$ are (e.g., {cite}`toro2009`) 319965d9f74SJames Wright 320965d9f74SJames Wright$$ 321965d9f74SJames Wright\Lambda_i = [u_i - a, u_i, u_i, u_i, u_i+a], 322965d9f74SJames Wright$$ (eq-eigval-advdiff) 323965d9f74SJames Wright 324965d9f74SJames Wrightwhere $u_i = \bm u \cdot \hat{\bm n}_i$ is the velocity component in direction $i$ and $a = \sqrt{\gamma P/\rho}$ is the sound speed for ideal gasses. 325965d9f74SJames WrightNote that the first and last eigenvalues represent nonlinear acoustic waves while the middle three are linearly degenerate, carrying a contact wave (temperature) and transverse components of momentum. 326965d9f74SJames WrightThe fastest wave speed in direction $i$ is thus 327965d9f74SJames Wright 328965d9f74SJames Wright$$ 329965d9f74SJames Wright\lambda_{\max \text{abs}} \Bigl( \frac{\partial \bm F_{\text{adv}}}{\partial \bm q} \cdot \hat{\bm n}_i \Bigr) = |u_i| + a 330965d9f74SJames Wright$$ (eq-wavespeed) 331965d9f74SJames Wright 332965d9f74SJames WrightNote that this wave speed is specific to ideal gases as $\gamma$ is an ideal gas parameter; other equations of state will yield a different acoustic wave speed. 333965d9f74SJames Wright 334965d9f74SJames Wright::: 335965d9f74SJames Wright 336965d9f74SJames WrightCurrently, this demo provides three types of problems/physical models that can be selected at run time via the option `-problem`. 337*0fb1909eSJames Wright{ref}`problem-advection`, the problem of the transport of energy in a uniform vector velocity field, {ref}`problem-euler-vortex`, the exact solution to the Euler equations, and the so called {ref}`example-density-current` problem. 338965d9f74SJames Wright 339cbdfeaf4SJames Wright### Divergence of Diffusive Flux Projection 340cbdfeaf4SJames Wright 341cbdfeaf4SJames WrightThe strong residual in the SUPG operator in {eq}`eq-weak-vector-ns-supg` and {eq}`eq-weak-vector-ns-su` features the term $\nabla \cdot \bm F_{\text{diff}}(\bm{q}_N)$, the divergence of the diffusive flux. 342cbdfeaf4SJames WrightThis term requires a second derivative to evaluate; first to evaluate $\bm \sigma$ and $\nabla T$ for $F_{\text{diff}}$, the second for the divergence of the flux. 343cbdfeaf4SJames WrightFor linear elements, the flux is constant within each element so the second derivative is zero, leading to accuracy issues. 344cbdfeaf4SJames WrightAdditionally, libCEED does not currently support calculating double-derivatives. 345cbdfeaf4SJames WrightTo circumvent these issues, we (optionally) perform a projection operation to get $\nabla \cdot \bm F_{\text{diff}}(\bm{q}_N)$ at quadrature points. 346cbdfeaf4SJames WrightThis was first proposed in {cite}`jansenDiffFluxProjection1999`. 347cbdfeaf4SJames WrightThere are two methods of achieving this implemented in HONEE, denoted as the direct and indirect methods. 348cbdfeaf4SJames Wright 349cbdfeaf4SJames Wright#### Indirect Projection 350cbdfeaf4SJames Wright 351cbdfeaf4SJames WrightIndirect projection is the method presented in {cite}`jansenDiffFluxProjection1999`. 352cbdfeaf4SJames WrightHere, $\bm F_{\text{diff}}$ is $L^2$ projected onto the finite element space and then the divergence is taken from that FEM function. 353cbdfeaf4SJames WrightFor linear basis functions, this leads to constant values of $\nabla \cdot \bm F_{\text{diff}}$ within each element. 354cbdfeaf4SJames Wright 355cbdfeaf4SJames WrightFor compressible Navier-Stokes, this requires projecting 12 scalars-per-node: 4 conserved scalars (mass conservation does not have a diffusive flux term) in 3 dimensional directions. 356cbdfeaf4SJames WrightThese 12 scalar finite element functions' derivatives are then evaluated at quadrature points and the divergence is calculated. 357cbdfeaf4SJames WrightThis method can be selected with `-div_diff_flux_projection_method indirect`. 358cbdfeaf4SJames Wright 359cbdfeaf4SJames Wright#### Direct Projection 360cbdfeaf4SJames WrightIn the direct projection method, we perform an $L^2$ projection of the divergence of the diffusive flux itself, $\nabla \cdot \bm F_{\text{diff}}(\bm{q}_N)$. 361cbdfeaf4SJames WrightThen $\nabla \cdot \bm F_{\text{diff}}$ itself is a function on the finite element space and can be interpolated onto quadrature points. 362cbdfeaf4SJames Wright 363cbdfeaf4SJames WrightTo do this, look at the RHS of the $L^2$ projection of $\nabla \cdot \bm F_{\text{diff}}(\bm{q}_N)$: 364cbdfeaf4SJames Wright 365cbdfeaf4SJames Wright$$ 366cbdfeaf4SJames Wright\int_{\Omega} \bm v \cdot \nabla \cdot \bm F_{\text{diff}}(\bm{q}_N) \,dV 367cbdfeaf4SJames Wright$$ 368cbdfeaf4SJames Wright 369cbdfeaf4SJames WrightAs noted, we can't calculate $\nabla \cdot \bm F_{\text{diff}}(\bm{q}_N)$ at quadrature points, so we apply integration-by-parts to achieve a calculable RHS: 370cbdfeaf4SJames Wright 371cbdfeaf4SJames Wright$$ 372cbdfeaf4SJames Wright\int_{\partial \Omega} \bm v \cdot \bm{F}_{\text{diff}}(\bm q_N) \cdot \widehat{\bm{n}} \,dS 373cbdfeaf4SJames Wright- \int_{\Omega} \nabla \bm v \!:\! \bm{F}_{\text{diff}}(\bm{q}_N)\,dV 374cbdfeaf4SJames Wright$$ 375cbdfeaf4SJames Wright 376cbdfeaf4SJames WrightThis form is what is used for calculating the RHS of the projection. 377cbdfeaf4SJames WrightAfter the projection, $\nabla \cdot \bm F_{\text{diff}}(\bm{q}_N)$ is interpolated directly to quadrature points without any extra calculations necessary. 378cbdfeaf4SJames WrightFor compressible Navier-Stokes, this means only projecting only 4 scalars-per-node. 379cbdfeaf4SJames Wright 380cbdfeaf4SJames WrightThe projection can be enabled using `-div_diff_flux_projection_method direct`. 381cbdfeaf4SJames Wright 382cbdfeaf4SJames Wright#### General Information 383cbdfeaf4SJames WrightThe $L^2$ projection in either method uses the standard mass matrix, which is rowsum lumped for performance by default. 384cbdfeaf4SJames WrightThe linear solve for the projection can be controlled via `-div_diff_flux_projection_ksp*` flags. 385cbdfeaf4SJames Wright 386965d9f74SJames Wright### Subgrid Stress Modeling 387965d9f74SJames Wright 388965d9f74SJames WrightWhen a fluid simulation is under-resolved (the smallest length scale resolved by the grid is much larger than the smallest physical scale, the [Kolmogorov length scale](https://en.wikipedia.org/wiki/Kolmogorov_microscales)), this is mathematically interpreted as filtering the Navier-Stokes equations. 389965d9f74SJames WrightThis is known as large-eddy simulation (LES), as only the "large" scales of turbulence are resolved. 390965d9f74SJames WrightThis filtering operation results in an extra stress-like term, $\bm{\tau}^r$, representing the effect of unresolved (or "subgrid" scale) structures in the flow. 391965d9f74SJames WrightDenoting the filtering operation by $\overline \cdot$, the LES governing equations are: 392965d9f74SJames Wright 393965d9f74SJames Wright$$ 394965d9f74SJames Wright\frac{\partial \bm{\overline q}}{\partial t} + \nabla \cdot \bm{\overline F}(\bm{\overline q}) -S(\bm{\overline q}) = 0 \, , 395965d9f74SJames Wright$$ (eq-vector-les) 396965d9f74SJames Wright 397965d9f74SJames Wrightwhere 398965d9f74SJames Wright 399965d9f74SJames Wright$$ 400965d9f74SJames Wright\bm{\overline F}(\bm{\overline q}) = 401965d9f74SJames Wright\bm{F} (\bm{\overline q}) + 402965d9f74SJames Wright\begin{pmatrix} 403965d9f74SJames Wright 0\\ 404965d9f74SJames Wright \bm{\tau}^r \\ 405965d9f74SJames Wright \bm{u} \cdot \bm{\tau}^r 406965d9f74SJames Wright\end{pmatrix} 407965d9f74SJames Wright$$ (eq-les-flux) 408965d9f74SJames Wright 409965d9f74SJames WrightMore details on deriving the above expression, filtering, and large eddy simulation can be found in {cite}`popeTurbulentFlows2000`. 410965d9f74SJames WrightTo close the problem, the subgrid stress must be defined. 411965d9f74SJames WrightFor implicit LES, the subgrid stress is set to zero and the numerical properties of the discretized system are assumed to account for the effect of subgrid scale structures on the filtered solution field. 412965d9f74SJames WrightFor explicit LES, it is defined by a subgrid stress model. 413965d9f74SJames Wright 414*0fb1909eSJames Wright:::{list-table} SGS Model Options 415*0fb1909eSJames Wright:header-rows: 1 416*0fb1909eSJames Wright 417*0fb1909eSJames Wright* - Option 418*0fb1909eSJames Wright - Description 419*0fb1909eSJames Wright - Default value 420*0fb1909eSJames Wright - Unit 421*0fb1909eSJames Wright 422*0fb1909eSJames Wright* - `-sgs_model_type` 423*0fb1909eSJames Wright - Type of subgrid stress model to use. Currently only `data_driven` is available 424*0fb1909eSJames Wright - `none` 425*0fb1909eSJames Wright - string 426*0fb1909eSJames Wright::: 427*0fb1909eSJames Wright 428965d9f74SJames Wright(sgs-dd-model)= 429*0fb1909eSJames Wright#### Data-Driven SGS Model 430965d9f74SJames Wright 431965d9f74SJames WrightThe data-driven SGS model implemented here uses a small neural network to compute the SGS term. 432965d9f74SJames WrightThe SGS tensor is calculated at nodes using an $L^2$ projection of the velocity gradient and grid anisotropy tensor, and then interpolated onto quadrature points. 433965d9f74SJames WrightMore details regarding the theoretical background of the model can be found in {cite}`prakashDDSGS2022` and {cite}`prakashDDSGSAnisotropic2022`. 434965d9f74SJames Wright 435965d9f74SJames WrightThe neural network itself consists of 1 hidden layer and 20 neurons, using Leaky ReLU as its activation function. 436965d9f74SJames WrightThe slope parameter for the Leaky ReLU function is set via `-sgs_model_dd_leakyrelu_alpha`. 437965d9f74SJames WrightThe outputs of the network are assumed to be normalized on a min-max scale, so they must be rescaled by the original min-max bounds. 438965d9f74SJames WrightParameters for the neural network are put into files in a directory found in `-sgs_model_dd_parameter_dir`. 439965d9f74SJames WrightThese files store the network weights (`w1.dat` and `w2.dat`), biases (`b1.dat` and `b2.dat`), and scaling parameters (`OutScaling.dat`). 440965d9f74SJames WrightThe first row of each files stores the number of columns and rows in each file. 441965d9f74SJames WrightNote that the weight coefficients are assumed to be in column-major order. 442965d9f74SJames WrightThis is done to keep consistent with legacy file compatibility. 443965d9f74SJames Wright 444965d9f74SJames Wright:::{note} 445*0fb1909eSJames WrightThe data-driven model parameters in the examples directory are not accurate and are for regression testing only. 446965d9f74SJames Wright::: 447965d9f74SJames Wright 448*0fb1909eSJames Wright##### Data-Driven Model Using External Libraries 449965d9f74SJames Wright 450965d9f74SJames WrightThere are two different modes for using the data-driven model: fused and sequential. 451965d9f74SJames Wright 452965d9f74SJames WrightIn fused mode, the input processing, model inference, and output handling were all done in a single CeedOperator. 453965d9f74SJames WrightFused mode is generally faster than the sequential mode, however fused mode requires that the model architecture be manually implemented into a libCEED QFunction. 454965d9f74SJames WrightTo use the fused mode, set `-sgs_model_dd_implementation fused`. 455965d9f74SJames Wright 456965d9f74SJames WrightSequential mode has separate function calls/CeedOperators for input creation, model inference, and output handling. 457965d9f74SJames WrightBy separating the three steps of the model evaluation, the sequential mode allows for functions calling external libraries to be used for the model inference step. 458965d9f74SJames WrightThe use of these external libraries allows us to leverage the flexibility of those external libraries in their model architectures. 459965d9f74SJames Wright 460965d9f74SJames WrightPyTorch is currently the only external library implemented with the sequential mode. 461965d9f74SJames WrightThis is enabled with `USE_TORCH=1` during the build process, which will use the PyTorch accessible from the build environment's Python interpreter. 462965d9f74SJames WrightTo specify the path to the PyTorch model file, use `-sgs_model_dd_torch_model_path`. 463965d9f74SJames WrightThe hardware used to run the model inference is determined automatically from the libCEED backend chosen, but can be overridden with `-sgs_model_dd_torch_model_device`. 464965d9f74SJames WrightNote that if you chose to run the inference on host while using a GPU libCEED backend (e.g. `/gpu/cuda`), then host-to-device transfers (and vice versa) will be done automatically. 465965d9f74SJames Wright 466965d9f74SJames WrightThe sequential mode is available using a libCEED based inference evaluation via `-sgs_model_dd_implementation sequential_ceed`, but it is only for verification purposes. 467965d9f74SJames Wright 468*0fb1909eSJames Wright:::{list-table} Data-driven SGS Model Options 469*0fb1909eSJames Wright:header-rows: 1 470965d9f74SJames Wright 471*0fb1909eSJames Wright* - Option 472*0fb1909eSJames Wright - Description 473*0fb1909eSJames Wright - Default value 474*0fb1909eSJames Wright - Unit 475965d9f74SJames Wright 476*0fb1909eSJames Wright* - `-sgs_model_dd_leakyrelu_alpha` 477*0fb1909eSJames Wright - Slope parameter for Leaky ReLU activation function. `0` corresponds to normal ReLU 478*0fb1909eSJames Wright - 0 479*0fb1909eSJames Wright - 480965d9f74SJames Wright 481*0fb1909eSJames Wright* - `-sgs_model_dd_parameter_dir` 482*0fb1909eSJames Wright - Path to directory with data-driven model parameters (weights, biases, etc.) 483*0fb1909eSJames Wright - `./dd_sgs_parameters` 484*0fb1909eSJames Wright - string 485965d9f74SJames Wright 486*0fb1909eSJames Wright* - `-sgs_model_dd_model_implementation` 487*0fb1909eSJames Wright - Which computational implementation to use for SGS DD model (`fused`, `sequential_ceed`, `sequential_torch`) 488*0fb1909eSJames Wright - `fused` 489*0fb1909eSJames Wright - string 490965d9f74SJames Wright 491*0fb1909eSJames Wright* - `-sgs_model_dd_torch_model_path` 492*0fb1909eSJames Wright - Path to the PyTorch `*.pt` file containing the DD inference model 493*0fb1909eSJames Wright - 494*0fb1909eSJames Wright - string 495965d9f74SJames Wright 496*0fb1909eSJames Wright* - `-sgs_model_dd_torch_model_device` 497*0fb1909eSJames Wright - What hardware to perform the model inference on (`cpu`, `cuda`, `hip`, `xpu`) 498*0fb1909eSJames Wright - Default matches the libCEED backend 499*0fb1909eSJames Wright - string 500965d9f74SJames Wright::: 501965d9f74SJames Wright 502965d9f74SJames Wright 503*0fb1909eSJames Wright## Boundary Conditions 504965d9f74SJames Wright 505965d9f74SJames Wright 506*0fb1909eSJames Wright(bc-stg)= 507*0fb1909eSJames Wright### Synthetic Turbulence Generation (STG) 508965d9f74SJames Wright 5097c69a229SJames WrightWe use the STG method described in {cite}`shurSTG2014`. 5107c69a229SJames WrightBelow follows a re-description of the formulation to match the present notation, and then a description of the implementation and usage. 511965d9f74SJames Wright 512*0fb1909eSJames Wright#### Equation Formulation 513965d9f74SJames Wright 514965d9f74SJames Wright$$ 515965d9f74SJames Wright\bm{u}(\bm{x}, t) = \bm{\overline{u}}(\bm{x}) + \bm{C}(\bm{x}) \cdot \bm{v}' 516965d9f74SJames Wright$$ 517965d9f74SJames Wright 518965d9f74SJames Wright$$ 519965d9f74SJames Wright\begin{aligned} 520965d9f74SJames Wright\bm{v}' &= 2 \sqrt{3/2} \sum^N_{n=1} \sqrt{q^n(\bm{x})} \bm{\sigma}^n \cos(\kappa^n \bm{d}^n \cdot \bm{\hat{x}}^n(\bm{x}, t) + \phi^n ) \\ 521965d9f74SJames Wright\bm{\hat{x}}^n &= \left[(x - U_0 t)\max(2\kappa_{\min}/\kappa^n, 0.1) , y, z \right]^T 522965d9f74SJames Wright\end{aligned} 523965d9f74SJames Wright$$ 524965d9f74SJames Wright 5257c69a229SJames WrightHere, we define the number of wavemodes $N$, set of random numbers $ \{\bm{\sigma}^n, \bm{d}^n, \phi^n\}_{n=1}^N$, the Cholesky decomposition of the Reynolds stress tensor $\bm{C}$ (such that $\bm{R} = \bm{CC}^T$ ), bulk velocity $U_0$, wavemode amplitude $q^n$, wavemode frequency $\kappa^n$, and $\kappa_{\min} = 0.5 \min_{\bm{x}} (\kappa_e)$. 526965d9f74SJames Wright 527965d9f74SJames Wright$$ 528965d9f74SJames Wright\kappa_e = \frac{2\pi}{\min(2d_w, 3.0 l_t)} 529965d9f74SJames Wright$$ 530965d9f74SJames Wright 5317c69a229SJames Wrightwhere $l_t$ is the turbulence length scale, and $d_w$ is the distance to the nearest wall. 532965d9f74SJames Wright 533965d9f74SJames Wright 534965d9f74SJames WrightThe set of wavemode frequencies is defined by a geometric distribution: 535965d9f74SJames Wright 536965d9f74SJames Wright$$ 537965d9f74SJames Wright\kappa^n = \kappa_{\min} (1 + \alpha)^{n-1} \ , \quad \forall n=1, 2, ... , N 538965d9f74SJames Wright$$ 539965d9f74SJames Wright 540965d9f74SJames WrightThe wavemode amplitudes $q^n$ are defined by a model energy spectrum $E(\kappa)$: 541965d9f74SJames Wright 542965d9f74SJames Wright$$ 543965d9f74SJames Wrightq^n = \frac{E(\kappa^n) \Delta \kappa^n}{\sum^N_{n=1} E(\kappa^n)\Delta \kappa^n} \ ,\quad \Delta \kappa^n = \kappa^n - \kappa^{n-1} 544965d9f74SJames Wright$$ 545965d9f74SJames Wright 546965d9f74SJames Wright$$ E(\kappa) = \frac{(\kappa/\kappa_e)^4}{[1 + 2.4(\kappa/\kappa_e)^2]^{17/6}} f_\eta f_{\mathrm{cut}} $$ 547965d9f74SJames Wright 548965d9f74SJames Wright$$ 549965d9f74SJames Wrightf_\eta = \exp \left[-(12\kappa /\kappa_\eta)^2 \right], \quad 550965d9f74SJames Wrightf_\mathrm{cut} = \exp \left( - \left [ \frac{4\max(\kappa-0.9\kappa_\mathrm{cut}, 0)}{\kappa_\mathrm{cut}} \right]^3 \right) 551965d9f74SJames Wright$$ 552965d9f74SJames Wright 5537c69a229SJames Wright$\kappa_\eta$ represents turbulent dissipation frequency, and is given as $2\pi (\nu^3/\varepsilon)^{-1/4}$ with $\nu$ the kinematic viscosity and $\varepsilon$ the turbulent dissipation. 5547c69a229SJames Wright$\kappa_\mathrm{cut}$ approximates the effective cutoff frequency of the mesh (viewing the mesh as a filter on solution over $\Omega$) and is given by: 555965d9f74SJames Wright 556965d9f74SJames Wright$$ 557965d9f74SJames Wright\kappa_\mathrm{cut} = \frac{2\pi}{ 2\min\{ [\max(h_y, h_z, 0.3h_{\max}) + 0.1 d_w], h_{\max} \} } 558965d9f74SJames Wright$$ 559965d9f74SJames Wright 560*0fb1909eSJames WrightThe enforcement of the boundary condition is identical to the blasius inflow; it weakly enforces velocity, with the option of weakly enforcing either density or temperature using the `-weakT` flag. 561965d9f74SJames Wright 562*0fb1909eSJames Wright#### Initialization Data Flow 563965d9f74SJames Wright 5647c69a229SJames WrightData flow for initializing function (which creates the context data struct) is given below: 565965d9f74SJames Wright```{mermaid} 566965d9f74SJames Wrightflowchart LR 567965d9f74SJames Wright subgraph STGInflow.dat 568965d9f74SJames Wright y 569965d9f74SJames Wright lt[l_t] 570965d9f74SJames Wright eps 571965d9f74SJames Wright Rij[R_ij] 572965d9f74SJames Wright ubar 573965d9f74SJames Wright end 574965d9f74SJames Wright 575965d9f74SJames Wright subgraph STGRand.dat 576965d9f74SJames Wright rand[RN Set]; 577965d9f74SJames Wright end 578965d9f74SJames Wright 579965d9f74SJames Wright subgraph User Input 580965d9f74SJames Wright u0[U0]; 581965d9f74SJames Wright end 582965d9f74SJames Wright 583965d9f74SJames Wright subgraph init[Create Context Function] 584965d9f74SJames Wright ke[k_e] 585965d9f74SJames Wright N; 586965d9f74SJames Wright end 587965d9f74SJames Wright lt --Calc-->ke --Calc-->kn 588965d9f74SJames Wright y --Calc-->ke 589965d9f74SJames Wright 590965d9f74SJames Wright subgraph context[Context Data] 591965d9f74SJames Wright yC[y] 592965d9f74SJames Wright randC[RN Set] 593965d9f74SJames Wright Cij[C_ij] 594965d9f74SJames Wright u0 --Copy--> u0C[U0] 595965d9f74SJames Wright kn[k^n]; 596965d9f74SJames Wright ubarC[ubar] 597965d9f74SJames Wright ltC[l_t] 598965d9f74SJames Wright epsC[eps] 599965d9f74SJames Wright end 600965d9f74SJames Wright ubar --Copy--> ubarC; 601965d9f74SJames Wright y --Copy--> yC; 602965d9f74SJames Wright lt --Copy--> ltC; 603965d9f74SJames Wright eps --Copy--> epsC; 604965d9f74SJames Wright 605965d9f74SJames Wright rand --Copy--> randC; 606965d9f74SJames Wright rand --> N --Calc--> kn; 607965d9f74SJames Wright Rij --Calc--> Cij[C_ij] 608965d9f74SJames Wright``` 609965d9f74SJames Wright 6107c69a229SJames WrightThis is done once at runtime. 6117c69a229SJames WrightThe spatially-varying terms are then evaluated at each quadrature point on-the-fly, either by interpolation (for $l_t$, $\varepsilon$, $C_{ij}$, and $\overline{\bm u}$) or by calculation (for $q^n$). 612965d9f74SJames Wright 613965d9f74SJames WrightThe `STGInflow.dat` file is a table of values at given distances from the wall. 6147c69a229SJames WrightThese values are then interpolated to a physical location (node or quadrature point). It has the following format: 615965d9f74SJames Wright``` 616965d9f74SJames Wright[Total number of locations] 14 617965d9f74SJames Wright[d_w] [u_1] [u_2] [u_3] [R_11] [R_22] [R_33] [R_12] [R_13] [R_23] [sclr_1] [sclr_2] [l_t] [eps] 618965d9f74SJames Wright``` 6197c69a229SJames Wrightwhere each `[ ]` item is a number in scientific notation (ie. `3.1415E0`), and `sclr_1` and `sclr_2` are reserved for turbulence modeling variables. 6207c69a229SJames WrightThey are not used in this example. 621965d9f74SJames Wright 6227c69a229SJames WrightThe `STGRand.dat` file is the table of the random number set, $\{\bm{\sigma}^n, \bm{d}^n, \phi^n\}_{n=1}^N$. 6237c69a229SJames WrightIt has the format: 624965d9f74SJames Wright``` 625965d9f74SJames Wright[Number of wavemodes] 7 626965d9f74SJames Wright[d_1] [d_2] [d_3] [phi] [sigma_1] [sigma_2] [sigma_3] 627965d9f74SJames Wright``` 628965d9f74SJames Wright 6297c69a229SJames WrightThe following table is presented to help clarify the dimensionality of the numerous terms in the STG formulation. 630965d9f74SJames Wright 631965d9f74SJames Wright| Math | Label | $f(\bm{x})$? | $f(n)$? | 632965d9f74SJames Wright| ----------------- | -------- | -------------- | --------- | 633965d9f74SJames Wright| $ \{\bm{\sigma}^n, \bm{d}^n, \phi^n\}_{n=1}^N$ | RN Set | No | Yes | 634965d9f74SJames Wright| $\bm{\overline{u}}$ | ubar | Yes | No | 635965d9f74SJames Wright| $U_0$ | U0 | No | No | 636965d9f74SJames Wright| $l_t$ | l_t | Yes | No | 637965d9f74SJames Wright| $\varepsilon$ | eps | Yes | No | 638965d9f74SJames Wright| $\bm{R}$ | R_ij | Yes | No | 639965d9f74SJames Wright| $\bm{C}$ | C_ij | Yes | No | 640965d9f74SJames Wright| $q^n$ | q^n | Yes | Yes | 641965d9f74SJames Wright| $\{\kappa^n\}_{n=1}^N$ | k^n | No | Yes | 642965d9f74SJames Wright| $h_i$ | h_i | Yes | No | 643965d9f74SJames Wright| $d_w$ | d_w | Yes | No | 644965d9f74SJames Wright 645*0fb1909eSJames Wright#### Runtime Options 646*0fb1909eSJames Wright 647*0fb1909eSJames WrightTo use the STG boundary condition, the `-bc_inflow` option should be set to the boundary faces that need the inflow (see {ref}`bc-flags`). 648*0fb1909eSJames WrightThe `-stg_use` flag is then used to enable/disable applying STG to those faces. 649*0fb1909eSJames Wright 650*0fb1909eSJames Wright:::{list-table} STG Runtime Options 651*0fb1909eSJames Wright:header-rows: 1 652*0fb1909eSJames Wright 653*0fb1909eSJames Wright* - Option 654*0fb1909eSJames Wright - Description 655*0fb1909eSJames Wright - Default value 656*0fb1909eSJames Wright - Unit 657*0fb1909eSJames Wright 658*0fb1909eSJames Wright* - `-stg_use` 659*0fb1909eSJames Wright - Enable STG for `bc_inflow` faces 660*0fb1909eSJames Wright - `false` 661*0fb1909eSJames Wright - 662*0fb1909eSJames Wright 663*0fb1909eSJames Wright* - `-stg_inflow_path` 664*0fb1909eSJames Wright - Path to the STGInflow file 665*0fb1909eSJames Wright - `./STGInflow.dat` 666*0fb1909eSJames Wright - 667*0fb1909eSJames Wright 668*0fb1909eSJames Wright* - `-stg_rand_path` 669*0fb1909eSJames Wright - Path to the STGRand file 670*0fb1909eSJames Wright - `./STGRand.dat` 671*0fb1909eSJames Wright - 672*0fb1909eSJames Wright 673*0fb1909eSJames Wright* - `-stg_alpha` 674*0fb1909eSJames Wright - Growth rate of the wavemodes 675*0fb1909eSJames Wright - `1.01` 676*0fb1909eSJames Wright - 677*0fb1909eSJames Wright 678*0fb1909eSJames Wright* - `-stg_u0` 679*0fb1909eSJames Wright - Convective velocity, $U_0$ 680*0fb1909eSJames Wright - `0.0` 681*0fb1909eSJames Wright - `m/s` 682*0fb1909eSJames Wright 683*0fb1909eSJames Wright* - `-stg_mean_only` 684*0fb1909eSJames Wright - Only impose the mean velocity (no fluctutations) 685*0fb1909eSJames Wright - `false` 686*0fb1909eSJames Wright - 687*0fb1909eSJames Wright 688*0fb1909eSJames Wright* - `-stg_strong` 689*0fb1909eSJames Wright - Strongly enforce the STG inflow boundary condition 690*0fb1909eSJames Wright - `false` 691*0fb1909eSJames Wright - 692*0fb1909eSJames Wright 693*0fb1909eSJames Wright* - `-stg_fluctuating_IC` 694*0fb1909eSJames Wright - "Extrude" the fluctuations through the domain as an initial condition 695*0fb1909eSJames Wright - `false` 696*0fb1909eSJames Wright - 697*0fb1909eSJames Wright 698*0fb1909eSJames Wright* - `-stg_dx` 699*0fb1909eSJames Wright - Set the element size in the x direction. Default is calculated for box meshes, assuming equispaced elements. 700*0fb1909eSJames Wright - 701*0fb1909eSJames Wright - `m` 702*0fb1909eSJames Wright 703*0fb1909eSJames Wright* - `-stg_h_scale_factor` 704*0fb1909eSJames Wright - Scale element size for cutoff frequency calculation 705*0fb1909eSJames Wright - $1/p$ 706*0fb1909eSJames Wright - 707*0fb1909eSJames Wright::: 708*0fb1909eSJames Wright 709*0fb1909eSJames Wright### Internal Damping Layer (IDL) 710*0fb1909eSJames Wright:::{note} 711*0fb1909eSJames WrightIDL is not a boundary condition, but it's primary application is for use with STG. 712*0fb1909eSJames Wright::: 713965d9f74SJames WrightThe STG inflow boundary condition creates large amplitude acoustic waves. 714965d9f74SJames WrightWe use an internal damping layer (IDL) to damp them out without disrupting the synthetic structures developing into natural turbulent structures. 715965d9f74SJames WrightThis implementation was inspired by {cite}`shurSTG2014`, but is implemented here as a ramped volumetric forcing term, similar to a sponge layer (see 8.4.2.4 in {cite}`colonius2023turbBC` for example). 716965d9f74SJames WrightIt takes the following form: 717965d9f74SJames Wright 718965d9f74SJames Wright$$ 719965d9f74SJames WrightS(\bm{q}) = -\sigma(\bm{x})\left.\frac{\partial \bm{q}}{\partial \bm{Y}}\right\rvert_{\bm{q}} \bm{Y}' 720965d9f74SJames Wright$$ 721965d9f74SJames Wright 722965d9f74SJames Wrightwhere $\bm{Y}' = [P - P_\mathrm{ref}, \bm{0}, 0]^T$, and $\sigma(\bm{x})$ is a linear ramp starting at `-idl_start` with length `-idl_length` and an amplitude of inverse `-idl_decay_rate`. 723965d9f74SJames WrightThe damping is defined in terms of a pressure-primitive anomaly $\bm Y'$ converted to conservative source using $\partial \bm{q}/\partial \bm{Y}\rvert_{\bm{q}}$, which is linearized about the current flow state. 724965d9f74SJames Wright$P_\mathrm{ref}$ has a default value equal to `-reference_pressure` flag, with an optional flag `-idl_pressure` to set it to a different value. 725965d9f74SJames Wright 726*0fb1909eSJames Wright:::{list-table} IDL Runtime Options 727*0fb1909eSJames Wright:header-rows: 1 728965d9f74SJames Wright 729*0fb1909eSJames Wright* - Option 730*0fb1909eSJames Wright - Description 731*0fb1909eSJames Wright - Default value 732*0fb1909eSJames Wright - Unit 733965d9f74SJames Wright 734*0fb1909eSJames Wright* - `-idl_decay_time` 735*0fb1909eSJames Wright - Characteristic timescale of the pressure deviance decay. The timestep is good starting point 736*0fb1909eSJames Wright - `-1` (disabled) 737*0fb1909eSJames Wright - `s` 738965d9f74SJames Wright 739*0fb1909eSJames Wright* - `-idl_start` 740*0fb1909eSJames Wright - Start of IDL in the x direction 741*0fb1909eSJames Wright - `0` 742*0fb1909eSJames Wright - `m` 743965d9f74SJames Wright 744*0fb1909eSJames Wright* - `-idl_length` 745*0fb1909eSJames Wright - Length of IDL in the positive x direction 746*0fb1909eSJames Wright - `0` 747*0fb1909eSJames Wright - `m` 748965d9f74SJames Wright 749*0fb1909eSJames Wright* - `-idl_pressure` 750*0fb1909eSJames Wright - Pressure used for IDL reference pressure 751*0fb1909eSJames Wright - `-reference_pressure` 752*0fb1909eSJames Wright - `Pa` 753*0fb1909eSJames Wright::: 754965d9f74SJames Wright 755965d9f74SJames Wright 756*0fb1909eSJames Wright<!-- TODO: Move the Riemann/freestream description here--> 757