Changeset 18305
- Timestamp:
- 07/30/14 15:22:36 (11 years ago)
- 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 87 87 fprintf(fid,'#PBS -o %s.outlog \n',modelname); 88 88 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); 90 92 fprintf(fid,'mpiexec -np %i %s/kriging.exe %s %s\n',cluster.np,cluster.codepath,[cluster.executionpath '/' modelname],modelname); 91 93 if ~io_gather, %concatenate the output files: -
issm/trunk-jpl/src/m/classes/clusters/pfe.m
r16285 r18305 129 129 fprintf(fid,'#PBS -e %s.errlog \n\n',modelname); 130 130 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'); 132 133 fprintf(fid,'module load mpi-sgi/mpt.2.06rp16\n'); 133 134 fprintf(fid,'export PATH="$PATH:."\n\n'); -
issm/trunk-jpl/src/m/classes/groundingline.m
r18303 r18305 48 48 pos=find(md.mask.groundedice_levelset>0.); 49 49 if any(abs(md.geometry.base(pos)-md.geometry.bed(pos))>10^-10), 50 md = checkmessage(md,['ba ase not equal to bed on grounded ice!']);50 md = checkmessage(md,['base not equal to bed on grounded ice!']); 51 51 end 52 52 if any(md.geometry.bed - md.geometry.base > 10^-9),
Note:
See TracChangeset
for help on using the changeset viewer.