00001 #ifdef CH_LANG_CC
00002
00003
00004
00005
00006
00007
00008
00009 #endif
00010
00011
00012
00013 #ifndef _EBFLUXFAB_H_
00014 #define _EBFLUXFAB_H_
00015
00016 #include "Box.H"
00017 #include "Vector.H"
00018 #include "EBFaceFAB.H"
00019 #include "NamespaceHeader.H"
00020
00021
00022
00023
00024
00025 class EBFluxFAB
00026 {
00027
00028 public:
00029
00030
00031
00032
00033
00034 static int preAllocatable()
00035 {
00036 return 1;
00037 }
00038
00039
00040 EBFluxFAB();
00041
00042
00043 ~EBFluxFAB();
00044
00045
00046 void clear();
00047
00048
00049 EBFluxFAB& operator+=(const EBFluxFAB& a_ebfab)
00050 {
00051 for (int idir = 0; idir < SpaceDim; idir++)
00052 {
00053 (*m_fluxes[idir]) += (*a_ebfab.m_fluxes[idir]);
00054 }
00055 return *this;
00056 }
00057
00058
00059
00060 EBFluxFAB& operator-=(const EBFluxFAB& a_ebfab)
00061 {
00062 for (int idir = 0; idir < SpaceDim; idir++)
00063 {
00064 (*m_fluxes[idir]) -= (*a_ebfab.m_fluxes[idir]);
00065 }
00066 return *this;
00067 }
00068
00069
00070
00071 EBFluxFAB& operator*=(const EBFluxFAB& a_ebfab)
00072 {
00073 for (int idir = 0; idir < SpaceDim; idir++)
00074 {
00075 (*m_fluxes[idir]) *= (*a_ebfab.m_fluxes[idir]);
00076 }
00077 return *this;
00078 }
00079
00080
00081
00082 EBFluxFAB& operator/=(const EBFluxFAB& a_ebfab)
00083 {
00084 for (int idir = 0; idir < SpaceDim; idir++)
00085 {
00086 (*m_fluxes[idir]) /= (*a_ebfab.m_fluxes[idir]);
00087 }
00088 return *this;
00089 }
00090
00091 const Box& box() const
00092 {
00093 return getRegion();
00094 }
00095
00096 void define(const EBFluxFAB& a_fb)
00097 {
00098 define(a_fb.getEBISBox(), a_fb.box(), a_fb.nComp());
00099 }
00100
00101
00102
00103
00104
00105 Real max(int a_dir, int a_comp = 0) const
00106 {
00107 return m_fluxes[a_dir]->max(a_comp);
00108 }
00109
00110
00111
00112
00113
00114 Real min(int a_dir, int a_comp = 0) const
00115 {
00116 return m_fluxes[a_dir]->min(a_comp);
00117 }
00118
00119
00120
00121
00122 int nComp() const;
00123
00124
00125 const Box& getRegion() const;
00126
00127
00128 EBFaceFAB& operator[] (const int dir);
00129
00130
00131 const EBFaceFAB& operator[] (const int dir) const;
00132
00133 void setVal(const Real& val);
00134
00135
00136 void clone(const EBFluxFAB& a_input);
00137
00138
00139
00140
00141
00142
00143 void copy(const Box& Rfrom,
00144 const Interval& Cdest,
00145 const Box& Rto,
00146 const EBFluxFAB& src,
00147 const Interval& Csrc);
00148
00149
00150 bool isDefined() const;
00151
00152
00153 EBFluxFAB(const EBISBox& a_ebisBox, const Box& bx, int n);
00154
00155
00156 void define(const EBISBox& a_ebisBox, const Box& bx, int n);
00157
00158 int size(const Box& R, const Interval& comps) const;
00159
00160 void linearOut(void* buf, const Box& R, const Interval& comps) const;
00161
00162 void linearIn(void* buf, const Box& R, const Interval& comps);
00163
00164
00165
00166
00167
00168
00169 void alias(Vector<EBFaceFAB*> a_inputFAB);
00170
00171
00172 EBFluxFAB(const Box& bx, int n)
00173 {
00174 MayDay::Error("invalid constructor called for EBFluxFAB");
00175 }
00176 EBISBox getEBISBox() const
00177 {
00178 return m_ebisBox;
00179 }
00180
00181 protected:
00182 void setDefaultValues();
00183
00184
00185 bool m_aliased;
00186
00187 Box m_region;
00188
00189
00190 EBISBox m_ebisBox;
00191
00192
00193 int m_nComp;
00194
00195 bool m_isDefined;
00196
00197
00198 Tuple<EBFaceFAB*, CH_SPACEDIM> m_fluxes;
00199
00200
00201 private:
00202
00203
00204 EBFluxFAB (const EBFluxFAB&)
00205 {
00206 MayDay::Error("bogus constructor");
00207 }
00208
00209 void operator = (const EBFluxFAB&)
00210 {
00211 MayDay::Error("bogus constructor");
00212 }
00213
00214 };
00215
00216 #include "NamespaceFooter.H"
00217 #endif