Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dumux-repositories
dumux-course
Commits
e964d079
Commit
e964d079
authored
Dec 21, 2018
by
Timo Koch
Browse files
[fixup] Remove restart
parent
0c8e99e3
Changes
9
Show whitespace changes
Inline
Side-by-side
exercises/exercise-basic/exercise_basic_2p.cc
View file @
e964d079
...
...
@@ -91,6 +91,7 @@ int main(int argc, char** argv) try
// the solution vector
using
SolutionVector
=
GetPropType
<
TypeTag
,
Properties
::
SolutionVector
>
;
SolutionVector
x
;
problem
->
applyInitialSolution
(
x
);
auto
xOld
=
x
;
...
...
exercises/exercise-basic/exercise_basic_2p2c.cc
View file @
e964d079
...
...
@@ -91,7 +91,7 @@ int main(int argc, char** argv) try
// the solution vector
using
SolutionVector
=
GetPropType
<
TypeTag
,
Properties
::
SolutionVector
>
;
SolutionVector
x
(
fvGridGeometry
->
numDofs
())
;
SolutionVector
x
;
problem
->
applyInitialSolution
(
x
);
auto
xOld
=
x
;
...
...
@@ -115,7 +115,7 @@ int main(int argc, char** argv) try
vtkWriter
.
write
(
0.0
);
// instantiate time loop
auto
timeLoop
=
std
::
make_shared
<
TimeLoop
<
Scalar
>>
(
restartTime
,
dt
,
tEnd
);
auto
timeLoop
=
std
::
make_shared
<
TimeLoop
<
Scalar
>>
(
0.0
,
dt
,
tEnd
);
timeLoop
->
setMaxTimeStepSize
(
maxDt
);
// the assembler with time loop for instationary problem
...
...
exercises/exercise-grids/exercise_grids.cc
View file @
e964d079
...
...
@@ -91,6 +91,7 @@ int main(int argc, char** argv) try
// the solution vector
using
SolutionVector
=
GetPropType
<
TypeTag
,
Properties
::
SolutionVector
>
;
SolutionVector
x
;
problem
->
applyInitialSolution
(
x
);
auto
xOld
=
x
;
...
...
exercises/exercise-properties/exercise_properties.cc
View file @
e964d079
...
...
@@ -122,6 +122,7 @@ int main(int argc, char** argv) try
// the solution vector
using
SolutionVector
=
GetPropType
<
TypeTag
,
Properties
::
SolutionVector
>
;
SolutionVector
x
;
problem
->
applyInitialSolution
(
x
);
auto
xOld
=
x
;
...
...
exercises/exercise-runtimeparams/exercise_runtimeparams.cc
View file @
e964d079
...
...
@@ -91,6 +91,7 @@ int main(int argc, char** argv) try
// the solution vector
using
SolutionVector
=
GetPropType
<
TypeTag
,
Properties
::
SolutionVector
>
;
SolutionVector
x
;
problem
->
applyInitialSolution
(
x
);
auto
xOld
=
x
;
...
...
exercises/solution/exercise-basic/exercise_basic_2pni.cc
View file @
e964d079
...
...
@@ -91,6 +91,7 @@ int main(int argc, char** argv) try
// the solution vector
using
SolutionVector
=
GetPropType
<
TypeTag
,
Properties
::
SolutionVector
>
;
SolutionVector
x
;
problem
->
applyInitialSolution
(
x
);
auto
xOld
=
x
;
...
...
exercises/solution/exercise-grids/exercise_grids_solution.cc
View file @
e964d079
...
...
@@ -91,6 +91,7 @@ int main(int argc, char** argv) try
// the solution vector
using
SolutionVector
=
GetPropType
<
TypeTag
,
Properties
::
SolutionVector
>
;
SolutionVector
x
;
problem
->
applyInitialSolution
(
x
);
auto
xOld
=
x
;
...
...
exercises/solution/exercise-properties/exercise_properties_solution.cc
View file @
e964d079
...
...
@@ -123,6 +123,7 @@ int main(int argc, char** argv) try
// the solution vector
using
SolutionVector
=
GetPropType
<
TypeTag
,
Properties
::
SolutionVector
>
;
SolutionVector
x
;
problem
->
applyInitialSolution
(
x
);
auto
xOld
=
x
;
...
...
exercises/solution/exercise-runtimeparams/exercise_runtimeparams_solution.cc
View file @
e964d079
...
...
@@ -91,6 +91,7 @@ int main(int argc, char** argv) try
// the solution vector
using
SolutionVector
=
GetPropType
<
TypeTag
,
Properties
::
SolutionVector
>
;
SolutionVector
x
;
problem
->
applyInitialSolution
(
x
);
auto
xOld
=
x
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment