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 _CylinderBL_H_
00029 #define _CylinderBL_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 CylinderBL: public BaseLevelSet
00047 {
00048 public:
00049
00051 CylinderBL(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
00059 virtual ~CylinderBL();
00060
00061
00062
00063
00064
00065
00066 virtual bool isRegular(const Box& a_region,
00067 const Box& a_domain,
00068 const RealVect& a_origin,
00069 const Real& a_dx) const;
00070
00072
00073
00074
00075
00076 virtual bool isCovered(const Box& a_region,
00077 const Box& a_domain,
00078 const RealVect& a_origin,
00079 const Real& a_dx) const;
00080
00082
00083
00084
00085
00086
00087
00088
00089 virtual pair<int, Side::LoHiSide> upDirection(const RealVect& a_midpt,const IntVect& a_iv) const;
00090
00092
00093
00094
00095
00096
00097 virtual Real localFuncValue(const RealVect& a_independentCoords,
00098 const int& a_upDirection,
00099 const IntVect& a_iv,
00100 const Box& a_domain,
00101 const RealVect& a_origin,
00102 const Real& a_dx) const;
00103
00104
00105
00106
00107 virtual BaseLevelSet* new_baseLevelSet() const;
00108
00109 protected:
00110 Real LevelSurface(const RealVect& a_vec) const;
00111
00112 RealVect m_center;
00113 Real m_radius;
00114 Real m_height;
00115 int m_axis;
00116 bool m_interior;
00117 Real m_dx;
00118
00119 private:
00120 CylinderBL()
00121 {
00122 MayDay::Error("CylinderBL uses strong construction");
00123 }
00124
00125 CylinderBL(const CylinderBL& a_radius)
00126 {
00127 MayDay::Error("CylinderBaselevel disallows copy construction");
00128 }
00129
00130 void operator=(const CylinderBL& a_radius)
00131 {
00132 MayDay::Error("CylinderBL disallows assignment");
00133 }
00134 };
00135
00136 #endif