|
1 | 1 | Slab test case
|
2 | 2 | ==============
|
3 | 3 |
|
4 |
| -WARNING: THIS TEST CASE IS IN DEVELOPMENT AND HAS NOT BEEN SCIENTIFICALLY VALIDATED. |
5 |
| -USE AT YOUR OWN RISK! |
| 4 | +This directory contains python scripts for running an experiment involving a |
| 5 | +uniform, infinite ice sheet ("slab") on an inclined plane. |
6 | 6 |
|
| 7 | +The test case is described in sections 5.1-5.2 of: |
| 8 | + Dukowicz, J. K., 2012, Reformulating the full-Stokes ice sheet model for a |
| 9 | + more efficient computational solution. The Cryosphere, 6, 21-34, |
| 10 | + doi:10.5194/tc-6-21-2012. |
7 | 11 |
|
8 |
| -This directory contains python scripts for running an experiment involving a |
9 |
| -uniform and infinite ice sheet ("slab") on an inclined plane. |
| 12 | +Some results from this test case are described in Sect. 3.4 of: |
| 13 | + Robinson, A., D. Goldberg, and W. H. Lipscomb, A comparison of the performance |
| 14 | + of depth-integrated ice-dynamics solvers. Submitted to The Cryosphere, Aug. 2021. |
| 15 | + |
| 16 | +The test case consists of an ice slab of uniform thickness moving down an |
| 17 | +inclined plane by a combination of sliding and shearing. |
| 18 | +Analytic Stokes and first-order velocity solutions exist for all values of Glen's n >= 1. |
| 19 | +The solutions for n = 1 are derived in Dukowicz (2012), and solutions for n > 1 |
| 20 | +are derived in an unpublished manuscript by Dukowicz (2013). |
| 21 | + |
| 22 | +The original scripts, runSlab.py and plotSlab.py, were written by Matt Hoffman |
| 23 | +with support for Glens' n = 1. They came with warnings that the test is not supported. |
| 24 | +The test is now supported, and the scripts include some new features: |
| 25 | + |
| 26 | +* The user may specify any n >= 1 (not necessarily an integer). |
| 27 | + The tests assume which_ho_efvs = 2 (nonlinear viscosity) with flow_law = 0 (constant A). |
| 28 | +* Physics parameters are no longer hard-coded. The user can enter the ice thickness, |
| 29 | + beta, viscosity coefficient (mu_n), and slope angle (theta) on the command line. |
| 30 | +* The user can specify time parameters dt (the dynamic time step) and nt (number of steps). |
| 31 | + The previous version did not support transient runs. |
| 32 | +* The user can specify a small thickness perturbation dh, which is added to the initial |
| 33 | + uniform thickness via random sampling from a Gaussian distribution. |
| 34 | + The perturbation will grow or decay, depending on the solver stability for given dx and dt. |
| 35 | + |
| 36 | +The run script is executed by a command like the following: |
| 37 | + |
| 38 | +> python runSlab.py -n 4 -a DIVA -theta 0.0375 -thk 1000. -mu 1.e5 -beta 1000. |
| 39 | +
|
| 40 | +In this case, the user runs on 4 processors with the DIVA solver, a slope angle of 0.0375 degrees, |
| 41 | +Glen's n = 1 (the default), slab thickness H = 1000 m, sliding coefficient beta = 1000 Pa (m/yr)^{-1}, |
| 42 | +and viscosity coefficient 1.e5 Pa yr. |
| 43 | +These parameters correspond to the thick shearing test case described by Robinson et al. (2021). |
| 44 | + |
| 45 | +To see the full set of command-line options, type 'python runSlab.py -h'. |
| 46 | + |
| 47 | +Notes on effective viscosity: |
| 48 | + * For n = 1, the viscosity coefficient mu_1 has a default value of 1.e6 Pa yr in the relation |
| 49 | + mu = mu_1 * eps((1-n)/n), where eps is the effective strain rate. |
| 50 | + * For n > 1, the user can specify a coefficient mu_n; otherwise the run script computes mu_n |
| 51 | + such that the basal and surface speeds are nearly the same as for an n = 1 case with the |
| 52 | + mu_1 = 1.e6 Pa yr and the same values of thickness, beta, and theta. |
| 53 | + * There is a subtle difference between the Dukowicz and CISM definitions of the |
| 54 | + effective strain rate; the Dukowicz value is twice as large. Later, it might be helpful |
| 55 | + to make the Dukowicz convention consistent with CISM.) |
| 56 | + |
| 57 | +The plotting script, plotSlab.py, is run by typing 'python plotSlab.py'. It creates two plots. |
| 58 | +The first plot shows the vertical velocity profile in nondimensional units and in units of m/yr. |
| 59 | +There is excellent agreement between higher-order CISM solutions and the analytic solution |
| 60 | +for small values of the slope angle theta. For steep slopes, the answers diverge as expected. |
| 61 | + |
| 62 | +For the second plot, the extent of the y-axis is wrong. This remains to be fixed. |
| 63 | + |
| 64 | +This directory also includes a new script, stabilitySlab.py, to carry out the stability tests |
| 65 | +described in Robinson et al. (2021). |
| 66 | + |
| 67 | +For a given set of physics parameters and stress-balance approximation (DIVA, L1L2, etc.), |
| 68 | +the script launches multiple CISM runs at a range of grid resolutions. |
| 69 | +At each grid resolution, the script determines the maximum stable time step. |
| 70 | +A run is deemed stable when the standard deviation of an initial small thickness perturbation |
| 71 | +is reduced over the course of 100 time steps. A run is unstable if the standard deviation |
| 72 | +increases or if the model aborts (usually with a CFL violation). |
| 73 | + |
| 74 | +To run the stability script, type a command like the following: |
| 75 | + |
| 76 | +> python stabilitySlab.py -n 4 -a DIVA -theta 0.0375 -thk 1000. -mu 1.e5 -beta 1000. \ |
| 77 | + -dh 0.1 -nt 100 -nr 12 -rmin 10. -rmax 40000. |
| 78 | + |
| 79 | +Here, the first few commands correspond to the thick shearing test case and are passed repeatedly |
| 80 | +to the run script. The remaining commands specify that each run will be initialized |
| 81 | +with a Gaussian perturbation of amplitude 0.1 m and run for 100 timesteps. |
| 82 | +The maximum stable timestep will be determined at 12 resolutions ranging from 10m to 40 km. |
| 83 | +This test takes several minutes to complete on a Macbook Pro with 4 cores. |
10 | 84 |
|
11 |
| -The test case is described in sections 5.1-2 of: |
12 |
| - J.K. Dukoqicz, 2012. Reformulating the full-Stokes ice sheet model for a |
13 |
| - more efficient computational solution. The Cryosphere, 6, 21-34. |
14 |
| - www.the-cryosphere.net/6/21/2012/ |
| 85 | +To see the full set of commmand line options, type 'python stabilitySlab.py -h'. |
15 | 86 |
|
16 |
| -Blatter-Pattyn First-order solution is described in J.K. Dukowicz, manuscript |
17 |
| -in preparation. |
| 87 | +For questions, please contact Willian Lipscomb ( [email protected]) or Gunter Leguy ( [email protected]). |
18 | 88 |
|
0 commit comments