Searched refs:dY (Results 1 – 3 of 3) sorted by relevance
| /honee/qfunctions/ |
| H A D | stabilization.h | 13 …UNCTION_HELPER void dYFromTau(const CeedScalar Y[5], const CeedScalar Tau_d[3], CeedScalar dY[5]) { in dYFromTau() 14 dY[0] = Tau_d[0] * Y[0]; in dYFromTau() 15 dY[1] = Tau_d[1] * Y[1]; in dYFromTau() 16 dY[2] = Tau_d[1] * Y[2]; in dYFromTau() 17 dY[3] = Tau_d[1] * Y[3]; in dYFromTau() 18 dY[4] = Tau_d[2] * Y[4]; in dYFromTau() 26 CeedScalar dY[5]; in StabilizationMatrix() local 30 dYFromTau(strong_residual, Tau_d, dY); in StabilizationMatrix() 31 State ds = StateFromY_fwd(gas, s, dY); in StabilizationMatrix()
|
| H A D | newtonian_state.h | 76 StatePrimitive dY; in StatePrimitiveFromConservative_fwd() local 78 dY.velocity[i] = (dU.momentum[i] - s.Y.velocity[i] * dU.density) / s.U.density; in StatePrimitiveFromConservative_fwd() 81 CeedScalar de_kinetic = Dot3(dY.velocity, s.Y.velocity); in StatePrimitiveFromConservative_fwd() 86 dY.temperature = de_internal / gas.cv; in StatePrimitiveFromConservative_fwd() 87 …dY.pressure = (HeatCapacityRatio(gas) - 1) * (dU.density * e_internal + s.U.density * d… in StatePrimitiveFromConservative_fwd() 88 return dY; in StatePrimitiveFromConservative_fwd() 105 …StateEntropy StateEntropyFromPrimitive_fwd(NewtonianIGProperties gas, State s, StatePrimitive dY) { in StateEntropyFromPrimitive_fwd() argument 108 …CeedScalar drho = (dY.pressure * s.Y.temperature - s.Y.pressure * dY.temperature) / (GasCon… in StateEntropyFromPrimitive_fwd() 111 const CeedScalar de_kinetic = Dot3(dY.velocity, s.Y.velocity); in StateEntropyFromPrimitive_fwd() 113 …const CeedScalar drho_div_p = (drho * s.Y.pressure - s.U.density * dY.pressure) / Square(s.Y.press… in StateEntropyFromPrimitive_fwd() [all …]
|
| /honee/problems/ |
| H A D | bc_freestream.c | 432 CeedScalar dY[5] = {0}; in TestTotalSpecificEnthalpy_fwd() local 434 dY[i] = Y0[i]; in TestTotalSpecificEnthalpy_fwd() 435 State dstate0 = StateFromY_fwd(gas, state0, dY); in TestTotalSpecificEnthalpy_fwd()
|