Skip to content

Commit

Permalink
More occurences
Browse files Browse the repository at this point in the history
  • Loading branch information
jbisits committed Jan 7, 2025
1 parent 27399b8 commit d157ea1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/single_interfaces_initial_conditions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function STSingleInterfaceInitialConditions(model, depth_of_interface, salinity,
interface_smoothing = NoSmoothing,
background_state = NoBackground)

eos = model.buoyancy.model.equation_of_state
eos = model.buoyancy.formulation.equation_of_state

R_ρ = compute_R_ρ(salinity, temperature, depth_of_interface, eos)

Expand Down
2 changes: 1 addition & 1 deletion src/staircase_initial_conditions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ struct STStaircaseInitialConditions{T} <: AbstractStaircaseInitialConditions
end
function STStaircaseInitialConditions(model, number_of_interfaces, depth_of_interfaces, salinity, temperature)

eos = model.buoyancy.model.equation_of_state
eos = model.buoyancy.formulation.equation_of_state

R_ρ = compute_R_ρ(salinity, temperature, depth_of_interfaces, eos)

Expand Down

0 comments on commit d157ea1

Please sign in to comment.