KASKADE 7 development version
matrices.hh
Go to the documentation of this file.
1/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2/* */
3/* This file is part of the library KASKADE 7 */
4/* https://www.zib.de/research/projects/kaskade7-finite-element-toolbox */
5/* */
6/* Copyright (C) 2024-2024 Zuse Institute Berlin */
7/* */
8/* KASKADE 7 is distributed under the terms of the ZIB Academic License. */
9/* see $KASKADE/academic.txt */
10/* */
11/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
12
13#ifndef MATRICES_HH
14#define MATRICES_HH
15
17
18namespace Kaskade
19{
20
37 template <class Space, class Density, int m=1, class Scalar=double>
39 Density const& rho);
40
57 template <class Space, class Conductivity, int m=1, class Scalar=double>
59 Conductivity const& kappa);
60
61}
62
63#endif
A NUMA-aware compressed row storage matrix adhering mostly to the Dune ISTL interface (to complete....
NumaBCRSMatrix< Dune::FieldMatrix< Scalar, m, m > > stiffnessMatrix(Space const &space, Conductivity const &kappa)
Creates a stiffness matrix for the given FE space.
NumaBCRSMatrix< Dune::FieldMatrix< Scalar, m, m > > massMatrix(Space const &space, Density const &rho)
Creates a mass matrix for the given FE space.