Fix missing import in finiterectlat-scatter.py
[qpms.git] / examples / scuff-em-benchmarks / shapes / extrude.sh
blob6abcb67af2ed14709cc4aece8f69859a42232696
1 #!/bin/sh
3 sed -e "s/RADIUS/30./g" -e "s/HEIGHT/30./g" -e "s/ELEMSIZ/4./g" cylinder.geo.template >tmp.geo \
4 && gmsh tmp.geo -o cylinder_r30_h30_fine.msh -2
6 sed -e "s/RADIUS/30./g" -e "s/HEIGHT/30./g" -e "s/ELEMSIZ/7./g" cylinder.geo.template >tmp.geo \
7 && gmsh tmp.geo -o cylinder_r30_h30.msh -2
9 sed -e "s/RADIUS/30./g" -e "s/HEIGHT/30./g" -e "s/ELEMSIZ/15./g" cylinder.geo.template >tmp.geo \
10 && gmsh tmp.geo -o cylinder_r30_h30_rough.msh -2
12 sed -e "s/RADIUS/30./g" -e "s/HEIGHT/30./g" -e "s/ELEMSIZ/25./g" cylinder.geo.template >tmp.geo \
13 && gmsh tmp.geo -o cylinder_r30_h30_veryrough.msh -2
15 sed -e "s/RADIUS/100./g" -e "s/HEIGHT/50./g" -e "s/ELEMSIZ/13.3/g" cylinder.geo.template >tmp.geo \
16 && gmsh tmp.geo -o cylinder_r100_h50_fine.msh -2
18 sed -e "s/RADIUS/100./g" -e "s/HEIGHT/50./g" -e "s/ELEMSIZ/23.3/g" cylinder.geo.template >tmp.geo \
19 && gmsh tmp.geo -o cylinder_r100_h50.msh -2
21 sed -e "s/RADIUS/100./g" -e "s/HEIGHT/50./g" -e "s/ELEMSIZ/50./g" cylinder.geo.template >tmp.geo \
22 && gmsh tmp.geo -o cylinder_r100_h50_rough.msh -2
24 sed -e "s/RADIUS/100./g" -e "s/HEIGHT/50./g" -e "s/ELEMSIZ/83.3/g" cylinder.geo.template >tmp.geo \
25 && gmsh tmp.geo -o cylinder_r100_h50_veryrough.msh -2
27 rm tmp.geo