Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

NoOpBC.H

Go to the documentation of this file.
00001 /* _______              __
00002   / ___/ /  ___  __ _  / /  ___
00003  / /__/ _ \/ _ \/  ' \/ _ \/ _ \
00004  \___/_//_/\___/_/_/_/_.__/\___/ 
00005 */
00006 
00007 // NoOpBC.H
00008 
00009 //
00010 // This software is copyright (C) by the Lawrence Berkeley
00011 // National Laboratory.  Permission is granted to reproduce
00012 // this software for non-commercial purposes provided that
00013 // this notice is left intact.
00014 // 
00015 // It is acknowledged that the U.S. Government has rights to
00016 // this software under Contract DE-AC03-765F00098 between
00017 // the U.S.  Department of Energy and the University of
00018 // California.
00019 //
00020 // This software is provided as a professional and academic
00021 // contribution for joint exchange. Thus it is experimental,
00022 // is provided ``as is'', with no warranties of any kind
00023 // whatsoever, no support, no promise of updates, or printed
00024 // documentation. By using this software, you acknowledge
00025 // that the Lawrence Berkeley National Laboratory and
00026 // Regents of the University of California shall have no
00027 // liability with respect to the infringement of other
00028 // copyrights by any part of this software.
00029 //
00030 // Dan Martin, July 12, 2004
00031 
00032 #ifndef _NOOPBC_H_
00033 #define _NOOPBC_H_
00034 
00035 #include "GhostBC.H"
00036 
00038 
00041 class NoOpBC : public BoxGhostBC
00042 {
00043 public:
00044   
00046   NoOpBC();
00047 
00049   NoOpBC(int a_dir, Side::LoHiSide a_sd);
00050 
00052   NoOpBC(int a_dir, Side::LoHiSide a_sd, const Interval& a_comps);
00053 
00055   virtual ~NoOpBC();
00056 
00057 protected:
00058 
00060   virtual BoxGhostBC* new_boxghostbc() const;
00061 
00063   void define(int a_dir, Side::LoHiSide a_sd);
00064 
00066   void define(int a_dir, Side::LoHiSide a_sd, const Interval& a_comps);
00067 
00069   virtual void
00070   applyInhomogeneousBCs(FArrayBox& a_state,
00071                         const ProblemDomain& a_domain,
00072                         Real a_dx) const;
00073 
00075   virtual void
00076   applyInhomogeneousBCs(FArrayBox& a_state,
00077                         const Box& a_domain,
00078                         Real a_dx) const;
00080   virtual void
00081   applyHomogeneousBCs(FArrayBox& a_state, 
00082                       const ProblemDomain& a_domain,
00083                       Real a_dx) const;
00084 
00086   virtual void
00087   applyHomogeneousBCs(FArrayBox& a_state, 
00088                       const Box& a_domain,
00089                       Real a_dx) const;
00090 
00091   
00093   virtual void
00094   fillBCValues(FArrayBox& a_neumfac,
00095                FArrayBox& a_dircfac,
00096                FArrayBox& a_inhmval,
00097                Real a_dx,
00098                const ProblemDomain& a_domain) const;
00099 
00100 
00102   virtual void
00103   fillBCValues(FArrayBox& a_neumfac,
00104                FArrayBox& a_dircfac,
00105                FArrayBox& a_inhmval,
00106                Real a_dx,
00107                const Box& a_domain) const;
00108 
00109 private:
00110   NoOpBC(const NoOpBC&) {;}
00111   virtual void operator =(const NoOpBC&) {;}
00112 
00113 
00114 };
00115 #endif
00116 
00117 
00118 

Generated on Wed Jan 19 17:51:26 2005 for Chombo&INSwithParticles by doxygen1.2.16