Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Troubled Cell Detection
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Laura Christine Kühle
Troubled Cell Detection
Commits
c41541c2
Commit
c41541c2
authored
Sep 22, 2020
by
Laura Christine Kühle
Browse files
Options
Downloads
Patches
Plain Diff
Changed every 'time' to 'current_time'.
parent
c34e69cf
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
DG_Approximation.py
+1
-1
1 addition, 1 deletion
DG_Approximation.py
Update_Scheme.py
+2
-2
2 additions, 2 deletions
Update_Scheme.py
with
3 additions
and
3 deletions
DG_Approximation.py
+
1
−
1
View file @
c41541c2
...
...
@@ -27,7 +27,7 @@ TODO: Check whether consistency is given/possible for each class instance
TODO: Make projection local variable -> Done
TODO: Vector faster than Trans for longer processes, therefore replace -> Done
TODO: Make sure time is changed to current_time everywhere
TODO: Make sure time is changed to current_time everywhere
-> Done
"""
import
numpy
as
np
...
...
This diff is collapsed.
Click to expand it.
Update_Scheme.py
+
2
−
2
View file @
c41541c2
...
...
@@ -43,11 +43,11 @@ class UpdateScheme(object):
def
get_time_history
(
self
):
return
self
.
time_history
def
step
(
self
,
projection
,
cfl_number
,
time
):
def
step
(
self
,
projection
,
cfl_number
,
current_
time
):
self
.
original_projection
=
projection
self
.
current_projection
=
projection
self
.
cfl_number
=
cfl_number
self
.
time
=
time
self
.
time
=
current_
time
self
.
_apply_stability_method
()
...
...
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