Skip to content

Commit

Permalink
Fix recovery
Browse files Browse the repository at this point in the history
  • Loading branch information
Ig-dolci committed Dec 18, 2024
1 parent 33d1e2b commit 3bae493
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gusto/recovery/recovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ def __init__(self, x_in, x_out, method='interpolate', boundary_method=None):
self.boundary_recoverers.append(BoundaryRecoverer(x_out_scalars[i],
method=BoundaryMethod.taylor,
eff_coords=eff_coords[i]))
self.interpolate_to_vector = interpolate(x_out_scalars, V_out)
self.interpolate_to_vector = interpolate(as_vector(x_out_scalars), V_out)

def project(self):
"""Perform the whole recovery step."""
Expand Down

0 comments on commit 3bae493

Please sign in to comment.