Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ElmerCSC
GitHub Repository: ElmerCSC/elmerfem
Path: blob/devel/elmerice/examples/Test_SSA/RunTest.sh
3203 views
1
## make the mesh
2
ElmerGrid 1 2 rectangle
3
4
5
#UpdateExport.f90: is a solver used to update auxiliary variables
6
#declared as "Exported Variable" in the solver section; accorded to their definition in the body Force.
7
#E.G. Here surface Elevation is a variable computed as Zs=Zb+H where H is solution of the thickness evolution equation.
8
9
## run the test
10
11
## ismip-hom test in 1D
12
ElmerSolver ismip_SSA_1D.sif
13
14
## ismip-hom test in 2D
15
#ElmerSolver ismip_SSA_2D.sif
16
17
## ismip-hom test in 2D but with a 3D mesh
18
#ElmerSolver ismip_SSA_3D.sif
19
20
## Grow an ice cap
21
#ElmerSolver SSA_IceSheet.sif
22
23
## Test the Weertman friction law with SSA
24
#ElmerSolver ismip_SSA_2D_Weertman.sif
25
26
## Test the Coulomb friction law with SSA
27
#ElmerSolver ismip_SSA_2D_Coulomb.sif
28
29