Lines Matching refs:Y

163   CeedScalar u_left  = Dot3(left.Y.velocity, normal);  in RiemannFlux_HLL()
164 CeedScalar u_right = Dot3(right.Y.velocity, normal); in RiemannFlux_HLL()
198 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLL_fwd()
199 CeedScalar u_right = Dot3(right.Y.velocity, normal); in RiemannFlux_HLL_fwd()
200 CeedScalar du_left = Dot3(dleft.Y.velocity, normal); in RiemannFlux_HLL_fwd()
201 CeedScalar du_right = Dot3(dright.Y.velocity, normal); in RiemannFlux_HLL_fwd()
223 side.Y.velocity[0] + (s_star - u_side) * normal[0], in RiemannFlux_HLLC_Star()
224 side.Y.velocity[1] + (s_star - u_side) * normal[1], in RiemannFlux_HLLC_Star()
225 side.Y.velocity[2] + (s_star - u_side) * normal[2], in RiemannFlux_HLLC_Star()
228 + (s_star - u_side) * (s_star + side.Y.pressure / denom) in RiemannFlux_HLLC_Star()
246 side.Y.velocity[0] + (s_star - u_side) * normal[0], in RiemannFlux_HLLC_Star_fwd()
247 side.Y.velocity[1] + (s_star - u_side) * normal[1], in RiemannFlux_HLLC_Star_fwd()
248 side.Y.velocity[2] + (s_star - u_side) * normal[2], in RiemannFlux_HLLC_Star_fwd()
251 + (s_star - u_side) * (s_star + side.Y.pressure / denom) in RiemannFlux_HLLC_Star_fwd()
256 dside.Y.velocity[0] + (ds_star - du_side) * normal[0], in RiemannFlux_HLLC_Star_fwd()
257 dside.Y.velocity[1] + (ds_star - du_side) * normal[1], in RiemannFlux_HLLC_Star_fwd()
258 dside.Y.velocity[2] + (ds_star - du_side) * normal[2], in RiemannFlux_HLLC_Star_fwd()
261 + (ds_star - du_side) * (s_star + side.Y.pressure / denom) // in RiemannFlux_HLLC_Star_fwd()
262 …+ (s_star - u_side) * (ds_star + dside.Y.pressure / denom - side.Y.pressure / Square(denom) * dden… in RiemannFlux_HLLC_Star_fwd()
275 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLLC()
276 CeedScalar u_right = Dot3(right.Y.velocity, normal); in RiemannFlux_HLLC()
282 …CeedScalar numer = right.Y.pressure - left.Y.pressure + rhou_left * (s_left - u_left) - rhou_righ… in RiemannFlux_HLLC()
305 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLLC_fwd()
306 CeedScalar u_right = Dot3(right.Y.velocity, normal); in RiemannFlux_HLLC_fwd()
307 CeedScalar du_left = Dot3(dleft.Y.velocity, normal); in RiemannFlux_HLLC_fwd()
308 CeedScalar du_right = Dot3(dright.Y.velocity, normal); in RiemannFlux_HLLC_fwd()
316 CeedScalar numer = right.Y.pressure - left.Y.pressure // in RiemannFlux_HLLC_fwd()
319 CeedScalar dnumer = dright.Y.pressure - dleft.Y.pressure // in RiemannFlux_HLLC_fwd()