diff --git a/amrex/docs_html/EB.html b/amrex/docs_html/EB.html index a3e184f03e..3e1cd74fd3 100644 --- a/amrex/docs_html/EB.html +++ b/amrex/docs_html/EB.html @@ -365,9 +365,6 @@
Face centroid is in a MultiCutFab
with AMREX_SPACEDIM
components.
-Each component of the data is in the range of \([-0.5,0.5]\), based on
-each cell’s local coordinates with respect to the embedded boundary.
Area fractions are returned in an Array
of MultiCutFab
pointers. For each direction, area fraction is for the face of that direction.
Data are in the range of \([0,1]\) with zero representing a covered face
diff --git a/amrex/docs_html/_downloads/008eb6dbfab802633dff40122ece848c/amrex.pdf b/amrex/docs_html/_downloads/008eb6dbfab802633dff40122ece848c/amrex.pdf
index 95357e028f..b50891eed1 100644
Binary files a/amrex/docs_html/_downloads/008eb6dbfab802633dff40122ece848c/amrex.pdf and b/amrex/docs_html/_downloads/008eb6dbfab802633dff40122ece848c/amrex.pdf differ
diff --git a/amrex/docs_html/_sources/EB.rst.txt b/amrex/docs_html/_sources/EB.rst.txt
index 2c78856f93..15065a841d 100644
--- a/amrex/docs_html/_sources/EB.rst.txt
+++ b/amrex/docs_html/_sources/EB.rst.txt
@@ -308,10 +308,6 @@ following data:
z)^2 + (n_y \Delta x \Delta z)^2 + (n_z \Delta x \Delta y)^2}`, where
:math:`n` is the boundary normal vector.
-- **Face centroid** is in a :cpp:`MultiCutFab` with ``AMREX_SPACEDIM`` components.
- Each component of the data is in the range of :math:`[-0.5,0.5]`, based on
- each cell's local coordinates with respect to the embedded boundary.
-
- **Area fractions** are returned in an :cpp:`Array` of :cpp:`MultiCutFab`
pointers. For each direction, area fraction is for the face of that direction.
Data are in the range of :math:`[0,1]` with zero representing a covered face
diff --git a/amrex/docs_html/doxygen/AMReX__FillPatchUtil_8H.html b/amrex/docs_html/doxygen/AMReX__FillPatchUtil_8H.html
index 498c760934..8c257a1097 100644
--- a/amrex/docs_html/doxygen/AMReX__FillPatchUtil_8H.html
+++ b/amrex/docs_html/doxygen/AMReX__FillPatchUtil_8H.html
@@ -187,6 +187,10 @@
std::enable_if_t< IsFabArray< MF >::value > amrex::InterpFromCoarseLevel | +( | +MF & | +mf, | +
+ | + | IntVect const & | +nghost, | +
+ | + | IntVect const & | +nghost_outside_domain, | +
+ | + | const MF & | +cmf, | +
+ | + | int | +scomp, | +
+ | + | int | +dcomp, | +
+ | + | int | +ncomp, | +
+ | + | const Geometry & | +cgeom, | +
+ | + | const Geometry & | +fgeom, | +
+ | + | const IntVect & | +ratio, | +
+ | + | Interp * | +mapper, | +
+ | + | const Vector< BCRec > & | +bcs | +
+ | ) | ++ |
Fill with interpolation of coarse level data.
+It's the CALLER's responsibility to make sure all ghost cells of the coarse MF needed for interpolation are filled already before calling this function. It's assumed that the fine level MultiFab mf's BoxArray is coarsenable by the refinement ratio. There is no support for EB.
+MF | the MultiFab/FabArray type |
Interp | spatial interpolater |
mf | destination MF on the fine level |
nghost | number of ghost cells of mf inside domain needed to be filled |
nghost_outside_domain | number of ghost cells of mf outside domain needed to be filled |
cmf | source MF on the coarse level |
scomp | starting component of the source MF |
dcomp | starting component of the destination MF |
ncomp | number of components |
cgeom | Geometry for the coarse level |
fgeom | Geometry for the fine level |
ratio | refinement ratio |
mapper | spatial interpolater |
bcs | boundar types for each component |