Skip to content

Commit

Permalink
#152: Consider steadiness per field
Browse files Browse the repository at this point in the history
  • Loading branch information
ddundo committed Nov 24, 2024
1 parent d4d5a33 commit 453416a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion goalie/mesh_seq.py
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ def _solve_forward(self, update_solutions=True, solver_kwargs=None):
next(solver_gen)
# Update the solution data
for field, sol in self.fields.items():
if not self.steady:
if not self.field_types[field] == "steady":
assert isinstance(sol, tuple)
solutions[field].forward[i][j].assign(sol[0])
solutions[field].forward_old[i][j].assign(sol[1])
Expand Down

0 comments on commit 453416a

Please sign in to comment.