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
9b43f618
Commit
9b43f618
authored
11 years ago
by
Elias Pipping
Committed by
Elias Pipping
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
problem_A -> problem_AB
parent
da59eb3f
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/one-body-sample.cc
+3
-3
3 additions, 3 deletions
src/one-body-sample.cc
src/timestepping.cc
+13
-13
13 additions, 13 deletions
src/timestepping.cc
src/timestepping.hh
+1
-1
1 addition, 1 deletion
src/timestepping.hh
with
17 additions
and
17 deletions
src/one-body-sample.cc
+
3
−
3
View file @
9b43f618
...
@@ -393,13 +393,13 @@ int main(int argc, char *argv[]) {
...
@@ -393,13 +393,13 @@ int main(int argc, char *argv[]) {
VectorType
ell
(
finestSize
);
VectorType
ell
(
finestSize
);
createRHS
(
time
,
ell
);
createRHS
(
time
,
ell
);
MatrixType
problem_A
;
MatrixType
problem_A
B
;
VectorType
problem_rhs
(
finestSize
);
VectorType
problem_rhs
(
finestSize
);
VectorType
problem_iterate
(
finestSize
);
VectorType
problem_iterate
(
finestSize
);
stateUpdater
->
setup
(
tau
);
stateUpdater
->
setup
(
tau
);
timeSteppingScheme
->
setup
(
ell
,
tau
,
time
,
problem_rhs
,
problem_iterate
,
timeSteppingScheme
->
setup
(
ell
,
tau
,
time
,
problem_rhs
,
problem_iterate
,
problem_A
);
problem_A
B
);
LoopSolver
<
VectorType
>
velocityProblemSolver
(
LoopSolver
<
VectorType
>
velocityProblemSolver
(
multigridStep
,
parset
.
get
<
size_t
>
(
"solver.tnnmg.maxiterations"
),
multigridStep
,
parset
.
get
<
size_t
>
(
"solver.tnnmg.maxiterations"
),
...
@@ -416,7 +416,7 @@ int main(int argc, char *argv[]) {
...
@@ -416,7 +416,7 @@ int main(int argc, char *argv[]) {
using
MyConvexProblemType
=
MyConvexProblem
<
MatrixType
,
VectorType
>
;
using
MyConvexProblemType
=
MyConvexProblem
<
MatrixType
,
VectorType
>
;
MyConvexProblemType
const
myConvexProblem
(
MyConvexProblemType
const
myConvexProblem
(
problem_A
,
*
myGlobalNonlinearity
,
problem_rhs
);
problem_A
B
,
*
myGlobalNonlinearity
,
problem_rhs
);
MyBlockProblem
<
MyConvexProblemType
>
velocityProblem
(
parset
,
MyBlockProblem
<
MyConvexProblemType
>
velocityProblem
(
parset
,
myConvexProblem
);
myConvexProblem
);
multigridStep
->
setProblem
(
_problem_iterate
,
velocityProblem
);
multigridStep
->
setProblem
(
_problem_iterate
,
velocityProblem
);
...
...
This diff is collapsed.
Click to expand it.
src/timestepping.cc
+
13
−
13
View file @
9b43f618
...
@@ -27,7 +27,7 @@ void ImplicitEuler<VectorType, MatrixType, FunctionType, dim>::nextTimeStep() {
...
@@ -27,7 +27,7 @@ void ImplicitEuler<VectorType, MatrixType, FunctionType, dim>::nextTimeStep() {
template
<
class
VectorType
,
class
MatrixType
,
class
FunctionType
,
int
dim
>
template
<
class
VectorType
,
class
MatrixType
,
class
FunctionType
,
int
dim
>
void
ImplicitEuler
<
VectorType
,
MatrixType
,
FunctionType
,
dim
>::
setup
(
void
ImplicitEuler
<
VectorType
,
MatrixType
,
FunctionType
,
dim
>::
setup
(
VectorType
const
&
ell
,
double
_tau
,
double
time
,
VectorType
&
problem_rhs
,
VectorType
const
&
ell
,
double
_tau
,
double
time
,
VectorType
&
problem_rhs
,
VectorType
&
problem_iterate
,
MatrixType
&
problem_A
)
{
VectorType
&
problem_iterate
,
MatrixType
&
problem_A
B
)
{
postProcessCalled
=
false
;
postProcessCalled
=
false
;
tau
=
_tau
;
tau
=
_tau
;
...
@@ -36,8 +36,8 @@ void ImplicitEuler<VectorType, MatrixType, FunctionType, dim>::setup(
...
@@ -36,8 +36,8 @@ void ImplicitEuler<VectorType, MatrixType, FunctionType, dim>::setup(
Arithmetic
::
addProduct
(
problem_rhs
,
-
1.0
,
A
,
u_old
);
Arithmetic
::
addProduct
(
problem_rhs
,
-
1.0
,
A
,
u_old
);
// For fixed tau, we'd only really have to do this once
// For fixed tau, we'd only really have to do this once
problem_A
=
A
;
problem_A
B
=
A
;
problem_A
*=
tau
;
problem_A
B
*=
tau
;
// ud_old makes a good initial iterate; we could use anything, though
// ud_old makes a good initial iterate; we could use anything, though
problem_iterate
=
ud_old
;
problem_iterate
=
ud_old
;
...
@@ -123,7 +123,7 @@ void Newmark<VectorType, MatrixType, FunctionType, dim>::nextTimeStep() {
...
@@ -123,7 +123,7 @@ void Newmark<VectorType, MatrixType, FunctionType, dim>::nextTimeStep() {
template
<
class
VectorType
,
class
MatrixType
,
class
FunctionType
,
int
dim
>
template
<
class
VectorType
,
class
MatrixType
,
class
FunctionType
,
int
dim
>
void
Newmark
<
VectorType
,
MatrixType
,
FunctionType
,
dim
>::
setup
(
void
Newmark
<
VectorType
,
MatrixType
,
FunctionType
,
dim
>::
setup
(
VectorType
const
&
ell
,
double
_tau
,
double
time
,
VectorType
&
problem_rhs
,
VectorType
const
&
ell
,
double
_tau
,
double
time
,
VectorType
&
problem_rhs
,
VectorType
&
problem_iterate
,
MatrixType
&
problem_A
)
{
VectorType
&
problem_iterate
,
MatrixType
&
problem_A
B
)
{
postProcessCalled
=
false
;
postProcessCalled
=
false
;
tau
=
_tau
;
tau
=
_tau
;
...
@@ -138,10 +138,10 @@ void Newmark<VectorType, MatrixType, FunctionType, dim>::setup(
...
@@ -138,10 +138,10 @@ void Newmark<VectorType, MatrixType, FunctionType, dim>::setup(
Dune
::
MatrixIndexSet
indices
(
A
.
N
(),
A
.
M
());
Dune
::
MatrixIndexSet
indices
(
A
.
N
(),
A
.
M
());
indices
.
import
(
A
);
indices
.
import
(
A
);
indices
.
import
(
B
);
indices
.
import
(
B
);
indices
.
exportIdx
(
problem_A
);
indices
.
exportIdx
(
problem_A
B
);
problem_A
=
0.0
;
problem_A
B
=
0.0
;
Arithmetic
::
addProduct
(
problem_A
,
tau
/
2.0
,
A
);
Arithmetic
::
addProduct
(
problem_A
B
,
tau
/
2.0
,
A
);
Arithmetic
::
addProduct
(
problem_A
,
2.0
/
tau
,
B
);
Arithmetic
::
addProduct
(
problem_A
B
,
2.0
/
tau
,
B
);
// ud_old makes a good initial iterate; we could use anything, though
// ud_old makes a good initial iterate; we could use anything, though
problem_iterate
=
ud_old
;
problem_iterate
=
ud_old
;
...
@@ -231,7 +231,7 @@ void EulerPair<VectorType, MatrixType, FunctionType, dim>::nextTimeStep() {
...
@@ -231,7 +231,7 @@ void EulerPair<VectorType, MatrixType, FunctionType, dim>::nextTimeStep() {
template
<
class
VectorType
,
class
MatrixType
,
class
FunctionType
,
int
dim
>
template
<
class
VectorType
,
class
MatrixType
,
class
FunctionType
,
int
dim
>
void
EulerPair
<
VectorType
,
MatrixType
,
FunctionType
,
dim
>::
setup
(
void
EulerPair
<
VectorType
,
MatrixType
,
FunctionType
,
dim
>::
setup
(
VectorType
const
&
ell
,
double
_tau
,
double
time
,
VectorType
&
problem_rhs
,
VectorType
const
&
ell
,
double
_tau
,
double
time
,
VectorType
&
problem_rhs
,
VectorType
&
problem_iterate
,
MatrixType
&
problem_A
)
{
VectorType
&
problem_iterate
,
MatrixType
&
problem_A
B
)
{
postProcessCalled
=
false
;
postProcessCalled
=
false
;
tau
=
_tau
;
tau
=
_tau
;
...
@@ -244,10 +244,10 @@ void EulerPair<VectorType, MatrixType, FunctionType, dim>::setup(
...
@@ -244,10 +244,10 @@ void EulerPair<VectorType, MatrixType, FunctionType, dim>::setup(
Dune
::
MatrixIndexSet
indices
(
A
.
N
(),
A
.
M
());
Dune
::
MatrixIndexSet
indices
(
A
.
N
(),
A
.
M
());
indices
.
import
(
A
);
indices
.
import
(
A
);
indices
.
import
(
B
);
indices
.
import
(
B
);
indices
.
exportIdx
(
problem_A
);
indices
.
exportIdx
(
problem_A
B
);
problem_A
=
0.0
;
problem_A
B
=
0.0
;
Arithmetic
::
addProduct
(
problem_A
,
tau
,
A
);
Arithmetic
::
addProduct
(
problem_A
B
,
tau
,
A
);
Arithmetic
::
addProduct
(
problem_A
,
1.0
/
tau
,
B
);
Arithmetic
::
addProduct
(
problem_A
B
,
1.0
/
tau
,
B
);
// ud_old makes a good initial iterate; we could use anything, though
// ud_old makes a good initial iterate; we could use anything, though
problem_iterate
=
ud_old
;
problem_iterate
=
ud_old
;
...
...
This diff is collapsed.
Click to expand it.
src/timestepping.hh
+
1
−
1
View file @
9b43f618
...
@@ -9,7 +9,7 @@ class TimeSteppingScheme {
...
@@ -9,7 +9,7 @@ class TimeSteppingScheme {
void
virtual
nextTimeStep
()
=
0
;
void
virtual
nextTimeStep
()
=
0
;
void
virtual
setup
(
VectorType
const
&
ell
,
double
_tau
,
double
time
,
void
virtual
setup
(
VectorType
const
&
ell
,
double
_tau
,
double
time
,
VectorType
&
problem_rhs
,
VectorType
&
problem_iterate
,
VectorType
&
problem_rhs
,
VectorType
&
problem_iterate
,
MatrixType
&
problem_A
)
=
0
;
MatrixType
&
problem_A
B
)
=
0
;
void
virtual
postProcess
(
VectorType
const
&
problem_iterate
)
=
0
;
void
virtual
postProcess
(
VectorType
const
&
problem_iterate
)
=
0
;
void
virtual
extractDisplacement
(
VectorType
&
displacement
)
const
=
0
;
void
virtual
extractDisplacement
(
VectorType
&
displacement
)
const
=
0
;
...
...
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