Searched refs:R (Results 1 – 9 of 9) sorted by relevance
| /honee/qfunctions/ |
| H A D | taylorgreen.h | 30 CeedScalar R = GasConstant(gas); in ICsTaylorGreen() local 33 const CeedScalar density0 = reference.pressure / (reference.temperature * R); in ICsTaylorGreen()
|
| H A D | newtonian_state.h | 264 StateConservative R = {0}; in StateConservativeMult() local 266 R.density += a[i] * X[i].density; in StateConservativeMult() 267 for (int j = 0; j < 3; j++) R.momentum[j] += a[i] * X[i].momentum[j]; in StateConservativeMult() 268 R.E_total += a[i] * X[i].E_total; in StateConservativeMult() 270 return R; in StateConservativeMult() 275 StateConservative R; in StateConservativeAXPBYPCZ() local 276 R.density = a * X.density + b * Y.density + c * Z.density; in StateConservativeAXPBYPCZ() 277 …for (int i = 0; i < 3; i++) R.momentum[i] = a * X.momentum[i] + b * Y.momentum[i] + c * Z.momentum… in StateConservativeAXPBYPCZ() 278 R.E_total = a * X.E_total + b * Y.E_total + c * Z.E_total; in StateConservativeAXPBYPCZ() 279 return R; in StateConservativeAXPBYPCZ()
|
| H A D | eulervortex.h | 68 const CeedScalar R = 1.; in Exact_Euler() local 131 rho = P / (R * T); in Exact_Euler() 144 rho = P / (R * T); in Exact_Euler() 158 rho = P / (R * T); in Exact_Euler() 528 const CeedScalar R = 1.; in TravelingVortex_Inflow() local 555 const CeedScalar rho_inlet = P_inlet / (R * T_inlet); in TravelingVortex_Inflow()
|
| /honee/doc/ |
| H A D | references.bib | 25 author = {Hughes, Thomas J R and Scovazzi, Guglielmo and Tezduyar, Tayfun E}, 65 …author = {Straka, Jerry M and Wilhelmson, Robert B and Wicker, Louis J and Anderson, John R and… 148 …author = {Shur, Michael L. and Spalart, Philippe R. and Strelets, Michael K. and Travin, Andrey K… 239 author = {Bull, Jonathan R. and Jameson, Antony}, 250 author = {Van Driest, E. R.},
|
| H A D | theory.md | 210 In both {eq}`eq-weak-vector-ns-su` and {eq}`eq-weak-vector-ns-supg`, $\bm\tau \in \mathbb R^{5\time… 525 …olesky decomposition of the Reynolds stress tensor $\bm{C}$ (such that $\bm{R} = \bm{CC}^T$ ), bul… 638 | $\bm{R}$ | R_ij | Yes | No |
|
| H A D | examples.md | 389 \rho &= \frac{p}{R T_0} \\ 429 …for this problem is $\rho=1$, $P=1$, $T=P/\rho= 1$ (Specific Gas Constant, $R$, is 1), and $\bm{u}…
|
| H A D | auxiliary.md | 178 …overline \phi$ the filtered scalar solution field, $\bm{\Delta} \in \mathbb{R}^{3 \times 3}$ a sym…
|
| /honee/src/ |
| H A D | setupts.c | 34 Vec Q_loc = honee->Q_loc, R; in RHS_NS() local 46 PetscCall(DMGetNamedGlobalVector(honee->dm, "RHS Residual", &R)); in RHS_NS() 49 PetscCall(ApplyCeedOperatorLocalToGlobal(Q_loc, R, honee->op_rhs_ctx)); in RHS_NS() 62 if (ispreonly && isjacobi) PetscCall(PCApply(pc, R, G)); in RHS_NS() 63 else PetscCall(KSPSolve(honee->mass_ksp, R, G)); in RHS_NS() 67 PetscCall(DMRestoreNamedGlobalVector(honee->dm, "RHS Residual", &R)); in RHS_NS()
|
| /honee/problems/ |
| H A D | blasius.c | 17 PetscErrorCode CompressibleBlasiusResidual(SNES snes, Vec X, Vec R, void *ctx) { in CompressibleBlasiusResidual() argument 31 PetscCall(VecGetArray(R, &r)); in CompressibleBlasiusResidual() 69 PetscCall(VecRestoreArray(R, &r)); in CompressibleBlasiusResidual()
|