|
| static GPUCallableInlineMethod void | ncp (double *BgradQ, const double *const Q, const double *const gradQSerialised, const int normal, const int CCZ4LapseType, const double CCZ4ds, const double CCZ4c, const double CCZ4e, const double CCZ4f, const double CCZ4bs, const double CCZ4sk, const double CCZ4xi, const double CCZ4mu, const double CCZ4SO) InlineMethod |
| | A bug in the LLVM OpenMP implementation prevents the usage of arrays in target functions.
|
| |
| static GPUCallableInlineMethod void | source (double *S, const double *const Q, const int CCZ4LapseType, const double CCZ4ds, const double CCZ4c, const double CCZ4e, const double CCZ4f, const double CCZ4bs, const double CCZ4sk, const double CCZ4xi, const double CCZ4itau, const double CCZ4eta, const double CCZ4k1, const double CCZ4k2, const double CCZ4k3, const double CCZ4SO) InlineMethod |
| | The source term is one out of two terms that we use in our CCZ4 formulation.
|
| |
| static GPUCallableInlineMethod void | maxEigenvalue (const double *const Q, int normal, const double CCZ4e, const double CCZ4ds, const double CCZ4GLMc, const double CCZ4GLMd, double *maxEigenvalue) InlineMethod |
| |
| KeywordToAvoidDuplicateSymbolsForInlinedFunctions void | maxEigenvalue (const double *const Q, int normal, const double CCZ4e, const double CCZ4ds, const double CCZ4GLMc, const double CCZ4GLMd) InlineMethod |
| |
| void | admconstraints (double *constraints, const double *const Q, const double *const gradQSerialised) |
| | This is a postprocessing routine to monitor if the physical constraints are fulfilled.
|
| |
| void | ThetaOutputNCP (double *NCPterm, const double *const Q, const double *const gradQSerialised, int normal) |
| | A temporary test function, to output Hamilton constraint related term in theta, 1 terms: RPlusTwoNablaZNCP.
|
| |
| void | TestingOutput (double *terms, const double *const Q, const double *const gradQSerialised) |
| | A temporary test function, to output some testing values 0,1 entries: Hamilton constraint related term in theta, 2 terms: RPlusTwoNablaZSrc, pure Src 2-10 entry: no-symmetry version of R_ij.
|
| |
| void | Psi4Calc (double *Psi4, const double *const Q, const double *const gradQSerialised, double *coor) |
| | This function is for the calculation of psi4, a quantity related to gravitional wave.
|
| |
| void | enforceCCZ4constraints (double *__restrict__ newQ) |
| | A postprocessing routine which pushes the volume solution back into the area of the CCZ4 constraints.
|
| |
| void | enforceCCZ4constraints (const double *__restrict__ oldQ, double *__restrict__ dQdt, double timeStepSize) |
| | Anticipate Euler step and correct dQdt such that outcome does fulfill constraints.
|
| |
| void | gaugeWave (double *__restrict__ Q, const tarch::la::Vector< Dimensions, double > &x, double t) |
| |
| void | diagonal_gaugeWave (double *__restrict__ Q, const tarch::la::Vector< Dimensions, double > &x, double t) |
| |
| void | linearWave (double *__restrict__ Q, const tarch::la::Vector< Dimensions, double > &X, double t) |
| |
| void | flat (double *__restrict__ Q, const tarch::la::Vector< Dimensions, double > &X, double t) |
| |
| void | recomputeAuxiliaryVariablesFD4_4thOrder (::exahype2::CellData< double, double > &patchData, int numberOfGridCellsPerPatchPerAxis, int haloSize, int unknowns, int auxiliaryVariables) |
| | Recompute auxiliary variables for FD4 scheme with a 4th order scheme.
|
| |
| void | recomputeAuxiliaryVariablesFD4_centralDifferences (::exahype2::CellData< double, double > &patchData, int numberOfGridCellsPerPatchPerAxis, int haloSize, int unknowns, int auxiliaryVariables) |
| |
| void | recomputeAuxiliaryVariablesFD4_leftDifferences (::exahype2::CellData< double, double > &patchData, int numberOfGridCellsPerPatchPerAxis, int haloSize, int unknowns, int auxiliaryVariables) |
| |
| void | recomputeAuxiliaryVariablesFD4_rightDifferences (::exahype2::CellData< double, double > &patchData, int numberOfGridCellsPerPatchPerAxis, int haloSize, int unknowns, int auxiliaryVariables) |
| |
| void applications::exahype2::ccz4::recomputeAuxiliaryVariablesFD4_4thOrder |
( |
::exahype2::CellData< double, double > & | patchData, |
|
|
int | numberOfGridCellsPerPatchPerAxis, |
|
|
int | haloSize, |
|
|
int | unknowns, |
|
|
int | auxiliaryVariables ) |
Recompute auxiliary variables for FD4 scheme with a 4th order scheme.
We are given a patch as well as the number of mesh cells per axis within this patch. I also parameterise over the unknowns and the auxiliaryVariables. By default, we'd expect 59 and 0 here, but we want to routine to work for augmented systems, too.
The reconstruction uses a 4th order Finite Difference scheme. The implementation in applications::exahype2::ccz4::internal::recomputeAuxiliaryVariablesFD4_4thOrder_LoopBody() realises the normal stencil
scaled with \( \frac{1}{12h} \). There is a fundamental problem with this variant which is worth mentioning: To evaluate this stencil, we need a halo layer of at least two. For a given haloSize, we can never update the outermost two layers of the code.
Shortcomings
As we use a fourth order scheme, we need two neighbours around each point to construct the outcome. That means, when we are given a patch with size 3 (left illustation above), we effectively can only calculate the auxiliary variables within the patch (green) and the first halo layer around it (brownish). This is illustrated to the right.
There's one further complexity: we usually do not have the digonal values in ExaHyPE. What we really get is not the illustration above to the left but the one in the centre. The diagonal blocks hold garbage. As a consequence, the auxiliary data in the brown data layer to the right is not properly computed. In the left brown layer, only the x-derivatives are properly reconstructed. The y-derivatives contain garbage.
- Parameters
-
| patchData | Host the actual patch data. For this function, we only have to ensure that the QIn (data plus halo) are properly set, and that the patch size in patchData is correct. All the other (meta data) properties have no influence and can hold any data. |
| numberOfGridCellsPerPatchPerAxis | Has to be at least 3, as the halo is also at least three. More general, has to be bigger or equal to haloSize. |
| haloSize | Has to be at least 3. |
| unknowns | Typically 59, but can be bigger if you hold additional quantities within the PDE. |
| auxiliaryVariables | Typically 0. |
- See also
- applications::exahype2::ccz4::internal::recomputeAuxiliaryVariablesFD4_4thOrder_LoopBody()