Skip to content
Snippets Groups Projects
fassign.hh 7.95 KiB
Newer Older
  • Learn to ignore specific revisions
  • // -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
    // vi: set et ts=4 sw=2 sts=2:
    #ifndef DUNE_ASSIGN_HH
    #define DUNE_ASSIGN_HH
    
    #include <dune/common/fvector.hh>
    
    #include <dune/common/fmatrix.hh>
    
    Oliver Sander's avatar
    Oliver Sander committed
      /**
       * @file
       * @brief Classes for implementing an assignment to FieldVector from a comma-separated list
       */
      /** @addtogroup Common
       *
       * @{
       */
    
    
      /**
       * Emtpy namespace make this class and the object local to one object file
       */
      namespace {
    
         *  overload operator <<= for FieldVector assignment from Dune::Zero
    
        struct Zero {
    
    Christian Engwer's avatar
    Christian Engwer committed
          explicit Zero (int) {};
    
          /** \brief Conversion operator to double */
          operator double () { return 0.0; }
          /** \brief Conversion operator to int */
          operator int () { return 0; }
    
    Christian Engwer's avatar
    Christian Engwer committed
        } zero(0);
    
    Markus Blatt's avatar
    Markus Blatt committed
         *  overload operator <<= for FieldMatrix assignment
    
        struct NextRow {
    
    Christian Engwer's avatar
    Christian Engwer committed
          explicit NextRow (int) {};
        } nextRow(0);
    
      } // end empty namespace
    
      /**
       *  @brief fvector assignment operator
       *
       *  overload operator <<= for fvector assignment from Dune::Zero
       *
       *  after including fassing.hh you can easily assign data to a FieldVector
       *  using
       *
       *  @code
       *  FieldVector<double, 4> x; x <<= 1.0, 4.0, 10.0, 11.0;
       *  @endcode
       *
       *  The operator checks that the whole vector is initalized.
       *  In case you know that all following entries will be zero padded, you can use
       *
       *  @code
       *  FieldVector<double, 40> x; x <<= 1.0, 4.0, 10.0, 11.0, zero;
       *  @endcode
       *
       */
      template <class T, int s>
      class fvector_assigner
      {
      private:
        FieldVector<T,s> & v;
        int c;
        bool temporary;
    
    Christian Engwer's avatar
    Christian Engwer committed
        fvector_assigner();
    
      public:
        /*! @brief Copy Constructor */
        fvector_assigner(fvector_assigner & a) : v(a.v), c(a.c), temporary(false)
        {}
        /*! @brief Constructor from vector and temporary flag
    
    Christian Engwer's avatar
    Christian Engwer committed
           \param _v vector which should be initialized
    
           \param t bool indicating, that this is a temporary object (see ~fvector_assigner)
         */
        fvector_assigner(FieldVector<T,s> & _v, bool t) : v(_v), c(0), temporary(t)
        {};
        /*! @brief Destructor
           checks for complete initialization of the vector.
           The check is skipped, if this object is marked temporary.
         */
        ~fvector_assigner()
        {
          if (!temporary && c!=s)
            DUNE_THROW(MathError, "Trying to assign " << c <<
                       " entries to a FieldVector of size " << s);
        }
        /*! @brief append data to this vector */
        fvector_assigner & append (const T & t)
        {
          v[c++] = t;
          return *this;
        }
        /*! @brief append zeros to this vector
         */
        fvector_assigner & append (Zero z)
        {
          while (c!=s) v[c++] = 0;
          return *this;
        }
        /*! @brief append data to this vector
           the overloaded comma operator is used to assign a comma seperated list
           of values to the vector
         */
        fvector_assigner & operator , (const T & t)
        {
          return append(t);
        }
        /*! @brief append zeros to this vector
           the overloaded comma operator is used to stop the assign of values
           to the vector, all remaining entries are assigned 0.
         */
        fvector_assigner & operator , (Zero z)
        {
          return append(z);
        }
      };
    
      /**
       *  @brief fvector assignment operator
       *
       *  overload operator <<= for fvector assignment
       *  from comma seperated list of values
       */
    
    Christian Engwer's avatar
    Christian Engwer committed
      template <class T, class K, int s>
      fvector_assigner<T,s> operator <<= (FieldVector<T,s> & v, const K & t)
    
      {
        return fvector_assigner<T,s>(v,true).append(t);
      }
    
      /**
       *  @brief fvector assignment operator
       *
       *  overload operator <<= for fvector assignment from Dune::Zero
       */
      template <class T, int s>
      fvector_assigner<T,s> operator <<= (FieldVector<T,s> & v, Zero z)
      {
        return fvector_assigner<T,s>(v,true).append(z);
      }
    
    
    Markus Blatt's avatar
    Markus Blatt committed
       *  @brief fmatrix assignment operator
    
    Markus Blatt's avatar
    Markus Blatt committed
       *  overload operator <<= for fmatrix assignment from Dune::Zero
    
    Markus Blatt's avatar
    Markus Blatt committed
       *  after including fassing.hh you can easily assign data to a FieldMatrix
    
    Markus Blatt's avatar
    Markus Blatt committed
       *  FieldMatrix<double, 2,2> x; x <<= 1.0, 4.0, nextRow, 10.0, 11.0;
    
    Markus Blatt's avatar
    Markus Blatt committed
       *  The operator checks that the whole matrix is initalized.
       *  In case you know that all following entries of a row will be zero padded, you can use
    
    Markus Blatt's avatar
    Markus Blatt committed
       *  FieldMatrix<double, 4, 4> x; x <<= 1.0, zero, nextRow, 10.0, 11.0;
    
       *  @endcode
       *
       */
      template <class T, int n, int m>
      class fmatrix_assigner
      {
      private:
        FieldMatrix<T,n,m> & A;
        int c;
        int r;
        bool temporary;
    
    Markus Blatt's avatar
    Markus Blatt committed
        bool thrown;
    
    
    Markus Blatt's avatar
    Markus Blatt committed
          if (!temporary && c!=m && !thrown) {
            thrown=true;
    
            DUNE_THROW(MathError, "Trying to assign " << c <<
                       " entries to a FieldMatrix row of size " << m);
    
    Markus Blatt's avatar
    Markus Blatt committed
          }
    
    Markus Blatt's avatar
    Markus Blatt committed
        fmatrix_assigner(fmatrix_assigner & a) : A(a.A), c(a.c), r(a.r), temporary(false), thrown(a.thrown)
    
        {}
        /*! @brief Constructor from matrix and temporary flag
    
    Christian Engwer's avatar
    Christian Engwer committed
           \param _A matrix which should be initialized
    
           \param t bool indicating, that this is a temporary object (see ~fmatrix_assigner)
         */
    
    Markus Blatt's avatar
    Markus Blatt committed
        fmatrix_assigner(FieldMatrix<T,n,m> & _A, bool t) : A(_A), c(0), r(0), temporary(t),
                                                            thrown(false)
    
        {};
        /*! @brief Destructor
           checks for complete initialization of the matrix.
           The check is skipped, if this object is marked temporary.
         */
        ~fmatrix_assigner()
        {
          end_row();
    
    Markus Blatt's avatar
    Markus Blatt committed
          if (!temporary && r!=n-1 && !thrown) {
            thrown=true;
    
            DUNE_THROW(MathError, "Trying to assign " << r <<
                       " rows to a FieldMatrix of size " << n << " x " << m);
    
    Markus Blatt's avatar
    Markus Blatt committed
          }
    
        }
        /*! @brief append data to this matrix */
        fmatrix_assigner & append (const T & t)
        {
    
    Markus Blatt's avatar
    Markus Blatt committed
          // Check whether we have passed the last row
          if(r>=m) {
            thrown=true;
            DUNE_THROW(MathError, "Trying to assign more than " << m <<
                       " rows to a FieldMatrix of size " << n << " x " << m);
          }
    
          A[r][c++] = t;
          return *this;
        }
        /*! @brief append zeros to this matrix
         */
        fmatrix_assigner & append (Zero z)
        {
          while (c!=m) A[r][c++] = 0;
          return *this;
        }
    
    Markus Blatt's avatar
    Markus Blatt committed
        /*! @brief move to next row of the matrix
    
         */
        fmatrix_assigner & append (NextRow nr)
        {
          end_row();
          r++;
          return *this;
        }
        /*! @brief append data to this matrix
           the overloaded comma operator is used to assign a comma seperated list
           of values to the matrix
         */
        fmatrix_assigner & operator , (const T & t)
        {
          return append(t);
        }
        /*! @brief append zeros to this matrix
           the overloaded comma operator is used to stop the assign of values
           to the matrix, all remaining entries are assigned 0.
         */
        fmatrix_assigner & operator , (Zero z)
        {
          return append(z);
        }
        /*! @brief append zeros to this matrix
           the overloaded comma operator is used to stop the assign of values
    
    Markus Blatt's avatar
    Markus Blatt committed
           to the current row, it will be checked whether all entries have been
           assigned values.
    
         */
        fmatrix_assigner & operator , (NextRow nr)
        {
          return append(nr);
        }
      };
    
      /**
       *  @brief FieldMatrix assignment operator
       *
       *  overload operator <<= for FieldMatrix assignment
       *  from comma seperated list of values
       */
    
    Christian Engwer's avatar
    Christian Engwer committed
      template <class T, class K, int n, int m>
      fmatrix_assigner<T,n,m> operator <<= (FieldMatrix<T,n,m> & v, const K & t)
    
      {
        return fmatrix_assigner<T,n,m>(v,true).append(t);
      }
    
      /**
    
    Markus Blatt's avatar
    Markus Blatt committed
       *  @brief FieldMatrix assignment operator
    
       *
       *  overload operator <<= for FieldMatrix row assignment from Dune::Zero
       */
      template <class T, int n, int m>
      fmatrix_assigner<T,n,m> operator <<= (FieldMatrix<T,n,m> & v, Zero z)
      {
        return fmatrix_assigner<T,n,m>(v,true).append(z);
      }
    
    
    } // end namespace Dune
    
    #endif // DUNE_ASSIGN_HH