Hello,everyone:
For a transient simulation, we need a some forcings as input and i.e
md.smb.mass_balance` = [ smb smb-1];
md.smb.mass_balance = [ md.smb.mass_balance; [10 20]];
md.timestepping.time_step=1;
md.timestepping.final_time=20; % 200
We add a the variable (smb) to be forced value at the end of simulation (time=20). It's a time series and sometimes it just need only one value. Will it get more precise simulation results if we have more observation and input more time series value.
md.smb.mass_balance = [ smb; 1]
I find that some example final_time always have a forcing, but if I want to simulate and predict the results of 200 year in future. Must we need impose a forcing at time=200? In general, how long is most robust to simulation duration?
Thanks advance