Changeset 22771
- Timestamp:
- 05/15/18 08:27:05 (7 years ago)
- Location:
- issm/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/packagers/macosx/package.sh
r22768 r22771 7 7 cp ../externalpackages/mpich/install/bin/mpiexec . 8 8 cp ../externalpackages/mpich/install/bin/hydra_pmi_proxy . 9 echo "move gmsh to bin" 9 10 if [ -f ../externalpackages/gmsh/install/gmsh ]; then 10 11 cp ../externalpackages/gmsh/install/gmsh . 11 12 else 12 13 echo "gmsh not found" 14 fi 15 echo "move gmt to bin" 16 if [ -f ../externalpackages/gmt/install/gmt ]; then 17 cp ../externalpackages/gmt/install/gmt . 18 else 19 echo "gmt not found" 13 20 fi 14 21 -
issm/trunk/src/m/mesh/planet/gmsh/gmshplanet.m
r20500 r22771 102 102 end 103 103 104 %Find path to gmsh 105 paths = {[issmdir() '/bin/gmsh'],[issmdir() '/externalpackages/gmsh/install/gmsh']}; 106 gmshpath = ''; 107 for i=paths 108 if exist(i{1},'file'), 109 gmshpath = i{1} 110 end 111 end 112 if isempty(gmshpath), 113 error('gmt not found, make sure it is properly installed'); 114 end 115 104 116 %call gmsh 105 117 if exist(options,'refine'), 106 eval(['!gmsh-tol 1e-8 -2 sphere.geo -bgm sphere.pos']);118 system([gmshpath ' -tol 1e-8 -2 sphere.geo -bgm sphere.pos']); 107 119 else 108 %call gmsh 109 eval(['!gmsh -tol 1e-8 -2 sphere.geo']); 120 system([gmshpath ' -tol 1e-8 -2 sphere.geo']); 110 121 end 111 122 … … 163 174 164 175 %erase files: 165 eval(['!rm -rf sphere.geo sphere.msh sphere.pos']);176 system('rm -rf sphere.geo sphere.msh sphere.pos'); 166 177 167 178 %return mesh:
Note:
See TracChangeset
for help on using the changeset viewer.