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
24dbe3e1
Commit
24dbe3e1
authored
12 years ago
by
Elias Pipping
Committed by
Elias Pipping
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Solve the state problem first
parent
d31b3f65
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/one-body-sample.cc
+4
-6
4 additions, 6 deletions
src/one-body-sample.cc
with
4 additions
and
6 deletions
src/one-body-sample.cc
+
4
−
6
View file @
24dbe3e1
...
@@ -342,13 +342,12 @@ int main(int argc, char *argv[]) {
...
@@ -342,13 +342,12 @@ int main(int argc, char *argv[]) {
_ell
+=
gravityFunctional
;
_ell
+=
gravityFunctional
;
};
};
VectorType
ud
=
ud_initial
;
auto
const
state_fpi_max
=
auto
const
state_fpi_max
=
parset
.
get
<
size_t
>
(
"solver.tnnmg.fixed_point_iterations"
);
parset
.
get
<
size_t
>
(
"solver.tnnmg.fixed_point_iterations"
);
for
(
size_t
run
=
1
;
run
<=
timesteps
;
++
run
)
{
for
(
size_t
run
=
1
;
run
<=
timesteps
;
++
run
)
{
VectorType
u
;
VectorType
u
;
VectorType
ud
;
SingletonVectorType
alpha
;
SingletonVectorType
alpha
;
stateUpdater
->
extractState
(
alpha
);
stateUpdater
->
nextTimeStep
();
stateUpdater
->
nextTimeStep
();
timeSteppingScheme
->
nextTimeStep
();
timeSteppingScheme
->
nextTimeStep
();
...
@@ -394,15 +393,14 @@ int main(int argc, char *argv[]) {
...
@@ -394,15 +393,14 @@ int main(int argc, char *argv[]) {
double
const
fixedPointTolerance
=
double
const
fixedPointTolerance
=
parset
.
get
<
double
>
(
"solver.tnnmg.fixed_point_tolerance"
);
parset
.
get
<
double
>
(
"solver.tnnmg.fixed_point_tolerance"
);
for
(
size_t
state_fpi
=
1
;
state_fpi
<=
state_fpi_max
;
++
state_fpi
)
{
for
(
size_t
state_fpi
=
1
;
state_fpi
<=
state_fpi_max
;
++
state_fpi
)
{
solveDisplacementProblem
(
problem_iterate
,
alpha
);
stateUpdater
->
solve
(
ud
);
stateUpdater
->
extractState
(
alpha
);
solveDisplacementProblem
(
problem_iterate
,
alpha
);
timeSteppingScheme
->
postProcess
(
problem_iterate
);
timeSteppingScheme
->
postProcess
(
problem_iterate
);
timeSteppingScheme
->
extractDisplacement
(
u
);
timeSteppingScheme
->
extractDisplacement
(
u
);
timeSteppingScheme
->
extractVelocity
(
ud
);
timeSteppingScheme
->
extractVelocity
(
ud
);
stateUpdater
->
solve
(
ud
);
stateUpdater
->
extractState
(
alpha
);
iteration_writer
<<
iterationCounter
<<
" "
;
iteration_writer
<<
iterationCounter
<<
" "
;
if
(
parset
.
get
<
bool
>
(
"printProgress"
))
{
if
(
parset
.
get
<
bool
>
(
"printProgress"
))
{
std
::
cerr
<<
'.'
;
std
::
cerr
<<
'.'
;
...
...
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