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 #ifndef _DumbBellBL_H_
00029 #define _DumbBellBL_H_
00030
00031 #include "MayDay.H"
00032 #include "LoHiSide.H"
00033 #include "IntVect.H"
00034 #include "RealVect.H"
00035 #include "BaseLevelSet.H"
00036 #include "REAL.H"
00037 #include "BoxIterator.H"
00038 using std::pair;
00039
00041
00042
00043
00044
00045
00046 class DumbBellBL: public BaseLevelSet
00047 {
00048 public:
00049
00051 DumbBellBL(const Real& a_radius,
00052 const Real& a_height,
00053 const RealVect& a_center,
00054 const int& a_axis,
00055 const bool& a_interior,
00056 const Real& a_dx,
00057 const int& a_symmetry);
00058
00060 virtual ~DumbBellBL();
00061
00062
00063
00064
00065
00066
00067 virtual bool isRegular(const Box& a_region,
00068 const Box& a_domain,
00069 const RealVect& a_origin,
00070 const Real& a_dx) const;
00071
00073
00074
00075
00076
00077 virtual bool isCovered(const Box& a_region,
00078 const Box& a_domain,
00079 const RealVect& a_origin,
00080 const Real& a_dx) const;
00081
00083
00084
00085
00086
00087
00088
00089
00090 virtual pair<int, Side::LoHiSide> upDirection(const RealVect& a_midpt,const IntVect& a_iv) const;
00091
00093
00094
00095
00096
00097
00098 virtual Real localFuncValue(const RealVect& a_independentCoords,
00099 const int& a_upDirection,
00100 const IntVect& a_iv,
00101 const Box& a_domain,
00102 const RealVect& a_origin,
00103 const Real& a_dx) const;
00104
00105
00106
00107
00108 virtual BaseLevelSet* new_baseLevelSet() const;
00109
00110 protected:
00111 Real LevelSurface(const RealVect& a_vec) const;
00112
00113 RealVect m_center;
00114 Real m_radius;
00115 Real m_height;
00116 int m_axis;
00117 bool m_interior;
00118 Real m_dx;
00119 int m_symmetry;
00120
00121 private:
00122 DumbBellBL()
00123 {
00124 MayDay::Error("DumbBellBL uses strong construction");
00125 }
00126
00127 DumbBellBL(const DumbBellBL& a_radius)
00128 {
00129 MayDay::Error("DumbBellBaselevel disallows copy construction");
00130 }
00131
00132 void operator=(const DumbBellBL& a_radius)
00133 {
00134 MayDay::Error("DumbBellBL disallows assignment");
00135 }
00136 };
00137
00138 #endif