Skip to content
Snippets Groups Projects
Commit c8424a60 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

There is only one model now

The code for Laursen's model is long gone
parent c7598f69
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,6 @@
#include "enums.hh"
#include "enum_parser.cc"
#include "enum_model.cc"
// Assembles Neumann boundary term in f
template <class GridType, class GridView, class LocalVectorType, class FEBasis>
......@@ -66,27 +65,21 @@ assemble_nonlinearity(
SingletonVectorType mu(size);
mu = parset.get<double>("mu");
switch (parset.get<Config::model>("model")) {
case Config::Exponential: {
SingletonVectorType a(size);
a = parset.get<double>("a");
SingletonVectorType a(size);
a = parset.get<double>("a");
SingletonVectorType V0(size);
V0 = parset.get<double>("V0");
SingletonVectorType V0(size);
V0 = parset.get<double>("V0");
SingletonVectorType b(size);
b = parset.get<double>("b");
SingletonVectorType b(size);
b = parset.get<double>("b");
SingletonVectorType L(size);
L = parset.get<double>("L");
SingletonVectorType L(size);
L = parset.get<double>("L");
return Dune::make_shared<
Dune::GlobalRuinaNonlinearity<MatrixType, VectorType> const>(
nodalIntegrals, a, mu, V0, normalStress, b, state, L);
}
case Config::Laursen:
assert(false);
}
return Dune::make_shared<
Dune::GlobalRuinaNonlinearity<MatrixType, VectorType> const>(
nodalIntegrals, a, mu, V0, normalStress, b, state, L);
}
#include "assemblers_tmpl.cc"
#include <dune/common/exceptions.hh>
template <> struct StringToEnum<Config::model> {
static Config::model convert(std::string const &s) {
if (s == "Laursen")
return Config::Laursen;
if (s == "Exponential")
return Config::Exponential;
DUNE_THROW(Dune::Exception, "failed to parse enum");
}
};
......@@ -2,10 +2,6 @@
#define ENUMS_HH
struct Config {
enum model {
Laursen,
Exponential
};
enum state_model {
Dieterich,
Ruina
......
......@@ -53,7 +53,6 @@ a = 0.010
b = 0.015
V0 = 1
L = 1e-5
model = Exponential
initial_log_state = -10
state_model = Dieterich
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment