Changeset 24162
- Timestamp:
- 09/25/19 17:36:27 (6 years ago)
- Location:
- issm/trunk-jpl/src/m/classes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/qmu.m
r22840 r24162 65 65 end 66 66 if ~isempty(md.qmu.partition), 67 if numel(md.qmu.partition)~=md.mesh.numberofvertices & numel(md.qmu.partition)~=md.mesh.numberofelements,67 if (numel(md.qmu.partition)~=md.mesh.numberofvertices & numel(md.qmu.partition)~=md.mesh.numberofelements) | size(md.qmu.partition,2)~=1, 68 68 md = checkmessage(md,['user supplied partition for qmu analysis should have size md.mesh.numberofvertices x 1 or md.mesh.numberofelements x 1']); 69 69 end -
issm/trunk-jpl/src/m/classes/qmu.py
r23716 r24162 153 153 154 154 if np.size(md.qmu.partition) > 0: 155 if np.size(md.qmu.partition)!=md.mesh.numberofvertices and np.size(md.qmu.partition) != md.mesh.numberofelements:155 if (np.size(md.qmu.partition)!=md.mesh.numberofvertices and np.size(md.qmu.partition) != md.mesh.numberofelements) or np.size(md.qmu.partition,1) != 1: 156 156 md.checkmessage("user supplied partition for qmu analysis should have size (md.mesh.numberofvertices x 1) or (md.mesh.numberofelements x 1)") 157 157 if not min(md.qmu.partition.flatten())==0:
Note:
See TracChangeset
for help on using the changeset viewer.