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

GenLevelOp.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 // DTGraves, Mon, July 26, 1999
00028 
00029 #ifndef _GENLEVELOP_H_
00030 #define _GENLEVELOP_H_
00031 
00032 #include <iostream>
00033 #include <math.h>
00034 #include <assert.h>
00035 #include <stdlib.h>
00036 
00037 #include "REAL.H"
00038 #include "LevelData.H"
00039 #include "LoHiSide.H"
00040 
00041 #include "GenAMRLevelMGOp.H"
00042 
00044 
00049 template <class T> class GenLevelOp: public GenAMRLevelMGOp<LevelData<T> >
00050 {
00051 public:
00053   GenLevelOp() {};
00054 
00056   virtual ~GenLevelOp() {};
00057 
00059 
00062   virtual GenLevelOp* newOp() const = 0;
00063 
00065 
00068   virtual void setToZero(LevelData<T>& a_one);
00069 
00071 
00074   virtual void copy(LevelData<T>&       a_one,
00075                     const LevelData<T>& a_two);
00076 
00078 
00081   virtual void scalarMul(LevelData<T>& a_one,
00082                          const Real    a_scalar);
00083 
00085 
00088   virtual void negate(LevelData<T>& a_one);
00089 
00091 
00094   virtual void sum(LevelData<T>&       a_one,
00095                    const LevelData<T>& a_two);
00096 
00098 
00101   virtual void diff(LevelData<T>&       a_one,
00102                     const LevelData<T>& a_two);
00103 
00105 
00108   virtual Real dotProduct(const LevelData<T>& a_one,
00109                           const LevelData<T>& a_two);
00110 
00112 
00115   virtual Real norm(const LevelData<T>& a_one,
00116                     const int           a_power);
00117 
00119 
00122   virtual void defineOpData(LevelData<T>& a_data);
00123 
00125 
00128   virtual void defineData(LevelData<T>& a_data);
00129 
00131 
00134   virtual void levelPreconditioner(LevelData<T>&       a_phihat,
00135                                    const LevelData<T>& a_rhshat) = 0;
00136 
00138 
00142   virtual void CFInterp(LevelData<T>&       a_phif,
00143                         const LevelData<T>& a_phic) = 0;
00144 
00146 
00149   virtual void homogeneousCFInterp(LevelData<T>& a_phif) = 0;
00150 
00152 
00154   virtual void homogeneousCFInterp(LevelData<T>&    a_phif, 
00155                                    const DataIndex& a_datInd, 
00156                                    int              a_idir, 
00157                                    Side::LoHiSide   a_hiorlo) = 0;
00158 };
00159 
00160 #include "GenLevelOpImplem.H"
00161 
00162 #endif

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