Changeset 27635 for issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.m
- Timestamp:
- 03/07/23 13:12:47 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.m
r27632 r27635 15 15 % md.mesh=gmshplanet('radius',6000,'resolution',100); 16 16 17 %Find path to gmsh 18 paths={ 19 [getenv('ISSM_EXT_DIR') '/shared/gmsh/install/bin'],... 20 [getenv('ISSM_EXT_DIR') '/static/gmsh/install/bin'],... 21 [getenv('ISSM_EXT_DIR') '/gmsh/install/bin'],... 22 [issmdir() '/externalpackages/gmsh/install/bin'],... 23 [issmdir() '/bin'],... 24 ['/usr/bin']... 25 }; 26 gmshpath=''; 27 for i=paths 28 if exist([i{1} '/gmsh'],'file'), 29 gmshpath = i{1}; 30 break; 31 end 32 end 33 if isempty(gmshpath), 34 error('gmshplanet: gmsh executable not found!'); 35 end 36 37 setenv('PATH', [gmshpath ':' getenv('PATH')]); 38 39 % Get Gmsh version 17 %Get Gmsh version 40 18 [s,r]=system(['gmsh -info | command grep ''Version'' | sed -e ''s/Version[[:blank:]]*:[[:blank:]]//'' | cut -d ''.'' -f1']); 41 if s~=0 ||contains(r, 'dyld'),19 if contains(r, 'dyld'), 42 20 error(['gmshplanet: ' r]); 43 21 end 22 if s~=0, 23 %gmsh executable may not be on path; attempt to find it 24 25 paths={ 26 [getenv('ISSM_EXT_DIR') '/shared/gmsh/install/bin'],... 27 [getenv('ISSM_EXT_DIR') '/static/gmsh/install/bin'],... 28 [getenv('ISSM_EXT_DIR') '/gmsh/install/bin'],... 29 [issmdir() '/externalpackages/gmsh/install/bin'],... 30 [issmdir() '/bin'],... 31 ['/usr/bin']... 32 }; 33 gmshpath=''; 34 for i=paths 35 if exist([i{1} '/gmsh'],'file'), 36 gmshpath = i{1}; 37 break; 38 end 39 end 40 if isempty(gmshpath), 41 error('gmshplanet: gmsh executable not found!'); 42 end 43 setenv('PATH', [gmshpath ':' getenv('PATH')]); 44 45 %Get Gmsh version 46 [s,r]=system(['gmsh -info | command grep ''Version'' | sed -e ''s/Version[[:blank:]]*:[[:blank:]]//'' | cut -d ''.'' -f1']); 47 if contains(r, 'dyld'), 48 error(['gmshplanet: ' r]); 49 end 50 end 51 44 52 gmshmajorversion=str2num(r); 45 53 if ~ismember([3,4],gmshmajorversion),
Note:
See TracChangeset
for help on using the changeset viewer.