Lines Matching refs:normal

159 …e RiemannFlux_HLL(NewtonianIGProperties gas, State left, State right, const CeedScalar normal[3]) {  in RiemannFlux_HLL()
160 StateConservative flux_left = FluxInviscidDotNormal(gas, left, normal); in RiemannFlux_HLL()
161 StateConservative flux_right = FluxInviscidDotNormal(gas, right, normal); in RiemannFlux_HLL()
163 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLL()
164 CeedScalar u_right = Dot3(right.Y.velocity, normal); in RiemannFlux_HLL()
192 const CeedScalar normal[3]) { in RiemannFlux_HLL_fwd()
193 StateConservative flux_left = FluxInviscidDotNormal(gas, left, normal); in RiemannFlux_HLL_fwd()
194 StateConservative flux_right = FluxInviscidDotNormal(gas, right, normal); in RiemannFlux_HLL_fwd()
195 StateConservative dflux_left = FluxInviscidDotNormal_fwd(gas, left, dleft, normal); in RiemannFlux_HLL_fwd()
196 StateConservative dflux_right = FluxInviscidDotNormal_fwd(gas, right, dright, normal); in RiemannFlux_HLL_fwd()
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()
216 … const CeedScalar normal[3], CeedScalar u_side, CeedScalar s_side, CeedScalar s_star) { in RiemannFlux_HLLC_Star()
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()
234 … StateConservative dF_side, const CeedScalar normal[3], CeedScalar u_side, in RiemannFlux_HLLC_Star_fwd()
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()
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()
271 … RiemannFlux_HLLC(NewtonianIGProperties gas, State left, State right, const CeedScalar normal[3]) { in RiemannFlux_HLLC()
272 StateConservative flux_left = FluxInviscidDotNormal(gas, left, normal); in RiemannFlux_HLLC()
273 StateConservative flux_right = FluxInviscidDotNormal(gas, right, normal); in RiemannFlux_HLLC()
275 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLLC()
276 CeedScalar u_right = Dot3(right.Y.velocity, normal); in RiemannFlux_HLLC()
290 return RiemannFlux_HLLC_Star(gas, left, flux_left, normal, u_left, s_left, s_star); in RiemannFlux_HLLC()
292 return RiemannFlux_HLLC_Star(gas, right, flux_right, normal, u_right, s_right, s_star); in RiemannFlux_HLLC()
299 const CeedScalar normal[3]) { in RiemannFlux_HLLC_fwd()
300 StateConservative flux_left = FluxInviscidDotNormal(gas, left, normal); in RiemannFlux_HLLC_fwd()
301 StateConservative flux_right = FluxInviscidDotNormal(gas, right, normal); in RiemannFlux_HLLC_fwd()
302 StateConservative dflux_left = FluxInviscidDotNormal_fwd(gas, left, dleft, normal); in RiemannFlux_HLLC_fwd()
303 StateConservative dflux_right = FluxInviscidDotNormal_fwd(gas, right, dright, normal); in RiemannFlux_HLLC_fwd()
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()
332 …return RiemannFlux_HLLC_Star_fwd(gas, left, dleft, flux_left, dflux_left, normal, u_left, du_left,… in RiemannFlux_HLLC_fwd()
334 …return RiemannFlux_HLLC_Star_fwd(gas, right, dright, flux_right, dflux_right, normal, u_right, du_… in RiemannFlux_HLLC_fwd()