Skip to content

Commit f7f63ad

Browse files
authored
Delete AnelasticFormulation function
Removed the AnelasticFormulation function and its documentation.
1 parent 91efbc7 commit f7f63ad

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

src/AtmosphereModels/anelastic_formulation.jl

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -49,22 +49,6 @@ end
4949

5050
Base.show(io::IO, formulation::AnelasticFormulation) = print(io, "AnelasticFormulation")
5151

52-
"""
53-
$(TYPEDSIGNATURES)
54-
55-
Return an `AnelasticFormulation` on a given `grid`, for `state_constants`,
56-
and for `thermo`dynamics.
57-
"""
58-
function AnelasticFormulation(grid, state_constants, thermo)
59-
pᵣ = Field{Nothing, Nothing, Center}(grid)
60-
ρᵣ = Field{Nothing, Nothing, Center}(grid)
61-
set!(pᵣ, z -> reference_pressure(z, state_constants, thermo))
62-
set!(ρᵣ, z -> reference_density(z, state_constants, thermo))
63-
fill_halo_regions!(pᵣ)
64-
fill_halo_regions!(ρᵣ)
65-
return AnelasticFormulation(state_constants, pᵣ, ρᵣ)
66-
end
67-
6852
#####
6953
##### Thermodynamic state
7054
#####

0 commit comments

Comments
 (0)