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

BaseLevelSet.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 _BaseLevelSet_H_
00030 #define _BaseLevelSet_H_
00031 
00032 #include <cmath>
00033 #include <cstdlib>
00034 #include "REAL.H"
00035 #include "LoHiSide.H"
00036 #include "IntVect.H"
00037 #include "Vector.H"
00038 #include "RealVect.H"
00039 
00040 using std::pair;
00042 
00049 class BaseLevelSet
00050 {
00051 public:
00052 
00054   BaseLevelSet()
00055   {;}
00056 
00058   virtual ~BaseLevelSet()
00059   {;}
00060 
00062 
00066   virtual bool isRegular(const Box& region,
00067                          const Box& domain,
00068                          const RealVect& origin,
00069                          const Real& dx) const = 0;
00070 
00072 
00076   virtual bool isCovered(const Box& region,
00077                          const Box& domain,
00078                          const RealVect& origin,
00079                          const Real& dx) const = 0;
00080 
00081 
00083 
00092   virtual pair<int, Side::LoHiSide> 
00093   upDirection(const RealVect& a_midpt, const IntVect& a_iv) const  = 0;
00094 
00096 
00100   virtual Real localFuncValue(const RealVect& a_independentCoords, 
00101                               const int& a_upDirection, 
00102                               const IntVect& a_iv, 
00103                               const Box& a_domain, 
00104                               const RealVect& a_origin, 
00105                               const Real& a_dx) const = 0;  
00106 
00108 
00112   virtual
00113   BaseLevelSet* new_baseLevelSet() const = 0;       
00114 
00115  Vector<RealVect>
00116   getBoxLocations(const Box& a_region,
00117                   const RealVect& a_origin,
00118                   const Real& a_dx) const;
00120   Vector<IntVect>
00121   getBoxCornerCells(const Box& a_region,
00122                     const RealVect& a_origin,
00123                     const Real& a_dx) const;
00124 
00125 
00126 Vector<RealVect>
00127   getBoxLocations(const Box& a_region,
00128                   const RealVect& a_origin,
00129                   const RealVect& a_vectDx) const;
00131 
00132 
00133 };
00134 #endif

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