![]() |
Block-Structured AMR Software Framework
|
#include <AMReX_Config.H>#include <AMReX_EB2_IF_Base.H>#include <AMReX_EB2_Graph.H>#include <AMReX_Geometry.H>#include <AMReX_BaseFab.H>#include <AMReX_Print.H>#include <AMReX_Array.H>#include <memory>#include <type_traits>#include <cmath>#include <utility>Go to the source code of this file.
Classes | |
| class | amrex::EB2::GeometryShop< F, R > |
| Samples an implicit function on boxes and fills EB data. More... | |
Namespaces | |
| namespace | amrex |
| namespace | amrex::EB2 |
Functions | |
| template<class F > requires (IsGPUable<F>::value) | |
| __host__ __device__ Real | amrex::EB2::IF_f (F const &f, GpuArray< Real, 3 > const &p) noexcept |
| template<class F > requires (!IsGPUable<F>::value) | |
| __host__ __device__ Real | amrex::EB2::IF_f (F const &f, GpuArray< Real, 3 > const &p) |
| template<class F > | |
| __host__ __device__ Real | amrex::EB2::BrentRootFinder (GpuArray< Real, 3 > const &lo, GpuArray< Real, 3 > const &hi, int rangedir, F const &f) |
| template<class F > | |
| GeometryShop< std::decay_t< F > > | amrex::EB2::makeShop (F &&f) |
| Helper that constructs a GeometryShop owning the supplied implicit function. | |
| template<class F , class R > | |
| GeometryShop< std::decay_t< F >, std::decay_t< R > > | amrex::EB2::makeShop (F &&f, R &&r) |
| Helper that constructs a GeometryShop for an implicit function plus an extra resource handle. | |