Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-tectonic
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
agnumpde
dune-tectonic
Commits
c8424a60
Commit
c8424a60
authored
12 years ago
by
Elias Pipping
Committed by
Elias Pipping
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
There is only one model now
The code for Laursen's model is long gone
parent
c7598f69
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/assemblers.cc
+11
-18
11 additions, 18 deletions
src/assemblers.cc
src/enum_model.cc
+0
-13
0 additions, 13 deletions
src/enum_model.cc
src/enums.hh
+0
-4
0 additions, 4 deletions
src/enums.hh
src/one-body-sample.parset
+0
-1
0 additions, 1 deletion
src/one-body-sample.parset
with
11 additions
and
36 deletions
src/assemblers.cc
+
11
−
18
View file @
c8424a60
...
...
@@ -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"
This diff is collapsed.
Click to expand it.
src/enum_model.cc
deleted
100644 → 0
+
0
−
13
View file @
c7598f69
#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"
);
}
};
This diff is collapsed.
Click to expand it.
src/enums.hh
+
0
−
4
View file @
c8424a60
...
...
@@ -2,10 +2,6 @@
#define ENUMS_HH
struct
Config
{
enum
model
{
Laursen
,
Exponential
};
enum
state_model
{
Dieterich
,
Ruina
...
...
This diff is collapsed.
Click to expand it.
src/one-body-sample.parset
+
0
−
1
View file @
c8424a60
...
...
@@ -53,7 +53,6 @@ a = 0.010
b
=
0
.
015
V0
=
1
L
=
1
e
-
5
model
=
Exponential
initial_log_state
= -
10
state_model
=
Dieterich
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment