Lines Matching refs:normal
163 …iemannFlux_HLL(NewtonianIdealGasContext gas, State left, State right, const CeedScalar normal[3]) { in RiemannFlux_HLL()
164 StateConservative flux_left = FluxInviscidDotNormal(gas, left, normal); in RiemannFlux_HLL()
165 StateConservative flux_right = FluxInviscidDotNormal(gas, right, normal); in RiemannFlux_HLL()
167 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLL()
168 CeedScalar u_right = Dot3(right.Y.velocity, normal); in RiemannFlux_HLL()
196 const CeedScalar normal[3]) { in RiemannFlux_HLL_fwd()
197 StateConservative flux_left = FluxInviscidDotNormal(gas, left, normal); in RiemannFlux_HLL_fwd()
198 StateConservative flux_right = FluxInviscidDotNormal(gas, right, normal); in RiemannFlux_HLL_fwd()
199 StateConservative dflux_left = FluxInviscidDotNormal_fwd(gas, left, dleft, normal); in RiemannFlux_HLL_fwd()
200 StateConservative dflux_right = FluxInviscidDotNormal_fwd(gas, right, dright, normal); in RiemannFlux_HLL_fwd()
202 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLL_fwd()
203 CeedScalar u_right = Dot3(right.Y.velocity, normal); in RiemannFlux_HLL_fwd()
204 CeedScalar du_left = Dot3(dleft.Y.velocity, normal); in RiemannFlux_HLL_fwd()
205 CeedScalar du_right = Dot3(dright.Y.velocity, normal); in RiemannFlux_HLL_fwd()
220 … const CeedScalar normal[3], CeedScalar u_side, CeedScalar s_side, CeedScalar s_star) { in RiemannFlux_HLLC_Star()
227 side.Y.velocity[0] + (s_star - u_side) * normal[0], in RiemannFlux_HLLC_Star()
228 side.Y.velocity[1] + (s_star - u_side) * normal[1], in RiemannFlux_HLLC_Star()
229 side.Y.velocity[2] + (s_star - u_side) * normal[2], in RiemannFlux_HLLC_Star()
238 … StateConservative dF_side, const CeedScalar normal[3], CeedScalar u_side, in RiemannFlux_HLLC_Star_fwd()
250 side.Y.velocity[0] + (s_star - u_side) * normal[0], in RiemannFlux_HLLC_Star_fwd()
251 side.Y.velocity[1] + (s_star - u_side) * normal[1], in RiemannFlux_HLLC_Star_fwd()
252 side.Y.velocity[2] + (s_star - u_side) * normal[2], in RiemannFlux_HLLC_Star_fwd()
260 dside.Y.velocity[0] + (ds_star - du_side) * normal[0], in RiemannFlux_HLLC_Star_fwd()
261 dside.Y.velocity[1] + (ds_star - du_side) * normal[1], in RiemannFlux_HLLC_Star_fwd()
262 dside.Y.velocity[2] + (ds_star - du_side) * normal[2], in RiemannFlux_HLLC_Star_fwd()
275 …emannFlux_HLLC(NewtonianIdealGasContext gas, State left, State right, const CeedScalar normal[3]) { in RiemannFlux_HLLC()
276 StateConservative flux_left = FluxInviscidDotNormal(gas, left, normal); in RiemannFlux_HLLC()
277 StateConservative flux_right = FluxInviscidDotNormal(gas, right, normal); in RiemannFlux_HLLC()
279 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLLC()
280 CeedScalar u_right = Dot3(right.Y.velocity, normal); in RiemannFlux_HLLC()
294 return RiemannFlux_HLLC_Star(gas, left, flux_left, normal, u_left, s_left, s_star); in RiemannFlux_HLLC()
296 return RiemannFlux_HLLC_Star(gas, right, flux_right, normal, u_right, s_right, s_star); in RiemannFlux_HLLC()
303 const CeedScalar normal[3]) { in RiemannFlux_HLLC_fwd()
304 StateConservative flux_left = FluxInviscidDotNormal(gas, left, normal); in RiemannFlux_HLLC_fwd()
305 StateConservative flux_right = FluxInviscidDotNormal(gas, right, normal); in RiemannFlux_HLLC_fwd()
306 StateConservative dflux_left = FluxInviscidDotNormal_fwd(gas, left, dleft, normal); in RiemannFlux_HLLC_fwd()
307 StateConservative dflux_right = FluxInviscidDotNormal_fwd(gas, right, dright, normal); in RiemannFlux_HLLC_fwd()
309 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLLC_fwd()
310 CeedScalar u_right = Dot3(right.Y.velocity, normal); in RiemannFlux_HLLC_fwd()
311 CeedScalar du_left = Dot3(dleft.Y.velocity, normal); in RiemannFlux_HLLC_fwd()
312 CeedScalar du_right = Dot3(dright.Y.velocity, normal); 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()
338 …return RiemannFlux_HLLC_Star_fwd(gas, right, dright, flux_right, dflux_right, normal, u_right, du_… in RiemannFlux_HLLC_fwd()