Skip to content
Snippets Groups Projects
Commit c41541c2 authored by Laura Christine Kühle's avatar Laura Christine Kühle
Browse files

Changed every 'time' to 'current_time'.

parent c34e69cf
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment