Skip to content
Snippets Groups Projects
Select Git revision
  • b81d75b43f0c2d563bbf25bc527a5480f74bbd82
  • 2016-PippingKornhuberRosenauOncken default
  • 2022-Strikeslip-Benchmark
  • 2021-GraeserKornhuberPodlesny
  • Dissertation2021 protected
  • separate-deformation
  • AverageCrosspoints
  • old_solver_new_datastructure
  • last_working
  • 2014-Dissertation-Pipping
  • 2013-PippingSanderKornhuber
11 results

explicitvectors.hh

Blame
  • Forked from agnumpde / dune-tectonic
    201 commits behind the upstream repository.
    user avatar
    Elias Pipping authored
    b81d75b4
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    explicitvectors.hh 478 B
    #ifndef SRC_EXPLICITVECTORS_HH
    #define SRC_EXPLICITVECTORS_HH
    
    #include <dune/common/fmatrix.hh>
    #include <dune/common/fvector.hh>
    #include <dune/istl/bcrsmatrix.hh>
    #include <dune/istl/bvector.hh>
    
    using LocalVector = Dune::FieldVector<double, DIM>;
    using LocalMatrix = Dune::FieldMatrix<double, DIM, DIM>;
    using Vector = Dune::BlockVector<LocalVector>;
    using Matrix = Dune::BCRSMatrix<LocalMatrix>;
    using ScalarVector = Dune::BlockVector<Dune::FieldVector<double, 1>>;
    #endif