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

ChannelBL.H

Go to the documentation of this file.
00001 /* _______              __
00002   / ___/ /  ___  __ _  / /  ___
00003  / /__/ _ \/ _ \/  ' \/ _ \/ _ \
00004  \___/_//_/\___/_/_/_/_.__/\___/ 
00005 */
00006 //
00007 // This software is copyright (C) by the Lawrence Berkeley
00008 // National Laboratory.  Permission is granted to reproduce
00009 // this software for non-commercial purposes provided that
00010 // this notice is left intact.
00011 // 
00012 // It is acknowledged that the U.S. Government has rights to
00013 // this software under Contract DE-AC03-765F00098 between
00014 // the U.S.  Department of Energy and the University of
00015 // California.
00016 //
00017 // This software is provided as a professional and academic
00018 // contribution for joint exchange. Thus it is experimental,
00019 // is provided ``as is'', with no warranties of any kind
00020 // whatsoever, no support, no promise of updates, or printed
00021 // documentation. By using this software, you acknowledge
00022 // that the Lawrence Berkeley National Laboratory and
00023 // Regents of the University of California shall have no
00024 // liability with respect to the infringement of other
00025 // copyrights by any part of this software.
00026 //
00027 //  ANAG, LBNL, DTG
00028 
00029 #ifndef _ChannelBL_H_
00030 #define _ChannelBL_H_
00031 
00032 #include "MayDay.H"
00033 #include "LoHiSide.H"
00034 #include "IntVect.H"
00035 #include "RealVect.H"
00036 #include "BaseLevelSet.H"
00037 #include "REAL.H"
00038 
00039 using std::pair;
00040 
00042 
00048 class ChannelBL: public BaseLevelSet
00049 {
00050 public:
00051 
00053 
00056   ChannelBL(const RealVect& a_centerPlaneNormal,
00057          const Real&     a_radius);
00058 
00060   virtual ~ChannelBL();
00061 
00063 
00067   virtual bool isRegular(const Box& region,
00068                          const Box& domain,
00069                          const RealVect& origin,
00070                          const Real& dx) const;
00071 
00073 
00077   virtual bool isCovered(const Box& region,
00078                          const Box& domain,
00079                          const RealVect& origin,
00080                          const Real& dx) const;
00081 
00083 
00093   pair<int, Side::LoHiSide> upDirection(const RealVect& a_midpt,const IntVect& a_iv) const; 
00094 
00096 
00101   virtual Real localFuncValue(const RealVect& a_independentCoords, 
00102                               const int& a_upDirection,
00103                               const IntVect& a_iv, 
00104                               const Box& a_domain, 
00105                               const RealVect& a_origin, 
00106                               const Real& a_dx) const;  
00107 
00108 
00110 
00114   virtual
00115   BaseLevelSet* new_baseLevelSet() const;       
00116   virtual Real  LevelSurface(const RealVect& a_vec) const;
00117   Real getCenterPlanePt(const RealVect& a_indCoords) const;
00118 
00119 protected:
00120 
00121   int m_upDir;
00122 
00123   RealVect m_centerPlaneNormal;
00124   Real     m_radius;
00125   Real     m_upDirDistance;
00126 
00127 private:
00129   ChannelBL()
00130   {
00131     MayDay::Error("ChannelBL uses strong construction");
00132   }
00133   ChannelBL(const ChannelBL& a_ramplg)
00134   {
00135     MayDay::Error("ChannelBL disallows copy construction");
00136   }
00137   void operator=(const ChannelBL& a_ramplg)
00138   {
00139     MayDay::Error("ChannelBL disallows assignment");
00140   }
00141 
00142 };
00143 #endif

Generated on Wed Apr 16 14:31:04 2003 for EBChombo by doxygen1.2.16