BISICLES AMR ice sheet model  0.9
ExtrapGhostCells.H
Go to the documentation of this file.
1 #ifdef CH_LANG_CC
2 /*
3 * _______ __
4 * / ___/ / ___ __ _ / / ___
5 * / /__/ _ \/ _ \/ V \/ _ \/ _ \
6 * \___/_//_/\___/_/_/_/_.__/\___/
7 * Please refer to Copyright.txt, in Chombo's root directory.
8 */
9 #endif
10 
11 //
12 // ExtrapGhostCells.H
13 // ============
14 //
15 // Simple function to fill domain ghost cells with extrapolated values
16 //
17 
18 #ifndef _EXTRAPGHOSTCELLS_H_
19 #define _EXTRAPGHOSTCELLS_H_
20 
21 #include "ProblemDomain.H"
22 #include "LevelData.H"
23 #include "FArrayBox.H"
24 
25 #include "NamespaceHeader.H"
26 
27 void
28 ExtrapGhostCells(LevelData<FArrayBox>& a_phi,
29  const ProblemDomain& a_domain);
30 
31 void
32 ExtrapGhostCells(FArrayBox& a_phi,
33  const ProblemDomain& a_domain,
34  const IntVect& a_ghostVect);
35 
36 #include "NamespaceFooter.H"
37 
38 #endif
void ExtrapGhostCells(LevelData< FArrayBox > &a_phi, const ProblemDomain &a_domain)
Definition: ExtrapGhostCells.cpp:17