From 650198311ed4b32e0ab9af85e093a08c4982b39e Mon Sep 17 00:00:00 2001 From: Julia Sloan Date: Tue, 2 Jan 2024 11:49:03 -0800 Subject: [PATCH] change temps, saveat --- experiments/ClimaCore/sea_breeze/land_rhs.jl | 2 +- experiments/ClimaCore/sea_breeze/ocean_rhs.jl | 2 +- experiments/ClimaCore/sea_breeze/run.jl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/experiments/ClimaCore/sea_breeze/land_rhs.jl b/experiments/ClimaCore/sea_breeze/land_rhs.jl index efa1f2f30b..14cb4f1cb9 100644 --- a/experiments/ClimaCore/sea_breeze/land_rhs.jl +++ b/experiments/ClimaCore/sea_breeze/land_rhs.jl @@ -51,7 +51,7 @@ function lnd_init(; xmin = -1000, xmax = 1000, helem = 20, npoly = 0) ## initial condition T_sfc = map(coords) do coord - T_sfc = 283.0 + T_sfc = 288.0 end ## prognostic variable diff --git a/experiments/ClimaCore/sea_breeze/ocean_rhs.jl b/experiments/ClimaCore/sea_breeze/ocean_rhs.jl index b0386cfc6f..ec560ebc46 100644 --- a/experiments/ClimaCore/sea_breeze/ocean_rhs.jl +++ b/experiments/ClimaCore/sea_breeze/ocean_rhs.jl @@ -51,7 +51,7 @@ function ocn_init(; xmin = -1000, xmax = 1000, helem = 20, npoly = 0) ## initial condition T_sfc = map(coords) do coord - T_sfc = 257.0 + T_sfc = 252.0 end ## prognostic variable diff --git a/experiments/ClimaCore/sea_breeze/run.jl b/experiments/ClimaCore/sea_breeze/run.jl index 3291afbd68..d00ad0be91 100644 --- a/experiments/ClimaCore/sea_breeze/run.jl +++ b/experiments/ClimaCore/sea_breeze/run.jl @@ -117,7 +117,7 @@ system before executing the simulation. t_start, t_end = (0.0, 1e4) Δt_coupled = 0.1 -saveat = 1.0 +saveat = 1e2 atm_nsteps, ocn_nsteps, lnd_nsteps = (5, 1, 1) ## Initialize Models