Ignore:
Timestamp:
03/07/23 13:12:47 (2 years ago)
Author:
jdquinn
Message:

CHG: Attempt to call gmsh first, then find it at standard locations if it returns an error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.m

    r27632 r27635  
    1515%      md.mesh=gmshplanet('radius',6000,'resolution',100);
    1616
    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
    4018        [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'),
    4220                error(['gmshplanet: ' r]);
    4321        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
    4452        gmshmajorversion=str2num(r);
    4553        if ~ismember([3,4],gmshmajorversion),
Note: See TracChangeset for help on using the changeset viewer.