dune-fem 2.8.0
Loading...
Searching...
No Matches
diffusionmodel.hh
Go to the documentation of this file.
1#ifndef ELLIPTIC_MODEL_HH
2#define ELLIPTIC_MODEL_HH
3#warning "Deprecated header, #include <dune/fem/schemes/conservationlawmodel.hh>
4#include <dune/fem/schemes/conservationlawmodel.hh>
5
6namespace Dune {
7namespace Fem {
8
9 template< class GridPart, int dimDomain, int dimRange=dimDomain, class RangeField = double >
10 using DiffusionModel = ConservationLawModel< GridPart, dimDomain, dimRange, RangeField >;
11
12 template< class ModelImpl >
13 using DiffusionModelWrapper = ConservationLawModelWrapper< ModelImpl >;
14
15 template< class GridPart, int dimDomain, int dimRange=dimDomain, class RangeField = double >
16 using DGDiffusionModel = DGConservationLawModel< GridPart, dimDomain, dimRange, RangeField >;
17
18 template < class ModelImpl >
19 using DGDiffusionModelWrapper = DGConservationLawModelWrapper< ModelImpl >;
20
21}}
22
23#endif