Ignore:
Timestamp:
07/20/16 22:01:03 (9 years ago)
Author:
agscott1
Message:

CHG: Updated mesh2dvertical, mesh3dprisms, mesh3dsurface, and mesh3dtetras to use a String when marshalling md.mesh.domain_type and md.mesh.elementtype

File:
1 edited

Legend:

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

    r20777 r20970  
    7878                } // }}}
    7979                this.marshall=function(md,prefix,fid) { //{{{
    80                         WriteData(fid,prefix,'name','md.mesh.domain_type','data',StringToEnum('Domain' + this.domaintype()),'format','Integer');
     80                        WriteData(fid,prefix,'name','md.mesh.domain_type','data','Domain' + this.domaintype(),'format','String');
    8181                        WriteData(fid,prefix,'name','md.mesh.domain_dimension','data',this.dimension(),'format','Integer');
    82                         WriteData(fid,prefix,'name','md.mesh.elementtype','data',StringToEnum(this.elementtype()),'format','Integer');
     82                        WriteData(fid,prefix,'name','md.mesh.elementtype','data',this.elementtype(),'format','String');
    8383                        WriteData(fid,prefix,'object',this,'fieldname','x','format','DoubleMat','mattype',1);
    8484                        WriteData(fid,prefix,'object',this,'fieldname','y','format','DoubleMat','mattype',1);
Note: See TracChangeset for help on using the changeset viewer.