From 3035819dda5653a3517e48b2a03861f9b05c0d7d Mon Sep 17 00:00:00 2001 From: Simone Silvestri Date: Mon, 23 Dec 2024 09:18:01 +0100 Subject: [PATCH] just remove it for now --- docs/make.jl | 4 ++-- examples/idealized_single_column_simulation.jl | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index ef8c9af3..c4608074 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -13,7 +13,7 @@ const EXAMPLES_DIR = joinpath(@__DIR__, "..", "examples") const OUTPUT_DIR = joinpath(@__DIR__, "src/literated") to_be_literated = [ - "ecco_inspect_temperature_salinity.jl", + # "ecco_inspect_temperature_salinity.jl", "generate_bathymetry.jl", "generate_surface_fluxes.jl", "single_column_os_papa_simulation.jl", @@ -42,7 +42,7 @@ pages = [ "Home" => "index.md", "Examples" => [ - "Inspect ECCO2 data" => "literated/ecco_inspect_temperature_salinity.md", + # "Inspect ECCO2 data" => "literated/ecco_inspect_temperature_salinity.md", "Generate bathymetry" => "literated/generate_bathymetry.md", "Surface fluxes" => "literated/generate_surface_fluxes.md", "Single-column simulation" => "literated/single_column_os_papa_simulation.md", diff --git a/examples/idealized_single_column_simulation.jl b/examples/idealized_single_column_simulation.jl index 3d11a552..e0b65734 100644 --- a/examples/idealized_single_column_simulation.jl +++ b/examples/idealized_single_column_simulation.jl @@ -29,8 +29,8 @@ parent(atmosphere.downwelling_radiation.shortwave) .= Qℓ # W grid = RectilinearGrid(size=100, z=(-400, 0), topology=(Flat, Flat, Bounded)) ocean = ocean_simulation(grid, coriolis=FPlane(; f)) -eos = ocean.model.buoyancy.model.equation_of_state -g = ocean.model.buoyancy.model.gravitational_acceleration +eos = ocean.model.buoyancy.formulation.equation_of_state +g = ocean.model.buoyancy.formulation.gravitational_acceleration α = SeawaterPolynomials.thermal_expansion(T₀, S₀, 0, eos) dTdz = N² / (α * g) Tᵢ(z) = T₀ + dTdz * z