Changeset 23981


Ignore:
Timestamp:
06/04/19 10:37:06 (6 years ago)
Author:
Mathieu Morlighem
Message:

CHG: added md.mesh.vertexonboundary in marshall

File:
1 edited

Legend:

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

    r22879 r23981  
    105105                        md = checkfield(md,'fieldname','mesh.numberofelements','>',0);
    106106                        md = checkfield(md,'fieldname','mesh.numberofvertices','>',0);
     107                        md = checkfield(md,'fieldname','mesh.vertexonboundary','size',[md.mesh.numberofvertices 1],'values',[0 1]);
    107108                        md = checkfield(md,'fieldname','mesh.vertexonbase','size',[md.mesh.numberofvertices 1],'values',[0 1]);
    108109                        md = checkfield(md,'fieldname','mesh.vertexonsurface','size',[md.mesh.numberofvertices 1],'values',[0 1]);
     
    178179                        WriteData(fid,prefix,'object',self,'class','mesh','fieldname','numberofelements','format','Integer');
    179180                        WriteData(fid,prefix,'object',self,'class','mesh','fieldname','numberofvertices','format','Integer');
     181                        WriteData(fid,prefix,'object',self,'class','mesh','fieldname','vertexonboundary','format','BooleanMat','mattype',1);
    180182                        WriteData(fid,prefix,'object',self,'class','mesh','fieldname','vertexonbase','format','BooleanMat','mattype',1);
    181183                        WriteData(fid,prefix,'object',self,'class','mesh','fieldname','vertexonsurface','format','BooleanMat','mattype',1);
Note: See TracChangeset for help on using the changeset viewer.