Skip to content
Snippets Groups Projects
Commit dd587787 authored by Lars von Wolff's avatar Lars von Wolff
Browse files

Fixed typo in Base params

parent cc002f45
No related branches found
No related tags found
No related merge requests found
...@@ -369,3 +369,22 @@ public: ...@@ -369,3 +369,22 @@ public:
{ {
} }
}; };
template <typename Number, typename DW, typename Mobility, typename VelDissipation>
class Params_fs : public Params_base<Number, Mobility>
{
public:
Number delta;
DW dw;
VelDissipation vDis;
Params_fs(const Dune::ParameterTree& ptree) :
Params_base<Number, Mobility>(ptree),
delta(ptree.get("Phasefield.delta",this->eps)),
dw(ptree.sub("Phasefield")),
vDis(ptree.sub("Physics"))
{
}
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment