We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
diffusive_ice_column_model.jl
diffusive_ice_column_model.jl defines two functions to be functions of (x, y, t), but the right hand side only depends on t and this causes an error.
(x, y, t)
t
In the current state of affairs, I think we need make the following changes:
ClimaSeaIce.jl/examples/diffusive_ice_column_model.jl
Line 31 in 2dee0f4
should become
air_ice_temperature(t) = top_T_slope * t + top_T_amplitude * sin(2π*t/day) + initial_air_ice_temperature
and
Line 32 in 2dee0f4
ice_ocean_temperature(t) = bottom_T_slope * t + initial_ice_ocean_temperature
With these changes plotting needs to be changes slightly in lines 42, 43, 189, and 190.
Do people agree?
The text was updated successfully, but these errors were encountered:
What matters is that the grid is Flat in x, y:
Flat
x, y
Line 13 in 2dee0f4
Since it is, then I agree the boundary conditions should be functions of t only.
Sorry, something went wrong.
PS, for code blocks, use triple backticks "```", rather than just a single backtick "`"
No branches or pull requests
diffusive_ice_column_model.jl
defines two functions to be functions of(x, y, t)
, but the right hand side only depends ont
and this causes an error.In the current state of affairs, I think we need make the following changes:
ClimaSeaIce.jl/examples/diffusive_ice_column_model.jl
Line 31 in 2dee0f4
should become
air_ice_temperature(t) = top_T_slope * t + top_T_amplitude * sin(2π*t/day) + initial_air_ice_temperature
and
ClimaSeaIce.jl/examples/diffusive_ice_column_model.jl
Line 32 in 2dee0f4
should become
ice_ocean_temperature(t) = bottom_T_slope * t + initial_ice_ocean_temperature
With these changes plotting needs to be changes slightly in lines 42, 43, 189, and 190.
Do people agree?
The text was updated successfully, but these errors were encountered: