00001 #ifdef CH_LANG_CC
00002
00003
00004
00005
00006
00007
00008
00009 #endif
00010
00011 #ifndef _NEUMANNVISCOUSTENSOREBBC_H_
00012 #define _NEUMANNVISCOUSTENSOREBBC_H_
00013
00014 #include "RefCountedPtr.H"
00015
00016 #include "BaseEBBC.H"
00017 #include "BaseBCFuncEval.H"
00018 #include "NamespaceHeader.H"
00019
00020
00021
00022
00023 class NeumannViscousTensorEBBC: public ViscousBaseEBBC
00024 {
00025 public:
00026
00027
00028
00029 virtual void define(const LayoutData<IntVectSet>& a_cfivs,
00030 const Real& a_factor)
00031 {
00032 }
00033
00034
00035 virtual void applyEBFlux(EBCellFAB& a_lphi,
00036 const EBCellFAB& a_phi,
00037 VoFIterator& a_vofit,
00038 const LayoutData<IntVectSet>& a_cfivs,
00039 const DataIndex& a_dit,
00040 const RealVect& a_probLo,
00041 const RealVect& a_dx,
00042 const Real& a_factor,
00043 const bool& a_useHomogeneous,
00044 const Real& a_time);
00045
00046
00047
00048 NeumannViscousTensorEBBC(const ProblemDomain& a_domain,
00049 const EBISLayout& a_layout,
00050 const RealVect& a_dx,
00051 const IntVect* a_ghostCellsPhi,
00052 const IntVect* a_ghostCellsRhs);
00053
00054
00055
00056 virtual LayoutData<BaseIVFAB<VoFStencil> >* getFluxStencil(int ivar)
00057 {
00058 return NULL;
00059 }
00060
00061
00062
00063
00064 virtual ~NeumannViscousTensorEBBC();
00065
00066
00067
00068
00069
00070
00071 virtual void getEBFlux(Real& a_flux,
00072 const VolIndex& a_vof,
00073 const LevelData<EBCellFAB>& a_phi,
00074 const LayoutData<IntVectSet>& a_cfivs,
00075 const DataIndex& a_dit,
00076 const RealVect& a_probLo,
00077 const RealVect& a_dx,
00078 const bool& a_useHomogeneous,
00079 const Real& a_time,
00080 const pair<int,Real>* a_cacheHint=0 )
00081 {
00082 MayDay::Error();
00083 }
00084
00085 NeumannViscousTensorEBBC()
00086 {
00087 }
00088
00089 private:
00090 };
00091
00092
00093
00094
00095 class NeumannViscousTensorEBBCFactory: public BaseEBBCFactory
00096 {
00097 public:
00098
00099
00100
00101 NeumannViscousTensorEBBCFactory()
00102 {;}
00103
00104
00105
00106
00107 virtual ~NeumannViscousTensorEBBCFactory()
00108 {;}
00109
00110
00111
00112
00113 virtual void setValue(Real a_value);
00114
00115
00116
00117
00118 virtual void setFunction(RefCountedPtr<BaseBCFuncEval> a_flux);
00119
00120
00121
00122
00123 virtual NeumannViscousTensorEBBC* create(const ProblemDomain& a_domain,
00124 const EBISLayout& a_layout,
00125 const RealVect& a_dx,
00126 const IntVect* a_ghostCellsPhi=0,
00127 const IntVect* a_ghostCellsRhs=0);
00128
00129 private:
00130 bool m_isFunction;
00131 Real m_value;
00132 RefCountedPtr<BaseBCFuncEval> m_func;
00133
00134 };
00135
00136 #include "NamespaceFooter.H"
00137 #endif