Home
last modified time | relevance | path

Searched refs:U (Results 1 – 16 of 16) sorted by relevance

/honee/qfunctions/
H A Driemann_solver.h53 UnpackState_U(left.U, U_left); in Flux_HLL()
54 UnpackState_U(right.U, U_right); in Flux_HLL()
72 UnpackState_U(left.U, U_l); in Flux_HLL_fwd()
73 UnpackState_U(right.U, U_r); in Flux_HLL_fwd()
78 UnpackState_U(dleft.U, dU_l); in Flux_HLL_fwd()
79 UnpackState_U(dright.U, dU_r); in Flux_HLL_fwd()
101 RoeWeights r = RoeSetup(left.U.density, right.U.density); in ComputeHLLSpeeds_Roe()
122 RoeWeights r = RoeSetup(left.U.density, right.U.density); in ComputeHLLSpeeds_Roe_fwd()
123 RoeWeights dr = RoeSetup_fwd(left.U.density, right.U.density, dleft.U.density, dright.U.density); in ComputeHLLSpeeds_Roe_fwd()
217 CeedScalar fact = side.U.density * (s_side - u_side) / (s_side - s_star); in RiemannFlux_HLLC_Star()
[all …]
H A Dnewtonian_state.h20 StateConservative U; member
24 CEED_QFUNCTION_HELPER void UnpackState_U(StateConservative s, CeedScalar U[5]) { in UnpackState_U()
25 U[0] = s.density; in UnpackState_U()
26 for (int i = 0; i < 3; i++) U[i + 1] = s.momentum[i]; in UnpackState_U()
27 U[4] = s.E_total; in UnpackState_U()
55 return e_internal + e_kinetic + s.Y.pressure / s.U.density; in TotalSpecificEnthalpy()
61 …turn de_internal + de_kinetic + ds.Y.pressure / s.U.density - s.Y.pressure / Square(s.U.density) *… in TotalSpecificEnthalpy_fwd()
64 …PER StatePrimitive StatePrimitiveFromConservative(NewtonianIGProperties gas, StateConservative U) { in StatePrimitiveFromConservative() argument
66 for (CeedInt i = 0; i < 3; i++) Y.velocity[i] = U.momentum[i] / U.density; in StatePrimitiveFromConservative()
68 CeedScalar e_total = U.E_total / U.density; in StatePrimitiveFromConservative()
[all …]
H A Dgaussianwave.h38 CeedScalar U[5], qi[5]; in IC_GaussianWave() local
42 …const CeedScalar e_kinetic = 0.5 * S_infty.U.density * Dot3(S_infty.Y.velocity, S_infty.Y.velocity… in IC_GaussianWave()
46 U[0] = S_infty.U.density * perturbation; in IC_GaussianWave()
47 U[1] = S_infty.Y.velocity[0] * U[0]; in IC_GaussianWave()
48 U[2] = S_infty.Y.velocity[1] * U[0]; in IC_GaussianWave()
49 U[3] = S_infty.Y.velocity[2] * U[0]; in IC_GaussianWave()
50 U[4] = S_infty.Y.pressure / (gamma - 1) * perturbation + e_kinetic; in IC_GaussianWave()
52 State initCond = StateFromU(gas, U); in IC_GaussianWave()
H A Dblasius.h110 const CeedScalar x0 = U_infty * S_infty.U.density / (mu * 25 / Square(delta0)); in ICsBlasius()
114 State s = BlasiusSolution(context, x, x0, x_inflow, S_infty.U.density, &t12); in ICsBlasius()
134 const CeedScalar rho_0 = S_infty.U.density; in Blasius_Inflow()
153 s.U.density = s_int.U.density; in Blasius_Inflow()
154 s.Y = StatePrimitiveFromConservative(gas, s.U); in Blasius_Inflow()
156 s.U.E_total = s_int.U.E_total; in Blasius_Inflow()
157 s.Y = StatePrimitiveFromConservative(gas, s.U); in Blasius_Inflow()
189 const CeedScalar rho_0 = S_infty.U.density; in Blasius_Inflow_Jacobian()
H A Dnewtonian.h69 UnpackState_U(s_dot.U, U_dot); in MassFunction_Newtonian()
93 CeedScalar U[5]; in InternalDampingLayer_Residual() local
94 UnpackState_U(damp_s.U, U); in InternalDampingLayer_Residual()
95 for (int i = 0; i < 5; i++) damp_residual[i] += U[i]; in InternalDampingLayer_Residual()
204 CeedScalar U[5], wdetJ, dXdx[3][3]; in RHSFunction_Newtonian() local
206 for (int j = 0; j < 5; j++) U[j] = q[j][i]; in RHSFunction_Newtonian()
208 State s = StateFromU(gas, U); in RHSFunction_Newtonian()
230 …const CeedScalar body_force[5] = {0, s.U.density * g[0], s.U.density * g[1], s.U.density * g[2], D… in RHSFunction_Newtonian()
295 …const CeedScalar body_force[5] = {0, s.U.density * g[0], s.U.density * g[1], s.U.density * g[2], D… in IFunction_Newtonian_Integrand()
297 UnpackState_U(s_dot.U, U_dot); in IFunction_Newtonian_Integrand()
[all …]
H A Dadvection.h222 CeedScalar U[5] = {0.}; in StatePhysicalGradientFromReference_ND() local
223 grad_s[2] = StateFromU(gas, U); in StatePhysicalGradientFromReference_ND()
289 const CeedScalar Grad_E[3] = {grad_s[0].U.E_total, grad_s[1].U.E_total, grad_s[2].U.E_total}; in IFunction_AdvectionGeneric()
304 CeedScalar strong_conv = s.U.E_total * div_u + DotN(s.Y.velocity, Grad_E, dim); in IFunction_AdvectionGeneric()
310 for (CeedInt j = 0; j < dim; j++) grad_v[j][4][i] = -wdetJ * s.U.E_total * uX[j]; in IFunction_AdvectionGeneric()
316 for (CeedInt i = 0; i < dim; i++) Fe[i] = -context->diffusion_coeff * grad_s[i].U.E_total; in IFunction_AdvectionGeneric()
424 const CeedScalar Grad_E[3] = {grad_s[0].U.E_total, grad_s[1].U.E_total, grad_s[2].U.E_total}; in RHSFunction_AdvectionGeneric()
437 CeedScalar strong_conv = s.U.E_total * div_u + DotN(s.Y.velocity, Grad_E, dim); in RHSFunction_AdvectionGeneric()
446 for (CeedInt j = 0; j < dim; j++) grad_v[j][4][i] = wdetJ * s.U.E_total * uX[j]; in RHSFunction_AdvectionGeneric()
453 for (CeedInt i = 0; i < dim; i++) Fe[i] = -context->diffusion_coeff * grad_s[i].U.E_total; in RHSFunction_AdvectionGeneric()
H A Dmonitor_totalkineticenergy.h25 v[0][i] = wdetJ * 0.5 * s.U.density * Dot3(s.Y.velocity, s.Y.velocity); in MonitorTotalKineticEnergy()
H A Dsgs_dd_training.h48 …ComputeSgsDDInputs(grad_velo_aniso, km_A_ij, delta, gas.mu / s.U.density, eigenvectors, inputs, &g… in ComputeSGS_DDAnisotropicTrainingDataNodal()
H A Dstabilization.h76 const CeedScalar rho = s.U.density; in Tau_diagPrim()
H A Dsgs_dd_model.h90 ComputeSgsDD_Fused(grad_velo_aniso, km_A_ij, delta, gas.mu / s.U.density, km_sgs, sgsdd_ctx); in ComputeSgsDDNodal_Fused()
134 …ComputeSgsDDInputs(grad_velo_aniso, km_A_ij, delta, gas.mu / s.U.density, eigenvectors, model_inpu… in ComputeSgsDDNodal_Sequential_Inputs()
H A Dchannel.h104 UnpackState_U(s_exact.U, q_exact); in Channel_Inflow()
H A Dstg_shur14.h406 const CeedScalar U[] = {rho, u[0], u[1], u[2], E}, kmstress[6] = {0.}; in StgShur14Inflow() local
407 StoredValuesPack(Q, i, 0, 5, U, jac_data_sur); in StgShur14Inflow()
/honee/qfunctions/spanstats/
H A Dturbulence.h56 v[TURB_MEAN_DENSITY][i] = wdetJ * s.U.density; in ChildStatsCollection()
62 v[TURB_MEAN_DENSITY_TEMPERATURE][i] = wdetJ * s.U.density * s.Y.temperature; in ChildStatsCollection()
63 …v[TURB_MEAN_DENSITY_TEMPERATURE_FLUX_X][i] = wdetJ * s.U.density * s.Y.temperature * s.Y.velocity[… in ChildStatsCollection()
64 …v[TURB_MEAN_DENSITY_TEMPERATURE_FLUX_Y][i] = wdetJ * s.U.density * s.Y.temperature * s.Y.velocity[… in ChildStatsCollection()
65 …v[TURB_MEAN_DENSITY_TEMPERATURE_FLUX_Z][i] = wdetJ * s.U.density * s.Y.temperature * s.Y.velocity[… in ChildStatsCollection()
66 v[TURB_MEAN_MOMENTUM_X][i] = wdetJ * s.U.momentum[0]; in ChildStatsCollection()
67 v[TURB_MEAN_MOMENTUM_Y][i] = wdetJ * s.U.momentum[1]; in ChildStatsCollection()
68 v[TURB_MEAN_MOMENTUM_Z][i] = wdetJ * s.U.momentum[2]; in ChildStatsCollection()
69 v[TURB_MEAN_MOMENTUMFLUX_XX][i] = wdetJ * s.U.momentum[0] * s.Y.velocity[0]; in ChildStatsCollection()
70 v[TURB_MEAN_MOMENTUMFLUX_YY][i] = wdetJ * s.U.momentum[1] * s.Y.velocity[1]; in ChildStatsCollection()
[all …]
/honee/doc/
H A Dtheory.md13 \frac{\partial \rho}{\partial t} + \nabla \cdot \bm{U} &= 0 \\
14 \frac{\partial \bm{U}}{\partial t} + \nabla \cdot \left( \frac{\bm{U} \otimes \bm{U}}{\rho} + P \bm…
15 \frac{\partial E}{\partial t} + \nabla \cdot \left( \frac{(E + P)\bm{U}}{\rho} -\bm{u} \cdot \bm{\s…
20 …q}`eq-ns`, $\rho$ represents the volume mass density, $U$ the momentum density (defined as $\bm{U}…
23 P = \left( {c_p}/{c_v} -1\right) \left( E - {\bm{U}\cdot\bm{U}}/{(2 \rho)} \right) \, ,
40 \bm{U} \equiv \rho \bm{ u }\\
56 \bm{U}\\
57 {(\bm{U} \otimes \bm{U})}/{\rho} + P \bm{I}_3 \\
58 {(E + P)\bm{U}}/{\rho}
218 \diff\bm U \\
[all …]
H A Dexamples.md13 \bm{U} &= \bm U_\infty \\
423 \frac{\partial \rho}{\partial t} + \nabla \cdot \bm{U} &= 0 \\
424 \frac{\partial \bm{U}}{\partial t} + \nabla \cdot \left( \frac{\bm{U} \otimes \bm{U}}{\rho} + P \bm…
425 \frac{\partial E}{\partial t} + \nabla \cdot \left( \frac{(E + P)\bm{U}}{\rho} \right) &= 0 \, , \\
/honee/
H A DDoxyfile98 # U+3044.