Changeset 27488
- Timestamp:
- 01/01/23 07:29:35 (2 years ago)
- Location:
- issm/trunk-jpl/src/m/classes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/clusters/generic.m
r27262 r27488 122 122 if ismac, 123 123 if IssmConfig('_HAVE_MPI_'), 124 fprintf(fid,'mpiexec -np %i %s --leak-check=full -- error-limit=no --dsymutil=yes --suppressions=%s %s/%s %s %s %s 2> %s.errlog > %s.outlog ',...124 fprintf(fid,'mpiexec -np %i %s --leak-check=full --leak-check=full --show-leak-kinds=all --error-limit=no --dsymutil=yes --suppressions=%s %s/%s %s %s %s 2> %s.errlog > %s.outlog ',... 125 125 cluster.np,cluster.valgrind,cluster.valgrindsup,cluster.codepath,executable,solution,[cluster.executionpath '/' dirname], modelname,modelname,modelname); 126 126 else 127 fprintf(fid,'%s --leak-check=full --dsymutil=yes --error-limit=no -- suppressions=%s %s/%s %s %s %s 2> %s.errlog > %s.outlog',...127 fprintf(fid,'%s --leak-check=full --dsymutil=yes --error-limit=no --leak-check=full --show-leak-kinds=all --suppressions=%s %s/%s %s %s %s 2> %s.errlog > %s.outlog',... 128 128 cluster.valgrind,cluster.valgrindsup,cluster.codepath,executable,solution,[cluster.executionpath '/' dirname], modelname,modelname,modelname); 129 129 end -
issm/trunk-jpl/src/m/classes/hydrologyshakti.m
r23936 r27488 21 21 methods 22 22 function self = extrude(self,md) % {{{ 23 self.head = project3d(md, 'vector', self.head , 'type', 'node'); 24 self.gap_height = project3d(md, 'vector', self.gap_height, 'type', 'element'); 25 self.bump_spacing = project3d(md, 'vector', self.bump_spacing, 'type', 'element'); 26 self.bump_height = project3d(md, 'vector', self.bump_height, 'type', 'element'); 27 self.englacial_input = project3d(md, 'vector', self.englacial_input, 'type', 'node'); 28 self.moulin_input = project3d(md, 'vector', self.moulin_input, 'type', 'node'); 29 self.reynolds = project3d(md, 'vector', self.reynolds, 'type', 'element'); 30 self.neumannflux = project3d(md, 'vector', self.neumannflux, 'type', 'element'); 31 self.spchead = project3d(md, 'vector', self.spchead, 'type', 'node'); 23 32 end % }}} 24 33 function self = hydrologyshakti(varargin) % {{{
Note:
See TracChangeset
for help on using the changeset viewer.