00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #ifndef _ReflectBC_H_
00033 #define _ReflectBC_H_
00034
00035 #include "GhostBC.H"
00036
00037
00039 class ReflectBC : public BoxGhostBC
00040 {
00041 public:
00043 friend class DomainGhostBC;
00044
00046 ReflectBC();
00047
00049 ~ReflectBC();
00050
00052 ReflectBC(int dir, Side::LoHiSide sd,
00053 const Interval& a_comps);
00054
00056 ReflectBC(int dir, Side::LoHiSide sd);
00057
00058
00059 protected:
00060
00062 virtual void applyHomogeneousBCs(FArrayBox& a_state,
00063 const Box& a_domain,
00064 Real a_dx) const;
00065
00066
00068 virtual void applyHomogeneousBCs(FArrayBox& a_state,
00069 const ProblemDomain& a_domain,
00070 Real a_dx) const;
00071
00073 virtual void applyInhomogeneousBCs(FArrayBox& a_state,
00074 const Box& a_domain,
00075 Real a_dx) const;
00076
00078 virtual void applyInhomogeneousBCs(FArrayBox& a_state,
00079 const ProblemDomain& a_domain,
00080 Real a_dx) const;
00081
00083 virtual void applyReflectBCs(FArrayBox& a_state,
00084 const ProblemDomain& a_domain,
00085 Real a_dx) const;
00086
00087
00089 virtual void fillBCValues(FArrayBox& a_neumfac,
00090 FArrayBox& a_dircfac,
00091 FArrayBox& a_inhmval,
00092 Real a_dx,
00093 const Box& a_domain) const;
00094
00096 virtual void fillBCValues(FArrayBox& a_neumfac,
00097 FArrayBox& a_dircfac,
00098 FArrayBox& a_inhmval,
00099 Real a_dx,
00100 const ProblemDomain& a_domain) const;
00101
00103 BoxGhostBC* new_boxghostbc() const;
00104
00105 private:
00106 ReflectBC(const ReflectBC& extrapin) {;}
00107 void operator=(const ReflectBC& extrapin) {;}
00108
00109 };
00110
00111
00112
00113
00114 #endif
00115
00116