Skip to content

Commit

Permalink
changed sign
Browse files Browse the repository at this point in the history
  • Loading branch information
Witt-D committed Sep 17, 2024
1 parent 998c2ce commit 1266714
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gusto/diagnostics/compressible_euler_diagnostics.py
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ def setup(self, domain, state_fields, vorticity_type=None):
vort = TrialFunction(space)
gamma = TestFunction(space)
a = inner(vort, gamma) * dx
L = -(inner(domain.perp(grad(gamma)), u)) * dx
L = (inner(domain.perp(grad(gamma)), u)) * dx
# TODO implement absolute version, unsure how to get corioilis in vertical slice smartly

problem = LinearVariationalProblem(a, L, self.field)
Expand Down

0 comments on commit 1266714

Please sign in to comment.