Home
last modified time | relevance | path

Searched full:freestream (Results 1 – 14 of 14) sorted by relevance

/honee/qfunctions/
H A Dbc_freestream.h12 // Freestream Boundary Condition
14 CEED_QFUNCTION_HELPER int Freestream(void *ctx, CeedInt Q, const CeedScalar *const *in, CeedScalar … in Freestream() function
52 return Freestream(ctx, Q, in, out, STATEVAR_CONSERVATIVE, RIEMANN_HLL); in Freestream_Conserv_HLL()
56 return Freestream(ctx, Q, in, out, STATEVAR_PRIMITIVE, RIEMANN_HLL); in Freestream_Prim_HLL()
60 return Freestream(ctx, Q, in, out, STATEVAR_ENTROPY, RIEMANN_HLL); in Freestream_Entropy_HLL()
64 return Freestream(ctx, Q, in, out, STATEVAR_CONSERVATIVE, RIEMANN_HLLC); in Freestream_Conserv_HLLC()
68 return Freestream(ctx, Q, in, out, STATEVAR_PRIMITIVE, RIEMANN_HLLC); in Freestream_Prim_HLLC()
72 return Freestream(ctx, Q, in, out, STATEVAR_ENTROPY, RIEMANN_HLLC); in Freestream_Entropy_HLLC()
H A Dgaussianwave.h5 /// Thermodynamic wave propogation for testing freestream/non-reflecting boundary conditions. Propo…
/honee/examples/
H A Dvortexshedding.yaml32 # Freestream inherits reference state as default
33 freestream:
H A Dgaussianwave.yaml14 freestream:
/honee/problems/
H A Dbc_freestream.c5 /// Utility functions for setting up Freestream boundary condition
124 …// Freestream inherits reference state. We re-dimensionalize so the defaults in -help will be visi… in FreestreamBCSetup()
128 PetscOptionsBegin(comm, NULL, "Options for Freestream boundary condition", NULL); in FreestreamBCSetup()
129 …PetscCall(PetscOptionsEnum("-freestream_riemann", "Riemann solver to use in freestream boundary co… in FreestreamBCSetup()
131 …PetscCall(PetscOptionsScalar("-freestream_pressure", "Pressure at freestream condition", NULL, Y_i… in FreestreamBCSetup()
133 …PetscCall(PetscOptionsScalarArray("-freestream_velocity", "Velocity at freestream condition", NULL… in FreestreamBCSetup()
134 …PetscCall(PetscOptionsScalar("-freestream_temperature", "Temperature at freestream condition", NUL… in FreestreamBCSetup()
H A Dgaussianwave.c51 if (!strcmp(name, "freestream")) { in NS_GAUSSIAN_WAVE()
H A Dbc_outflow.c5 /// Utility functions for setting up Freestream boundary condition
H A Dblasius.c48 …// The *_tilde values are *relative* to their freestream values, and we proved first derivatives h… in CompressibleBlasiusResidual()
H A Dnewtonian.c618 } else if (!strcmp(name, "freestream")) { in NS_NEWTONIAN_IG()
/honee/tests/
H A Dgaussianwave_cgns_load.yaml10 freestream:
/honee/doc/
H A Dexamples.md21 The boundary conditions are freestream in the x and y directions. When using an HLL (Harten, Lax, v…
67 At time $t=0$, this domain is subjected to freestream boundary conditions at the inflow (left) and …
85 where $\rho_\infty, u_\infty$ are the freestream (inflow) density and velocity respectively.
316 - Freestream velocity
321 - Freestream temperature
H A Druntime_options.md280 - Use freestream boundary conditions on this list of faces
H A Dtheory.md756 <!-- TODO: Move the Riemann/freestream description here-->
/honee/src/
H A Dboundary_condition.c80 …tscOptionsBCDefinition("-bc_freestream", "Face IDs to apply freestream BC", NULL, "freestream", &b… in BoundaryConditionSetUp()