Chombo + EB + MF  3.2
SimpleDivergence.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 #ifndef _SIMPLEDIVERGENCE_H_
12 #define _SIMPLEDIVERGENCE_H_
13 
14 #include "FArrayBox.H"
15 #include "FluxBox.H"
16 #include "RealVect.H"
17 
18 #include "NamespaceHeader.H"
19 
20 ///
21 /**
22  In a_divF, on a_box, stores divergence of a_F,
23  where a_F is defined on a_box.
24  */
25 void simpleDivergence(FArrayBox& a_divF,
26  const FluxBox& a_F,
27  const Box& a_box,
28  RealVect a_dx);
29 
30 
31 #include "NamespaceFooter.H"
32 #endif
33 
34 
35 
36 
void simpleDivergence(FArrayBox &a_divF, const FluxBox &a_F, const Box &a_box, RealVect a_dx)
A FArrayBox-like container for face-centered fluxes.
Definition: FluxBox.H:22
A Rectangular Domain on an Integer Lattice.
Definition: Box.H:469
A Real vector in SpaceDim-dimensional space.
Definition: RealVect.H:41
Definition: FArrayBox.H:45