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 #ifndef _ConcentricSphereBL_H_
00030 #define _ConcentricSphereBL_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 #include "BoxIterator.H"
00039 using std::pair;
00040
00042
00043
00044
00045
00046
00047 class ConcentricSphereBL: public BaseLevelSet
00048 {
00049 public:
00050
00052 ConcentricSphereBL(const Real& a_bigRadius,
00053 const Real& a_smallRadius,
00054 const RealVect& a_center,
00055 const Real& a_dx);
00056
00058 virtual ~ConcentricSphereBL();
00059
00060
00061
00062
00063
00064
00065 virtual bool isRegular(const Box& region,
00066 const Box& domain,
00067 const RealVect& origin,
00068 const Real& dx) const;
00069
00071
00072
00073
00074
00075 virtual bool isCovered(const Box& region,
00076 const Box& domain,
00077 const RealVect& origin,
00078 const Real& dx) const;
00079
00081
00082
00083
00084
00085
00086
00087
00088 virtual
00089 pair<int, Side::LoHiSide> upDirection(const RealVect& a_midpt,const IntVect& a_iv) const;
00090
00092
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
00109
00110 virtual
00111 BaseLevelSet* new_baseLevelSet() const;
00112
00113 virtual Real max(const RealVect& vec)const;
00114
00115 virtual Real magnitude(const RealVect& vec)const;
00116
00117
00118 protected:
00119
00120 RealVect m_center;
00121 Real m_bigRadius;
00122 Real m_smallRadius;
00123 Real m_dx;
00124
00125
00126 private:
00128 ConcentricSphereBL()
00129 {
00130 MayDay::Error("ConcentricSphereBL uses strong construction");
00131 }
00132 ConcentricSphereBL(const ConcentricSphereBL& a_radius)
00133 {
00134 MayDay::Error("sphereBaselevel disallows copy construction");
00135 }
00136 void operator=(const ConcentricSphereBL& a_radius)
00137 {
00138 MayDay::Error("ConcentricSphereBL disallows assignment");
00139 }
00140
00141 };
00142 #endif