Skip to content
Snippets Groups Projects
unitvector.hh 1.63 KiB
Newer Older
  • Learn to ignore specific revisions
  • #ifndef UNIT_VECTOR_HH
    #define UNIT_VECTOR_HH
    
    #include <dune/common/fvector.hh>
    
    template <int dim>
    class UnitVector
    {
    public:
    
        typedef Dune::FieldVector<double,dim> TangentVector;
        typedef Dune::FieldVector<double,dim> EmbeddedTangentVector;
    
        UnitVector<dim>& operator=(const Dune::FieldVector<double,dim>& vector)
        {
            data_ = vector;
            data_ /= data_.two_norm();
            return *this;
        }
    
    
         /** \brief The exponention map */
        static UnitVector exp(const UnitVector& p, const TangentVector& v) {
            const double norm = v.two_norm();
            UnitVector result = p;
            result.data_ *= std::cos(norm);
            result.data_.axpy(std::sin(norm)/norm, v);
            return result;
        }
    
    
        /** \brief Length of the great arc connecting the two points */
         static double distance(const UnitVector& a, const UnitVector& b) {
            return std::acos(a.data_ * b.data_);
        }
    
    
        /** \brief Compute the gradient of the squared distance function keeping the first argument fixed
    
        Unlike the distance itself the squared distance is differentiable at zero
         */
        static EmbeddedTangentVector derivativeOfDistanceSquaredWRTSecondArgument(const UnitVector& a, const UnitVector& b) {
            EmbeddedTangentVector result = a.data_;
            result *= -2*std::acos(a.data_ * b.data_) / std::sqrt(1-(a.data_*b.data_)*(a.data_*b.data_));
            return result;
        }
    
    
        /** \brief Write LocalKey object to output stream */
        friend std::ostream& operator<< (std::ostream& s, const UnitVector& unitVector)
        {
            return s << unitVector.data_;
        }
    
    
    private:
    
        Dune::FieldVector<double,dim> data_;
    };
    
    #endif