Changeset 22771


Ignore:
Timestamp:
05/15/18 08:27:05 (7 years ago)
Author:
Mathieu Morlighem
Message:

CHG: fixing call to gmsh for workshop binaries

Location:
issm/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/packagers/macosx/package.sh

    r22768 r22771  
    77cp ../externalpackages/mpich/install/bin/mpiexec .
    88cp ../externalpackages/mpich/install/bin/hydra_pmi_proxy .
     9echo "move gmsh to bin"
    910if [ -f ../externalpackages/gmsh/install/gmsh ]; then
    1011        cp ../externalpackages/gmsh/install/gmsh .
    1112else
    1213        echo "gmsh not found"
     14fi
     15echo "move gmt to bin"
     16if [ -f ../externalpackages/gmt/install/gmt ]; then
     17        cp ../externalpackages/gmt/install/gmt .
     18else
     19        echo "gmt not found"
    1320fi
    1421
  • issm/trunk/src/m/mesh/planet/gmsh/gmshplanet.m

    r20500 r22771  
    102102        end
    103103
     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
    104116        %call gmsh
    105117        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']);
    107119        else
    108                 %call gmsh
    109                 eval(['!gmsh -tol 1e-8 -2 sphere.geo']);
     120                system([gmshpath ' -tol 1e-8 -2 sphere.geo']);
    110121        end
    111122
     
    163174
    164175        %erase files:
    165         eval(['!rm -rf sphere.geo sphere.msh sphere.pos']);
     176        system('rm -rf sphere.geo sphere.msh sphere.pos');
    166177
    167178        %return mesh:
Note: See TracChangeset for help on using the changeset viewer.