Version 6 (modified by 4 years ago) ( diff ) | ,
---|
To perform parameter space studies, we need to submit multiple jobs with a parameter that changes value. Here is how you can do that for basal friction changing from 50 to 100 by increments of 1 (as an example).
We are going to use a variable in the MATLAB workspace called friction
that will be changing within a loop. In your runme.m
script, prepare your step with a dynamic step name:
Now, to submit jobs, set loadonly = 0
and launch your jobs:
for friction=50:100 runme; end
Once all the jobs are fully completed, you can set loadonly = 1
and run the same loop, all the results will be downloaded and the model will be saved with a unique name. Good luck!