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

RampBL.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 _RampBL_H_
00030 #define _RampBL_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 
00046 class RampBL: public BaseLevelSet
00047 {
00048 public:
00049 
00051 
00055   RampBL(const int&  a_upDir, 
00056          const int&  a_indepVar, 
00057          const Real& a_start,
00058          const Real& a_rampSlope);
00059 
00061 
00064   RampBL(const RealVect& a_rampNormal,
00065          const Real& a_alpha);
00066 
00068   virtual ~RampBL();
00069 
00071 
00075   virtual bool isRegular(const Box& region,
00076                          const Box& domain,
00077                          const RealVect& origin,
00078                          const Real& dx) const;
00079 
00081 
00085   virtual bool isCovered(const Box& region,
00086                          const Box& domain,
00087                          const RealVect& origin,
00088                          const Real& dx) const;
00089 
00091 
00101   pair<int, Side::LoHiSide> upDirection(const RealVect& a_midpt,const IntVect& a_iv) const; 
00102 
00104 
00109   virtual Real localFuncValue(const RealVect& a_independentCoords, 
00110                               const int& a_upDirection,
00111                               const IntVect& a_iv, 
00112                               const Box& a_domain, 
00113                               const RealVect& a_origin, 
00114                               const Real& a_dx) const;  
00115 
00116 
00118 
00122   virtual
00123   BaseLevelSet* new_baseLevelSet() const;       
00124 
00125 protected:
00126   //direction of largest normal
00127   pair<int, Side::LoHiSide>  m_upDir;
00128   RealVect m_rampNormal;
00129   Real     m_alpha;
00130 
00131   /*
00132   int  m_indepVar;
00133   Real m_start;
00134   Real m_rampSlope;
00135   */
00136 
00137 private:
00139   RampBL()
00140   {
00141     MayDay::Error("RampBL uses strong construction");
00142   }
00143   RampBL(const RampBL& a_ramplg)
00144   {
00145     MayDay::Error("RampBL disallows copy construction");
00146   }
00147   void operator=(const RampBL& a_ramplg)
00148   {
00149     MayDay::Error("RampBL disallows assignment");
00150   }
00151 
00152 };
00153 #endif

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