Home
last modified time | relevance | path

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

/honee/qfunctions/
H A Dnewtonian_state.h31 Y[0] = s.pressure; in UnpackState_Y()
55 return e_internal + e_kinetic + s.Y.pressure / s.U.density; in TotalSpecificEnthalpy()
61 …return de_internal + de_kinetic + ds.Y.pressure / s.U.density - s.Y.pressure / Square(s.U.density)… in TotalSpecificEnthalpy_fwd()
71 Y.pressure = (HeatCapacityRatio(gas) - 1) * U.density * e_internal; in StatePrimitiveFromConservative()
87 …dY.pressure = (HeatCapacityRatio(gas) - 1) * (dU.density * e_internal + s.U.density * d… in StatePrimitiveFromConservative_fwd()
94 const CeedScalar rho = Y.pressure / (GasConstant(gas) * Y.temperature); in StateEntropyFromPrimitive()
95 const CeedScalar entropy = log(Y.pressure) - gamma * log(rho); in StateEntropyFromPrimitive()
96 const CeedScalar rho_div_p = rho / Y.pressure; in StateEntropyFromPrimitive()
108 …CeedScalar drho = (dY.pressure * s.Y.temperature - s.Y.pressure * dY.temperature) / (GasCon… in StateEntropyFromPrimitive_fwd()
112 const CeedScalar rho_div_p = s.U.density / s.Y.pressure; in StateEntropyFromPrimitive_fwd()
[all …]
H A Dbc_outflow.h56 y_ext.pressure = outflow->pressure; in RiemannOutflow()
130 y_ext.pressure = outflow->pressure; in RiemannOutflow_Jacobian()
132 dy_ext.pressure = 0; in RiemannOutflow_Jacobian()
199 s.Y.pressure = outflow->pressure; in PressureOutflow()
270 s.Y.pressure = outflow->pressure; in PressureOutflow_Jacobian()
271 ds.Y.pressure = 0.; in PressureOutflow_Jacobian()
H A Driemann_solver.h228 + (s_star - u_side) * (s_star + side.Y.pressure / denom) in RiemannFlux_HLLC_Star()
251 + (s_star - u_side) * (s_star + side.Y.pressure / denom) 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()
282 …CeedScalar numer = right.Y.pressure - left.Y.pressure + rhou_left * (s_left - u_left) - rhou_righ… in RiemannFlux_HLLC()
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()
H A Dtaylorgreen.h33 const CeedScalar density0 = reference.pressure / (reference.temperature * R); in ICsTaylorGreen()
40 …Y[0] = reference.pressure + (density0 * Square(V0) / 16) * (cos(2 * x[0]) + cos(2 * x[1])) * (cos(… in ICsTaylorGreen()
H A Dbc_slip.h31 …const CeedScalar Y_reflect[5] = {s.Y.pressure, vel_reflect[0], vel_reflect[1], vel_reflect[2], s.Y… in Slip()
81 …const CeedScalar Y_reflect[5] = {s.Y.pressure, vel_reflect[0], vel_reflect[1], vel_reflect[2], s.Y… in Slip_Jacobian()
87 …const CeedScalar dY_reflect[5] = {ds.Y.pressure, dvel_reflect[0], dvel_reflect[1], dvel_reflect[2]… in Slip_Jacobian()
H A Dbc_freestream_type.h19 CeedScalar pressure; member
H A Dnewtonian_types.h50 CeedScalar pressure; member
H A Dmonitor_totalkineticenergy.h32 v[3][i] = wdetJ * s.Y.pressure * div_u; in MonitorTotalKineticEnergy()
H A Dgaussianwave.h50 U[4] = S_infty.Y.pressure / (gamma - 1) * perturbation + e_kinetic; in IC_GaussianWave()
H A Dnewtonian.h115 … CeedScalar length, CeedScalar start, CeedScalar location, CeedScalar pressure, in InternalDampingLayer_IFunction_Integrand() argument
118 CeedScalar damp_state[5] = {s.Y.pressure - pressure, 0, 0, 0, 0}, idl_residual[5] = {0.}; in InternalDampingLayer_IFunction_Integrand()
137 CeedScalar damp_state[5] = {ds.Y.pressure, 0, 0, 0, 0}, idl_residual[5] = {0.}; in InternalDampingLayer_IJacobian_Integrand()
236 …CeedScalar damp_state[5] = {s.Y.pressure - idl_pressure, 0, 0, 0, 0}, idl_residual[5] = {0.}; in RHSFunction_Newtonian()
H A Dchannel.h110 const CeedScalar P = s_inside.Y.pressure; in Channel_Inflow()
H A Ddifferential_filter.h43 v0[DIFF_FILTER_PRESSURE][i] = wdetJ * s.Y.pressure; in DifferentialFilter_RHS()
/honee/problems/
H A Dbc_outflow.c125 CeedScalar pressure = reference->pressure / units->Pascal; in OutflowBCSetup() local
131 …ionsScalar("-outflow_pressure", "Pressure at outflow condition", NULL, pressure, &pressure, NULL)); in OutflowBCSetup()
140 pressure *= units->Pascal; in OutflowBCSetup()
148 .pressure = pressure, in OutflowBCSetup()
H A Dbc_freestream.c125 …StatePrimitive Y_inf = {.pressure = reference->pressure / units->Pascal, .velocity = {0}, .tempera… in FreestreamBCSetup()
131 …tream_pressure", "Pressure at freestream condition", NULL, Y_inf.pressure, &Y_inf.pressure, NULL)); in FreestreamBCSetup()
137 Y_inf.pressure *= units->Pascal; in FreestreamBCSetup()
H A Dnewtonian.c385 StatePrimitive reference = {.pressure = 1.01e5, .velocity = {0}, .temperature = 288.15}; in NS_NEWTONIAN_IG()
408 .idl_pressure = reference.pressure, in NS_NEWTONIAN_IG()
444 …ence_pressure", "Reference/initial pressure", NULL, reference.pressure, &reference.pressure, NULL)… in NS_NEWTONIAN_IG()
466 newtonian_ig_ctx->idl_pressure = reference.pressure; in NS_NEWTONIAN_IG()
482 reference.pressure *= units->Pascal; in NS_NEWTONIAN_IG()
H A Dblasius.c187 .pressure = P_inf, .velocity = {U_inf, 0, 0}, in NS_BLASIUS()
221 PetscCall(SetupStg(comm, dm, problem, honee, weakT, S_infty.Y.temperature, S_infty.Y.pressure)); in NS_BLASIUS()
/honee/qfunctions/spanstats/
H A Dturbulence.h57 v[TURB_MEAN_PRESSURE][i] = wdetJ * s.Y.pressure; in ChildStatsCollection()
58 v[TURB_MEAN_PRESSURE_SQUARED][i] = wdetJ * Square(s.Y.pressure); in ChildStatsCollection()
59 v[TURB_MEAN_PRESSURE_VELOCITY_X][i] = wdetJ * s.Y.pressure * s.Y.velocity[0]; in ChildStatsCollection()
60 v[TURB_MEAN_PRESSURE_VELOCITY_Y][i] = wdetJ * s.Y.pressure * s.Y.velocity[1]; in ChildStatsCollection()
61 v[TURB_MEAN_PRESSURE_VELOCITY_Z][i] = wdetJ * s.Y.pressure * s.Y.velocity[2]; in ChildStatsCollection()
/honee/doc/
H A Dexamples.md8 …ts it evolve in time. The initial condition contains a Gaussian perturbation in the pressure field:
22 …freestream_riemann hllc`, which is default), which is a linear constant-pressure wave that transpo…
65 The domain is filled with an ideal gas at rest (zero velocity) with temperature 24.92 and pressure
119 Its initial condition is defined in terms of the Exner pressure, $\pi(\bm{x},t)$, and potential tem…
125 where $P_0$ is the atmospheric pressure.
164 - Atmospheric pressure
215 - Atmospheric pressure
302 At the outlet, a user-set pressure is used for pressure in the inviscid flux terms (all other invis…
326 - Atmospheric pressure, also sets IDL reference pressure
397 The reference state is selected using the `-reference_{velocity,pressure,temperature}` flags (Eucli…
H A Druntime_options.md363 The simpler `bc_outflow` variant, `outflow_type: pressure`, requires that the flow be a strict outf…
365 The `pressure` variant is retained to facilitate comparison with other codes, such as PHASTA-C, but…
454 - Heat capacity at constant pressure
H A Dtheory.md20 …rmal conductivity constant, $T$ represents the temperature, and $P$ the pressure, given by the fol…
26 where $c_p$ is the specific heat at constant pressure and $c_v$ is the specific heat at constant vo…
723 The damping is defined in terms of a pressure-primitive anomaly $\bm Y'$ converted to conservative …
735 - Characteristic timescale of the pressure deviance decay. The timestep is good starting point
750 - Pressure used for IDL reference pressure