Home
last modified time | relevance | path

Searched refs:pressure (Results 1 – 19 of 19) sorted by relevance

/libCEED/examples/fluids/qfunctions/
H A Dnewtonian_state.h38 Y[0] = s.pressure; in UnpackState_Y()
62 return e_internal + e_kinetic + s.Y.pressure / s.U.density; in TotalSpecificEnthalpy()
68 …return de_internal + de_kinetic + ds.Y.pressure / s.U.density - s.Y.pressure / Square(s.U.density)… in TotalSpecificEnthalpy_fwd()
78 Y.pressure = (HeatCapacityRatio(gas) - 1) * U.density * e_internal; in StatePrimitiveFromConservative()
94 …dY.pressure = (HeatCapacityRatio(gas) - 1) * (dU.density * e_internal + s.U.density * d… in StatePrimitiveFromConservative_fwd()
101 const CeedScalar rho = Y.pressure / (GasConstant(gas) * Y.temperature); in StateEntropyFromPrimitive()
102 const CeedScalar entropy = log(Y.pressure) - gamma * log(rho); in StateEntropyFromPrimitive()
103 const CeedScalar rho_div_p = rho / Y.pressure; in StateEntropyFromPrimitive()
115 …CeedScalar drho = (dY.pressure * s.Y.temperature - s.Y.pressure * dY.temperature) / (GasCon… in StateEntropyFromPrimitive_fwd()
119 const CeedScalar rho_div_p = s.U.density / s.Y.pressure; in StateEntropyFromPrimitive_fwd()
[all …]
H A Dturb_spanstats.h29 v[TURB_MEAN_PRESSURE][i] = wdetJ * s.Y.pressure; in ChildStatsCollection()
30 v[TURB_MEAN_PRESSURE_SQUARED][i] = wdetJ * Square(s.Y.pressure); in ChildStatsCollection()
31 v[TURB_MEAN_PRESSURE_VELOCITY_X][i] = wdetJ * s.Y.pressure * s.Y.velocity[0]; in ChildStatsCollection()
32 v[TURB_MEAN_PRESSURE_VELOCITY_Y][i] = wdetJ * s.Y.pressure * s.Y.velocity[1]; in ChildStatsCollection()
33 v[TURB_MEAN_PRESSURE_VELOCITY_Z][i] = wdetJ * s.Y.pressure * s.Y.velocity[2]; in ChildStatsCollection()
H A Driemann_solver.h232 + (s_star - u_side) * (s_star + side.Y.pressure / denom) in RiemannFlux_HLLC_Star()
255 + (s_star - u_side) * (s_star + side.Y.pressure / denom) in RiemannFlux_HLLC_Star_fwd()
265 + (ds_star - du_side) * (s_star + side.Y.pressure / denom) // in RiemannFlux_HLLC_Star_fwd()
266 …+ (s_star - u_side) * (ds_star + dside.Y.pressure / denom - side.Y.pressure / Square(denom) * dden… in RiemannFlux_HLLC_Star_fwd()
286 …CeedScalar numer = right.Y.pressure - left.Y.pressure + rhou_left * (s_left - u_left) - rhou_righ… in RiemannFlux_HLLC()
320 CeedScalar numer = right.Y.pressure - left.Y.pressure // in RiemannFlux_HLLC_fwd()
323 CeedScalar dnumer = dright.Y.pressure - dleft.Y.pressure // in RiemannFlux_HLLC_fwd()
H A Dtaylorgreen.h27 const CeedScalar density0 = reference.pressure / (reference.temperature * R); in ICsTaylorGreen()
34 …Y[0] = reference.pressure + (density0 * Square(V0) / 16) * (cos(2 * x[0]) + cos(2 * x[1])) * (cos(… in ICsTaylorGreen()
H A Dbc_freestream.h196 y_ext.pressure = outflow->pressure; in RiemannOutflow()
270 y_ext.pressure = outflow->pressure; in RiemannOutflow_Jacobian()
272 dy_ext.pressure = 0; in RiemannOutflow_Jacobian()
339 s.Y.pressure = outflow->pressure; in PressureOutflow()
410 s.Y.pressure = outflow->pressure; in PressureOutflow_Jacobian()
411 ds.Y.pressure = 0.; in PressureOutflow_Jacobian()
H A Dbc_freestream_type.h23 CeedScalar pressure; member
H A Dbc_slip.h33 …const CeedScalar Y_reflect[5] = {s.Y.pressure, vel_reflect[0], vel_reflect[1], vel_reflect[2], s.Y… in Slip()
86 …const CeedScalar Y_reflect[5] = {s.Y.pressure, vel_reflect[0], vel_reflect[1], vel_reflect[2], s.Y… in Slip_Jacobian()
92 …const CeedScalar dY_reflect[5] = {ds.Y.pressure, dvel_reflect[0], dvel_reflect[1], dvel_reflect[2]… in Slip_Jacobian()
H A Dnewtonian_types.h50 CeedScalar pressure; member
H A Dgaussianwave.h56 U[4] = S_infty.Y.pressure / (gamma - 1) * perturbation + e_kinetic; in IC_GaussianWave()
H A Dnewtonian.h194 CeedScalar damp_state[5] = {s.Y.pressure - P0, 0, 0, 0, 0}, idl_residual[5] = {0.}; in RHSFunction_Newtonian()
274 CeedScalar damp_state[5] = {s.Y.pressure - P0, 0, 0, 0, 0}, idl_residual[5] = {0.}; in IFunction_Newtonian()
362 CeedScalar damp_state[5] = {ds.Y.pressure, 0, 0, 0, 0}, idl_residual[5] = {0.}; in IJacobian_Newtonian()
H A Dchannel.h118 const CeedScalar P = s_inside.Y.pressure; in Channel_Inflow()
H A Ddifferential_filter.h47 v0[DIFF_FILTER_PRESSURE][i] = wdetJ * s.Y.pressure; in DifferentialFilter_RHS()
/libCEED/examples/fluids/problems/
H A Dbc_freestream.c38 …StatePrimitive Y_inf = {.pressure = reference->pressure / Pascal, .velocity = {0}, .temperature = … in FreestreamBCSetup()
44 …tream_pressure", "Pressure at freestream condition", NULL, Y_inf.pressure, &Y_inf.pressure, NULL)); in FreestreamBCSetup()
101 Y_inf.pressure *= Pascal; in FreestreamBCSetup()
143 CeedScalar pressure = reference->pressure / Pascal; in OutflowBCSetup() local
149 …ionsScalar("-outflow_pressure", "Pressure at outflow condition", NULL, pressure, &pressure, NULL)); in OutflowBCSetup()
158 pressure *= Pascal; in OutflowBCSetup()
211 outflow_ctx->pressure = pressure; in OutflowBCSetup()
H A Dnewtonian.c259 StatePrimitive reference = {.pressure = 1.01e5, .velocity = {0}, .temperature = 288.15}; in NS_NEWTONIAN_IG()
260 …edScalar idl_decay_time = -1, idl_start = 0, idl_length = 0, idl_pressure = reference.pressure; in NS_NEWTONIAN_IG()
345 …ence_pressure", "Reference/initial pressure", NULL, reference.pressure, &reference.pressure, NULL)… in NS_NEWTONIAN_IG()
369 idl_pressure = reference.pressure; in NS_NEWTONIAN_IG()
404 reference.pressure *= Pascal; in NS_NEWTONIAN_IG()
H A Dblasius.c326 .pressure = P_inf, .velocity = {U_inf, 0, 0}, in NS_BLASIUS()
359 PetscCall(SetupStg(comm, dm, problem, user, weakT, S_infty.Y.temperature, S_infty.Y.pressure)); in NS_BLASIUS()
/libCEED/examples/fluids/
H A DREADME.md267 The simpler `bc_outflow` variant, `outflow_type: pressure`, requires that the flow be a strict outf…
269 The `pressure` variant is retained to facilitate comparison with other codes, such as PHASTA-C, but…
583 - Heat capacity at constant pressure
618 - Characteristic timescale of the pressure deviance decay. The timestep is good starting point
633 - Pressure used for IDL reference pressure
701 - Freestream pressure
755 - Freestream pressure
824 - Atmospheric pressure
863 - Atmospheric pressure
907 - Atmospheric pressure, also sets IDL reference pressure
H A Dindex.md28 …rmal conductivity constant, $T$ represents the temperature, and $P$ the pressure, given by the fol…
34 where $c_p$ is the specific heat at constant pressure and $c_v$ is the specific heat at constant vo…
619 …ts it evolve in time. The initial condition contains a Gaussian perturbation in the pressure field:
633 …freestream_riemann hllc`, which is default), which is a linear constant-pressure wave that transpo…
639 The domain is filled with an ideal gas at rest (zero velocity) with temperature 24.92 and pressure
664 Its initial condition is defined in terms of the Exner pressure, $\pi(\bm{x},t)$, and potential tem…
670 where $P_0$ is the atmospheric pressure.
697 pressure is used for pressure in the inviscid flux terms (all other inviscid
877 The damping is defined in terms of a pressure-primitive anomaly $\bm Y'$ converted to conservative …
924 The reference state is selected using the `-reference_{velocity,pressure,temperature}` flags (Eucli…
/libCEED/examples/nek/boxes/
H A Db1e.rea97 0.00000 p093 Number of previous pressure solns saved
99 0.00000 p095 start projecting pressure after p95 step
/libCEED/examples/solids/
H A DREADME.md225 …, displacement in the $y$ direction, displacement in the $z$ direction, pressure, $\operatorname{t…