-
Notifications
You must be signed in to change notification settings - Fork 3
errors in diffusive_ice_column_model.jl #33
Copy link
Copy link
Open
Description
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.
In the current state of affairs, I think we need make the following changes:
| air_ice_temperature(x, y, t) = top_T_slope * t + top_T_amplitude * sin(2π*t/day) + initial_air_ice_temperature |
should become
air_ice_temperature(t) = top_T_slope * t + top_T_amplitude * sin(2π*t/day) + initial_air_ice_temperature
and
| ice_ocean_temperature(x, y, t) = bottom_T_slope * t + initial_ice_ocean_temperature |
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?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels