Changeset 18305


Ignore:
Timestamp:
07/30/14 15:22:36 (11 years ago)
Author:
Mathieu Morlighem
Message:

CHG: typo

Location:
issm/trunk-jpl/src/m/classes
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/clusters/greenplanet.m

    r17461 r18305  
    8787                         fprintf(fid,'#PBS -o %s.outlog \n',modelname);
    8888                         fprintf(fid,'#PBS -e %s.errlog \n\n',modelname);
    89                          %fprintf(fid,'cd %s/%s\n\n',cluster.executionpath,dirname);
     89                         fprintf(fid,'export ISSM_DIR="%s/../"\n',cluster.codepath); %FIXME
     90                         fprintf(fid,'source $ISSM_DIR/etc/environment.sh\n');       %FIXME
     91                         fprintf(fid,'cd %s/%s\n\n',cluster.executionpath,modelname);
    9092                         fprintf(fid,'mpiexec -np %i %s/kriging.exe %s %s\n',cluster.np,cluster.codepath,[cluster.executionpath '/' modelname],modelname);
    9193                         if ~io_gather, %concatenate the output files:
  • issm/trunk-jpl/src/m/classes/clusters/pfe.m

    r16285 r18305  
    129129                         fprintf(fid,'#PBS -e %s.errlog \n\n',modelname);
    130130                         fprintf(fid,'. /usr/share/modules/init/bash\n\n');
    131                          fprintf(fid,'module load comp-intel/2013.1.117\n');
     131                         fprintf(fid,'module load comp-intel/11.1.046\n');
     132                         fprintf(fid,'module load math/intel_mkl_64_10.0.011\n');
    132133                         fprintf(fid,'module load mpi-sgi/mpt.2.06rp16\n');
    133134                         fprintf(fid,'export PATH="$PATH:."\n\n');
  • issm/trunk-jpl/src/m/classes/groundingline.m

    r18303 r18305  
    4848                                pos=find(md.mask.groundedice_levelset>0.);
    4949                                if any(abs(md.geometry.base(pos)-md.geometry.bed(pos))>10^-10),
    50                                         md = checkmessage(md,['baase not equal to bed on grounded ice!']);
     50                                        md = checkmessage(md,['base not equal to bed on grounded ice!']);
    5151                                end
    5252                                if any(md.geometry.bed - md.geometry.base > 10^-9),
Note: See TracChangeset for help on using the changeset viewer.