Home
last modified time | relevance | path

Searched refs:StateConservative (Results 1 – 9 of 9) sorted by relevance

/libCEED/examples/fluids/qfunctions/
H A Driemann_solver.h54 CEED_QFUNCTION_HELPER StateConservative Flux_HLL(State left, State right, StateConservative flux_le… in Flux_HLL()
64 StateConservative F = { in Flux_HLL()
72 CEED_QFUNCTION_HELPER StateConservative Flux_HLL_fwd(State left, State right, State dleft, State dr… in Flux_HLL_fwd()
73StateConservative flux_right, StateConservative dflux_left, StateConservative dflux_right, in Flux_HLL_fwd()
93 StateConservative dF = { in Flux_HLL_fwd()
163 CEED_QFUNCTION_HELPER StateConservative RiemannFlux_HLL(NewtonianIdealGasContext gas, State left, S… 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()
195 CEED_QFUNCTION_HELPER StateConservative RiemannFlux_HLL_fwd(NewtonianIdealGasContext gas, State lef… in RiemannFlux_HLL_fwd()
197 StateConservative flux_left = FluxInviscidDotNormal(gas, left, normal); in RiemannFlux_HLL_fwd()
[all …]
H A Dnewtonian_state.h24 } StateConservative; typedef
27 StateConservative U;
31 CEED_QFUNCTION_HELPER void UnpackState_U(StateConservative s, CeedScalar U[5]) { in UnpackState_U()
71 … StatePrimitive StatePrimitiveFromConservative(NewtonianIdealGasContext gas, StateConservative U) { in StatePrimitiveFromConservative()
82 …e StatePrimitiveFromConservative_fwd(NewtonianIdealGasContext gas, State s, StateConservative dU) { in StatePrimitiveFromConservative_fwd()
155 CEED_QFUNCTION_HELPER StateConservative StateConservativeFromPrimitive(NewtonianIdealGasContext gas… in StateConservativeFromPrimitive()
156 StateConservative U; in StateConservativeFromPrimitive()
166 CEED_QFUNCTION_HELPER StateConservative StateConservativeFromPrimitive_fwd(NewtonianIdealGasContext… in StateConservativeFromPrimitive_fwd()
167 StateConservative dU; in StateConservativeFromPrimitive_fwd()
182 …LPER StateEntropy StateEntropyFromConservative(NewtonianIdealGasContext gas, StateConservative U) { in StateEntropyFromConservative()
[all …]
H A Dbc_freestream.h41 StateConservative flux; in Freestream()
111 StateConservative dflux; in Freestream_Jacobian()
214 StateConservative F_inviscid_normal = RiemannFlux_HLLC(gas, s_int, s_ext, normal); in RiemannOutflow()
296StateConservative dF_inviscid_normal = RiemannFlux_HLLC_fwd(gas, s_int, ds_int, s_ext, ds_ext, nor… in RiemannOutflow_Jacobian()
354 StateConservative F_inviscid[3]; in PressureOutflow()
423 StateConservative dF_inviscid[3]; in PressureOutflow_Jacobian()
H A Dbc_slip.h36 StateConservative flux = RiemannFlux_HLLC(newt_ctx, s, s_reflect, norm); in Slip()
95 StateConservative dflux = RiemannFlux_HLLC_fwd(newt_ctx, s, ds, s_reflect, ds_reflect, norm); in Slip_Jacobian()
H A Dnewtonian.h178 StateConservative F_inviscid[3]; in RHSFunction_Newtonian()
249 StateConservative F_inviscid[3]; in IFunction_Newtonian()
344 StateConservative dF_inviscid[3]; in IJacobian_Newtonian()
422 StateConservative F_inviscid[3]; in BoundaryIntegral()
487 StateConservative dF_inviscid[3]; in BoundaryIntegral_Jacobian()
H A Dstabilization.h31 StateConservative dF[3]; in StabilizationMatrix()
H A Dblasius.h169 StateConservative Flux_inviscid[3]; in Blasius_Inflow()
/libCEED/examples/fluids/problems/
H A Dbc_freestream.c289StateConservative dFlux_state = RiemannFlux_HLL_fwd(gas, left0, dleft0, right0, dright0, normal); in TestRiemannHLL_fwd()
306 StateConservative Flux0_state = RiemannFlux_HLL(gas, left0, right0, normal); in TestRiemannHLL_fwd()
307 StateConservative Flux1_state = RiemannFlux_HLL(gas, left1, right1, normal); in TestRiemannHLL_fwd()
351StateConservative dFlux_state = RiemannFlux_HLLC_fwd(gas, left0, dleft0, right0, dright0, normal); in TestRiemannHLLC_fwd()
368 StateConservative Flux0_state = RiemannFlux_HLLC(gas, left0, right0, normal); in TestRiemannHLLC_fwd()
369 StateConservative Flux1_state = RiemannFlux_HLLC(gas, left1, right1, normal); in TestRiemannHLLC_fwd()
/libCEED/examples/fluids/src/
H A Dsetupts.c83 const StateConservative *r; in Surface_Forces_NS()