Skip to content

Commit 1bdc28f

Browse files
authored
Bump version from 0.101.0 to 0.101.1 (#4934)
1 parent ead1c18 commit 1bdc28f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Oceananigans"
22
uuid = "9e8cae18-63c1-5223-a75c-80ca9d6e9a09"
33
authors = ["Climate Modeling Alliance and contributors"]
4-
version = "0.101.0"
4+
version = "0.101.1"
55

66
[deps]
77
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"

src/BuoyancyFormulations/buoyancy_force.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ struct BuoyancyForce{M, G, B}
1313
end
1414

1515
"""
16-
BuoyancyForce(grid, formulation::AbstractBuoyancyFormulation; gravity_unit_vector=NegativeZDirection(), materialize_gradients=true)
16+
BuoyancyForce(grid, formulation::AbstractBuoyancyFormulation; gravity_unit_vector=NegativeZDirection(), materialize_gradients=false)
1717
1818
Construct a `buoyancy` given a buoyancy `formulation`. Optional keyword argument `gravity_unit_vector`
1919
can be used to specify the direction of gravity (default `NegativeZDirection()`).
2020
The buoyancy acceleration acts in the direction opposite to gravity.
21-
If `materialize_gradients` is true (default), the buoyancy gradients will be precomputed and stored in fields for
21+
If `materialize_gradients` is true (default is false), the buoyancy gradients will be precomputed and stored in fields for
2222
performance reasons. For `materialize_gradients=true`, the `grid` argument must be provided.
2323
2424
Example

0 commit comments

Comments
 (0)