mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Split file to ensure correct authorship and license is applied.
This commit is contained in:
@@ -21,55 +21,8 @@
|
||||
#define OPM_WRITESYSTEMMATRIXHELPER_HEADER_INCLUDED
|
||||
|
||||
#include <dune/istl/matrixmarket.hh>
|
||||
#include <opm/simulators/linalg/MatrixMarketSpecializations.hpp>
|
||||
|
||||
namespace Opm
|
||||
{
|
||||
template<typename T, int i, int j>
|
||||
class MatrixBlock;
|
||||
}
|
||||
|
||||
namespace Dune
|
||||
{
|
||||
|
||||
namespace MatrixMarketImpl
|
||||
{
|
||||
|
||||
template <typename T, int i, int j, typename A>
|
||||
struct mm_header_printer<BCRSMatrix<Opm::MatrixBlock<T,i,j>, A>>
|
||||
{
|
||||
static void print(std::ostream& os)
|
||||
{
|
||||
os << "%%MatrixMarket matrix coordinate ";
|
||||
os << mm_numeric_type<T>::str() << " general" << std::endl;
|
||||
}
|
||||
};
|
||||
|
||||
template <typename T, int i, int j, typename A>
|
||||
struct mm_block_structure_header<BCRSMatrix<Opm::MatrixBlock<T,i,j>, A>>
|
||||
{
|
||||
using M = BCRSMatrix<Opm::MatrixBlock<T,i,j>, A>;
|
||||
static void print(std::ostream& os, const M&)
|
||||
{
|
||||
os << "% ISTL_STRUCT blocked ";
|
||||
os << i << " " << j << std::endl;
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace MatrixMarketImpl
|
||||
|
||||
template<class M>
|
||||
struct mm_multipliers;
|
||||
|
||||
template <typename T, int i, int j, typename A>
|
||||
struct mm_multipliers<BCRSMatrix<Opm::MatrixBlock<T,i,j>, A>>
|
||||
{
|
||||
enum {
|
||||
rows = i,
|
||||
cols = j
|
||||
};
|
||||
};
|
||||
|
||||
} // namespace Dune
|
||||
|
||||
namespace Opm
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user