Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tommbendall committed Oct 8, 2023
1 parent be63aea commit 9c7f7ce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gusto/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,4 +199,4 @@ class BoundaryLayerParameters(Configuration):
coeff_heat = 1.1e-3 # Dimensionless surface sensible heat coefficient
coeff_evap = 1.1e-3 # Dimensionless surface evaporation coefficient
height_surface_layer = 75. # Height (m) of surface level (usually lowest level)
mu = 100. # Interior penalty coefficient for vertical diffusion
mu = 100. # Interior penalty coefficient for vertical diffusion
2 changes: 1 addition & 1 deletion integration-tests/physics/test_boundary_layer_mixing.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,4 +140,4 @@ def test_boundary_layer_mixing(tmpdir, field_name, recovered, semi_implicit):
initial_data, _ = domain.coords.get_column_data(initial_field, domain)

# Check first column
assert field_data[0,0] < 0.999*initial_data[0,0]
assert field_data[0, 0] < 0.999*initial_data[0, 0]
2 changes: 1 addition & 1 deletion integration-tests/physics/test_suppress_vertical_wind.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,4 @@ def test_suppress_vertical_wind(tmpdir):
vertical_wind.interpolate(dot(u, domain.k))

tol = 1e-12
assert norm(vertical_wind) < tol
assert norm(vertical_wind) < tol

0 comments on commit 9c7f7ce

Please sign in to comment.