- Edited
Hi folks:
Is it possible to transiently change the upperwater_melt_rate
and deepwater_melt_rate
parameters when using the linearbasalforcings()
function? For example, if I wanted to have a deepwater_melt_rate
of 20 m/yr for the first 10 years, and then change to 30 m/yr for the next 10 years, is this possible?
Does this do what I hope?
md.timestepping.start_time = 0;
md.timestepping.final_time = 30;
md.timestepping.time_step = 1/12;
md.basalforcings.deepwater_melt_rate = [20, 30; 0, 10+(1/12)]
I think this approach would linearly interpolate between 20 m/yr at time 0 and 30 m/yr at time 10+(1/12)? If I want a step-change to occur, do I just need to explicitly define a value for each time step (at leat between time 0 and 10+(1/12)?
Cheers,
Lawrence