Lines Matching refs:u_left

97 …d ComputeHLLSpeeds_Roe(NewtonianIGProperties gas, State left, CeedScalar u_left, State right, Ceed…  in ComputeHLLSpeeds_Roe()  argument
105 CeedScalar u_roe = RoeAverage(r, u_left, u_right); in ComputeHLLSpeeds_Roe()
117 …s_Roe_fwd(NewtonianIGProperties gas, State left, State dleft, CeedScalar u_left, CeedScalar du_lef… in ComputeHLLSpeeds_Roe_fwd() argument
127 CeedScalar u_roe = RoeAverage(r, u_left, u_right); in ComputeHLLSpeeds_Roe_fwd()
128 CeedScalar du_roe = RoeAverage_fwd(r, dr, u_left, u_right, du_left, du_right); in ComputeHLLSpeeds_Roe_fwd()
163 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLL() local
167 ComputeHLLSpeeds_Roe(gas, left, u_left, right, u_right, &s_left, &s_right); in RiemannFlux_HLL()
198 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLL_fwd() local
204 …ComputeHLLSpeeds_Roe_fwd(gas, left, dleft, u_left, du_left, right, dright, u_right, du_right, &s_l… in RiemannFlux_HLL_fwd()
275 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLLC() local
278 ComputeHLLSpeeds_Roe(gas, left, u_left, right, u_right, &s_left, &s_right); in RiemannFlux_HLLC()
281 CeedScalar rhou_left = left.U.density * u_left, rhou_right = right.U.density * u_right; in RiemannFlux_HLLC()
282 …CeedScalar numer = right.Y.pressure - left.Y.pressure + rhou_left * (s_left - u_left) - rhou_righ… in RiemannFlux_HLLC()
283 CeedScalar denom = left.U.density * (s_left - u_left) - right.U.density * (s_right - u_right); in RiemannFlux_HLLC()
290 return RiemannFlux_HLLC_Star(gas, left, flux_left, normal, u_left, s_left, s_star); in RiemannFlux_HLLC()
305 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLLC_fwd() local
311 …ComputeHLLSpeeds_Roe_fwd(gas, left, dleft, u_left, du_left, right, dright, u_right, du_right, &s_l… in RiemannFlux_HLLC_fwd()
314 …CeedScalar rhou_left = left.U.density * u_left, drhou_left = left.U.density * du_left + dleft.U.de… in RiemannFlux_HLLC_fwd()
317 + rhou_left * (s_left - u_left) // in RiemannFlux_HLLC_fwd()
320 + rhou_left * (ds_left - du_left) + drhou_left * (s_left - u_left) // in RiemannFlux_HLLC_fwd()
322 CeedScalar denom = left.U.density * (s_left - u_left) - right.U.density * (s_right - u_right); in RiemannFlux_HLLC_fwd()
323 CeedScalar ddenom = left.U.density * (ds_left - du_left) + dleft.U.density * (s_left - u_left) // in RiemannFlux_HLLC_fwd()
332 …return RiemannFlux_HLLC_Star_fwd(gas, left, dleft, flux_left, dflux_left, normal, u_left, du_left,… in RiemannFlux_HLLC_fwd()