Changeset 16458
- Timestamp:
- 10/18/13 12:48:38 (11 years ago)
- Location:
- issm/trunk-jpl/src/m/classes
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/masstransport.m
r16363 r16458 84 84 md = checkfield(md,'masstransport.stabilization','values',[0 1 2 3]); 85 85 md = checkfield(md,'masstransport.min_thickness','>',0); 86 if ~isempty(md.masstransport.requested_outputs), 87 md = checkfield(md,'masstransport.requested_outputs','size',[1 NaN]); 88 end 86 md = checkfield(md,'masstransport.requested_outputs','stringrow',1); 89 87 90 88 end % }}} -
issm/trunk-jpl/src/m/classes/masstransport.py
r16388 r16458 65 65 md = checkfield(md,'masstransport.stabilization','values',[0,1,2,3]) 66 66 md = checkfield(md,'masstransport.min_thickness','>',0) 67 if md.masstransport.requested_outputs: 68 md = checkfield(md,'masstransport.requested_outputs','cell',1) 67 md = checkfield(md,'masstransport.requested_outputs','stringrow',1) 69 68 70 69 return md -
issm/trunk-jpl/src/m/classes/steadystate.m
r16363 r16458 34 34 md = checkmessage(md,['for a steadystate computation, timestepping.time_step must be zero.']); 35 35 end 36 md = checkfield(md,'steadystate.requested_outputs','stringrow',1); 36 37 37 38 if isnan(md.stressbalance.reltol), -
issm/trunk-jpl/src/m/classes/steadystate.py
r16388 r16458 51 51 md.checkmessage("for a steadystate computation, stressbalance.reltol (relative convergence criterion) must be defined!") 52 52 53 if md.steadystate.requested_outputs: 54 md = checkfield(md,'steadystate.requested_outputs','cell',1) 53 md = checkfield(md,'steadystate.requested_outputs','stringrow',1) 55 54 56 55 return md -
issm/trunk-jpl/src/m/classes/stressbalance.m
r16363 r16458 91 91 md = checkfield(md,'stressbalance.referential','size',[md.mesh.numberofvertices 6]); 92 92 md = checkfield(md,'stressbalance.loadingforce','size',[md.mesh.numberofvertices 3]); 93 if ~isempty(md.stressbalance.requested_outputs), 94 md = checkfield(md,'stressbalance.requested_outputs','size',[1 NaN]); 95 end 93 md = checkfield(md,'stressbalance.requested_outputs','stringrow',1); 96 94 97 95 %singular solution -
issm/trunk-jpl/src/m/classes/stressbalance.py
r16388 r16458 123 123 md = checkfield(md,'stressbalance.referential','size',[md.mesh.numberofvertices,6]) 124 124 md = checkfield(md,'stressbalance.loadingforce','size',[md.mesh.numberofvertices,3]) 125 if md.stressbalance.requested_outputs: 126 md = checkfield(md,'stressbalance.requested_outputs','cell',1); 125 md = checkfield(md,'stressbalance.requested_outputs','stringrow',1); 127 126 128 127 #singular solution -
issm/trunk-jpl/src/m/classes/transient.m
r16368 r16458 45 45 md = checkfield(md,'transient.isgia','numel',[1],'values',[0 1]); 46 46 md = checkfield(md,'transient.isdamage','numel',[1],'values',[0 1]); 47 if ~isempty(md.transient.requested_outputs), 48 md = checkfield(md,'transient.requested_outputs','size',[1 NaN]); 49 end 47 md = checkfield(md,'transient.requested_outputs','stringrow',1); 50 48 51 49 end % }}} -
issm/trunk-jpl/src/m/classes/transient.py
r16388 r16458 56 56 md = checkfield(md,'transient.isgroundingline','numel',[1],'values',[0,1]) 57 57 md = checkfield(md,'transient.isgia','numel',[1],'values',[0,1]) 58 if md.transient.requested_outputs: 59 md = checkfield(md,'transient.requested_outputs','cell',1) 58 md = checkfield(md,'transient.requested_outputs','stringrow',1) 60 59 61 60 return md
Note:
See TracChangeset
for help on using the changeset viewer.