Lines Matching refs:left

29   CeedScalar left, right;  member
47 …oeAverage(RoeWeights r, CeedScalar q_left, CeedScalar q_right) { return r.left * q_left + r.right … in RoeAverage()
51 return q_right * dr.right + q_left * dr.left + r.right * dq_right + r.left * dq_left; in RoeAverage_fwd()
54 CEED_QFUNCTION_HELPER StateConservative Flux_HLL(State left, State right, StateConservative flux_le… in Flux_HLL() argument
57 UnpackState_U(left.U, U_left); in Flux_HLL()
72 CEED_QFUNCTION_HELPER StateConservative Flux_HLL_fwd(State left, State right, State dleft, State dr… in Flux_HLL_fwd() argument
76 UnpackState_U(left.U, U_l); in Flux_HLL_fwd()
101 CEED_QFUNCTION_HELPER void ComputeHLLSpeeds_Roe(NewtonianIdealGasContext gas, State left, CeedScala… in ComputeHLLSpeeds_Roe() argument
105 RoeWeights r = RoeSetup(left.U.density, right.U.density); in ComputeHLLSpeeds_Roe()
111 CeedScalar H_left = TotalSpecificEnthalpy(gas, left); in ComputeHLLSpeeds_Roe()
121 CEED_QFUNCTION_HELPER void ComputeHLLSpeeds_Roe_fwd(NewtonianIdealGasContext gas, State left, State… in ComputeHLLSpeeds_Roe_fwd() argument
126 RoeWeights r = RoeSetup(left.U.density, right.U.density); in ComputeHLLSpeeds_Roe_fwd()
127 RoeWeights dr = RoeSetup_fwd(left.U.density, right.U.density, dleft.U.density, dright.U.density); in ComputeHLLSpeeds_Roe_fwd()
134 CeedScalar H_left = TotalSpecificEnthalpy(gas, left); in ComputeHLLSpeeds_Roe_fwd()
136 CeedScalar dH_left = TotalSpecificEnthalpy_fwd(gas, left, dleft); in ComputeHLLSpeeds_Roe_fwd()
163 CEED_QFUNCTION_HELPER StateConservative RiemannFlux_HLL(NewtonianIdealGasContext gas, State left, S… in RiemannFlux_HLL() argument
164 StateConservative flux_left = FluxInviscidDotNormal(gas, left, normal); in RiemannFlux_HLL()
167 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLL()
171 ComputeHLLSpeeds_Roe(gas, left, u_left, right, u_right, &s_left, &s_right); in RiemannFlux_HLL()
179 return Flux_HLL(left, right, flux_left, flux_right, s_left, s_right); in RiemannFlux_HLL()
195 …StateConservative RiemannFlux_HLL_fwd(NewtonianIdealGasContext gas, State left, State dleft, State… in RiemannFlux_HLL_fwd() argument
197 StateConservative flux_left = FluxInviscidDotNormal(gas, left, normal); in RiemannFlux_HLL_fwd()
199 StateConservative dflux_left = FluxInviscidDotNormal_fwd(gas, left, dleft, normal); in RiemannFlux_HLL_fwd()
202 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLL_fwd()
208 …ComputeHLLSpeeds_Roe_fwd(gas, left, dleft, u_left, du_left, right, dright, u_right, du_right, &s_l… in RiemannFlux_HLL_fwd()
215 …return Flux_HLL_fwd(left, right, dleft, dright, flux_left, flux_right, dflux_left, dflux_right, s_… in RiemannFlux_HLL_fwd()
275 CEED_QFUNCTION_HELPER StateConservative RiemannFlux_HLLC(NewtonianIdealGasContext gas, State left, … in RiemannFlux_HLLC() argument
276 StateConservative flux_left = FluxInviscidDotNormal(gas, left, normal); in RiemannFlux_HLLC()
279 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLLC()
282 ComputeHLLSpeeds_Roe(gas, left, u_left, right, u_right, &s_left, &s_right); in RiemannFlux_HLLC()
285 CeedScalar rhou_left = left.U.density * u_left, rhou_right = right.U.density * u_right; in RiemannFlux_HLLC()
286 …CeedScalar numer = right.Y.pressure - left.Y.pressure + rhou_left * (s_left - u_left) - rhou_righ… in RiemannFlux_HLLC()
287 CeedScalar denom = left.U.density * (s_left - u_left) - right.U.density * (s_right - u_right); in RiemannFlux_HLLC()
294 return RiemannFlux_HLLC_Star(gas, left, flux_left, normal, u_left, s_left, s_star); in RiemannFlux_HLLC()
302 …tateConservative RiemannFlux_HLLC_fwd(NewtonianIdealGasContext gas, State left, State dleft, State… in RiemannFlux_HLLC_fwd() argument
304 StateConservative flux_left = FluxInviscidDotNormal(gas, left, normal); in RiemannFlux_HLLC_fwd()
306 StateConservative dflux_left = FluxInviscidDotNormal_fwd(gas, left, dleft, normal); in RiemannFlux_HLLC_fwd()
309 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLLC_fwd()
315 …ComputeHLLSpeeds_Roe_fwd(gas, left, dleft, u_left, du_left, right, dright, u_right, du_right, &s_l… in RiemannFlux_HLLC_fwd()
318 …CeedScalar rhou_left = left.U.density * u_left, drhou_left = left.U.density * du_left + dleft.U.de… in RiemannFlux_HLLC_fwd()
320 CeedScalar numer = right.Y.pressure - left.Y.pressure // in RiemannFlux_HLLC_fwd()
326 CeedScalar denom = left.U.density * (s_left - u_left) - right.U.density * (s_right - u_right); in RiemannFlux_HLLC_fwd()
327 CeedScalar ddenom = left.U.density * (ds_left - du_left) + dleft.U.density * (s_left - u_left) // in RiemannFlux_HLLC_fwd()
336 …return RiemannFlux_HLLC_Star_fwd(gas, left, dleft, flux_left, dflux_left, normal, u_left, du_left,… in RiemannFlux_HLLC_fwd()