Home
last modified time | relevance | path

Searched refs:reference (Results 1 – 21 of 21) sorted by relevance

/libCEED/examples/fluids/qfunctions/
H A Dtaylorgreen.h25 StatePrimitive reference = context->reference; in ICsTaylorGreen() local
26 const CeedScalar V0 = sqrt(Dot3(reference.velocity, reference.velocity)); in ICsTaylorGreen()
27 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()
38 Y[4] = reference.temperature; in ICsTaylorGreen()
H A Dnewtonian_types.h63 StatePrimitive reference; member
H A Dnewtonian.h41 State s = StateFromPrimitive(&context->gas, context->reference); in ICsNewtonianIG()
/libCEED/examples/fluids/problems/
H A Dnewtonian.c259 StatePrimitive reference = {.pressure = 1.01e5, .velocity = {0}, .temperature = 288.15}; in NS_NEWTONIAN_IG() local
260 …CeedScalar idl_decay_time = -1, idl_start = 0, idl_length = 0, idl_pressure = reference.pressu… in NS_NEWTONIAN_IG()
345 …r("-reference_pressure", "Reference/initial pressure", NULL, reference.pressure, &reference.pressu… in NS_NEWTONIAN_IG()
346 …sScalarArray("-reference_velocity", "Reference/initial velocity", NULL, reference.velocity, &dim, … in NS_NEWTONIAN_IG()
347 …erence_temperature", "Reference/initial temperature", NULL, reference.temperature, &reference.temp… in NS_NEWTONIAN_IG()
369 idl_pressure = reference.pressure; in NS_NEWTONIAN_IG()
404 reference.pressure *= Pascal; in NS_NEWTONIAN_IG()
405 for (PetscInt i = 0; i < 3; i++) reference.velocity[i] *= meter / second; in NS_NEWTONIAN_IG()
406 reference.temperature *= Kelvin; in NS_NEWTONIAN_IG()
436 setup_context->reference = reference; in NS_NEWTONIAN_IG()
[all …]
H A Dbc_freestream.c23 …em, DM dm, void *ctx, NewtonianIdealGasContext newtonian_ig_ctx, const StatePrimitive *reference) { in FreestreamBCSetup() argument
38 …StatePrimitive Y_inf = {.pressure = reference->pressure / Pascal, .velocity = {0}, .temperature = in FreestreamBCSetup()
39 for (int i = 0; i < 3; i++) Y_inf.velocity[i] = reference->velocity[i] * second / meter; in FreestreamBCSetup()
133 …em, DM dm, void *ctx, NewtonianIdealGasContext newtonian_ig_ctx, const StatePrimitive *reference) { in OutflowBCSetup() argument
143 CeedScalar pressure = reference->pressure / Pascal; in OutflowBCSetup()
144 CeedScalar temperature = reference->temperature / Kelvin; in OutflowBCSetup()
/libCEED/julia/LibCEED.jl/src/
H A DContext.jl37 # Store a reference to the context data so that it will not be GC'd before
39 # A reference to the context object is stored in the QFunction object, and
H A DBasis.jl75 reference element $[-1, 1]$.
76 - `qweight1d`: Array of length `q` holding the quadrature weights on the reference element.
130 reference element $[-1, 1]$.
131 - `qweight`: Array of length `nqpts` holding the quadrature weights on the reference
188 reference element $[-1, 1]$.
189 - `qweight`: Array of length `nqpts` holding the quadrature weights on the reference
246 reference element $[-1, 1]$.
247 - `qweight`: Array of length `nqpts` holding the quadrature weights on the reference
433 Get the reference coordinates of quadrature points (in `dim` dimensions) of the given
H A DQFunction.jl107 # Preserve the context data from the GC by storing a reference
/libCEED/examples/deal.II/
H A DREADME.md4 As reference, operators are presented that use the native matrix-free infrastructure.
/libCEED/examples/
H A Dnotation.md10 …denoted by $\bm{x}=(x,y,z) \equiv (x_0,x_1,x_2) \in\Omega_e$, while the reference coordinates are …
/libCEED/
H A DNOTICE14 3. Also, reference herein to any specific commercial products, process, or
H A DREADME.md128 See the [Cargo documentation](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.htm…
152 | `/cpu/self/ref/serial` | Serial reference implementation | Yes …
153 | `/cpu/self/ref/blocked` | Blocked reference implementation | Yes …
H A DDoxyfile624 # YES the compound reference will be hidden.
802 # the reference definitions. This must be a list of .bib files. The .bib
883 # In the $text part of the WARN_FORMAT command it is possible that a reference
/libCEED/examples/petsc/
H A Dindex.md10 …blem are $\bm{x}=(x,y,z)\in \mathbb{R}^3$, while the coordinates of the reference element are $\bm…
23 …e, denoted by $\bm{{x}}=(x,y)$, to $\bm{X}=(X,Y) \in \textrm{I}$ on the reference element, via the…
60 …e {numref}`fig-sphere-coords`), to $\bm{X}=(X,Y) \in \textrm{I}$ on the reference element, via the…
105 …iant metric tensor (please see figure {numref}`fig-sphere-coords` for a reference of the notation …
/libCEED/doc/sphinx/source/
H A Dreleasenotes.md410 | `/cpu/self/ref/serial` | Serial reference implementation |
411 | `/cpu/self/ref/blocked` | Blocked reference implementation |
471 The `/gpu/cuda/ref` backend is a reference CUDA backend, providing reasonable
492 | `/cpu/self/ref/serial` | Serial reference implementation |
493 | `/cpu/self/ref/blocked` | Blocked reference implementation |
554 | `/cpu/self/blocked` | Blocked reference implementation |
555 | `/cpu/self/ref` | Serial reference implementation |
603 | `/cpu/self` | Serial reference implementation |
646 | `/cpu/self` | Serial reference implementation |
679 high-level API. Also, identifying such low-level kernels and providing a reference
[all …]
H A DlibCEEDapi.md47 …mapping each element to a simple *reference* element (e.g. the unit square) and applying a quadrat…
49 …oFs on each element*, transitions to independent *quadrature points* in reference space, performs …
205 …o include a variety of backend implementations in libCEED, ranging from reference kernels to highl…
206 A simple reference backend implementation is provided in the file
/libCEED/examples/fluids/
H A Dnavierstokes.h413 …lem, DM dm, void *ctx, NewtonianIdealGasContext newtonian_ig_ctx, const StatePrimitive *reference);
414 …lem, DM dm, void *ctx, NewtonianIdealGasContext newtonian_ig_ctx, const StatePrimitive *reference);
H A Dindex.md224 …u$ can be pulled back to the reference element as $\bm u_{\bm X} = \nabla_{\bm x}\bm X \cdot \bm u…
253 …m in parentheses is a rank-1 diffusivity tensor that has been pulled back to the reference element.
588 …teristic velocity $u_{cha}$ is taken to be the acoustic speed while the reference density $\rho_{r…
641 … the inflow (left) and Riemann-type outflow on the right, with exterior reference state at velocit…
924 The reference state is selected using the `-reference_{velocity,pressure,temperature}` flags (Eucli…
H A DREADME.md633 - Pressure used for IDL reference pressure
907 - Atmospheric pressure, also sets IDL reference pressure
/libCEED/examples/python/
H A Dtutorial-6-shell.ipynb33 "while the reference coordinates are represented as\n",
/libCEED/examples/solids/
H A Dindex.md81 which means that we can change our reference frame before or after computing $\bm \sigma$, and get …
227 In this formulation, we solve for displacement $\bm u(\bm X)$ in the reference frame $\bm X$.
229 As explained in the {ref}`common-notation` section, we denote by capital letters the reference fram…