Changeset 20919
- Timestamp:
- 07/14/16 20:53:59 (9 years ago)
- Location:
- issm/trunk-jpl/src/m/classes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/pairoptions.py
r20690 r20919 158 158 value = item[1] 159 159 160 #Write option name 161 WriteData(fid,prefix,'enum',(firstindex-1)+2*i+1,'data',name,'format','String') 160 raise NameError('need to sync with MATLAB') 162 161 163 #Write option value 164 if isinstance(value,(str,unicode)): 165 WriteData(fid,prefix,'enum',(firstindex-1)+2*i+2,'data',value,'format','String') 166 elif isinstance(value,(bool,int,long,float)): 167 WriteData(fid,prefix,'enum',(firstindex-1)+2*i+2,'data',value,'format','Double') 168 else: 169 raise TypeError("Cannot marshall option '%s': format not supported yet." % name) 162 ##Write option name 163 #WriteData(fid,prefix,'enum',(firstindex-1)+2*i+1,'data',name,'format','String') 164 165 ##Write option value 166 #if isinstance(value,(str,unicode)): 167 # WriteData(fid,prefix,'enum',(firstindex-1)+2*i+2,'data',value,'format','String') 168 #elif isinstance(value,(bool,int,long,float)): 169 # WriteData(fid,prefix,'enum',(firstindex-1)+2*i+2,'data',value,'format','Double') 170 #else: 171 #raise TypeError("Cannot marshall option '%s': format not supported yet." % name) 170 172 # }}} -
issm/trunk-jpl/src/m/classes/slr.js
r20902 r20919 86 86 87 87 WriteData(fid,prefix,'object',this,'fieldname','deltathickness','format','DoubleMat','mattype',2); 88 WriteData(fid,prefix,'object',this,'fieldname','sealevel','mattype',1,'format','DoubleMat',' enum',SealevelEnum(),'timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts);88 WriteData(fid,prefix,'object',this,'fieldname','sealevel','mattype',1,'format','DoubleMat','timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts); 89 89 WriteData(fid,prefix,'object',this,'fieldname','reltol','format','Double'); 90 90 WriteData(fid,prefix,'object',this,'fieldname','abstol','format','Double');
Note:
See TracChangeset
for help on using the changeset viewer.