Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dg
dg
Commits
ecb204e6
Commit
ecb204e6
authored
Jan 25, 2017
by
Valentin Vallaeys
Browse files
fix bug
parent
3bc88abe
Pipeline
#1692
passed with stage
in 27 minutes and 41 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
dgpy/scripts/slim.py
View file @
ecb204e6
...
...
@@ -1124,6 +1124,7 @@ class Loop:
equation
.
_sys_tracer
=
slim_private
.
_new_default_linear_system
(
equation
.
_domain
,
equation
.
_equation
)
equation
.
_temporal_solver
=
dgpy
.
dgMERK
(
equation
.
_equation
,
equation
.
_sys_tracer
.
dof_manager
,
dgpy
.
DG_ERK_EULER
)
elif
equation
.
_temporal_scheme
==
"implicit"
:
equation
.
_sys_tracer1
=
slim_private
.
_new_default_linear_system
(
equation
.
_domain
,
equation
.
_equation
)
equation
.
_sys_tracer2
=
slim_private
.
_new_default_linear_system
(
equation
.
_domain
,
equation
.
_equation
)
equation
.
_temporal_solver
=
dgpy
.
dgMDIRK
(
equation
.
_equation
,
equation
.
_sys_tracer1
.
dof_manager
,
equation
.
_sys_tracer2
.
dof_manager
,
2
)
equation
.
_temporal_solver
.
getNewton
().
setVerb
(
10
)
...
...
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