Changeset 17456
- Timestamp:
- 03/18/14 09:26:10 (11 years ago)
- Location:
- issm/trunk-jpl/src/m/classes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/matice.m
r16764 r17456 104 104 md = checkfield(md,'fieldname','materials.rheology_B','>',0,'size',[md.mesh.numberofvertices 1]); 105 105 md = checkfield(md,'fieldname','materials.rheology_n','>',0,'size',[md.mesh.numberofelements 1]); 106 md = checkfield(md,'fieldname','materials.rheology_law','values',{'None' ' Paterson' 'Arrhenius' 'LliboutryDuval'});106 md = checkfield(md,'fieldname','materials.rheology_law','values',{'None' 'Cuffey' 'Paterson' 'Arrhenius' 'LliboutryDuval'}); 107 107 108 108 if ismember(GiaAnalysisEnum(),analyses), … … 131 131 fielddisplay(obj,'rheology_B','flow law parameter [Pa/s^(1/n)]'); 132 132 fielddisplay(obj,'rheology_n','Glen''s flow law exponent'); 133 fielddisplay(obj,'rheology_law',['law for the temperature dependance of the rheology: ''None'', '' Paterson'',''Arrhenius'' or ''LliboutryDuval''']);133 fielddisplay(obj,'rheology_law',['law for the temperature dependance of the rheology: ''None'', ''Cuffey'', ''Paterson'', ''Arrhenius'' or ''LliboutryDuval''']); 134 134 fielddisplay(obj,'lithosphere_shear_modulus','Lithosphere shear modulus [Pa]'); 135 135 fielddisplay(obj,'lithosphere_density','Lithosphere density [g/cm^-3]'); -
issm/trunk-jpl/src/m/classes/matice.py
r16764 r17456 55 55 string="%s\n%s"%(string,fielddisplay(self,"rheology_B","flow law parameter [Pa/s^(1/n)]")) 56 56 string="%s\n%s"%(string,fielddisplay(self,"rheology_n","Glen's flow law exponent")) 57 string="%s\n%s"%(string,fielddisplay(self,"rheology_law","law for the temperature dependance of the rheology: 'None', ' Paterson', 'Arrhenius' or 'LliboutryDuval'"))57 string="%s\n%s"%(string,fielddisplay(self,"rheology_law","law for the temperature dependance of the rheology: 'None', 'Cuffey', 'Paterson', 'Arrhenius' or 'LliboutryDuval'")) 58 58 string="%s\n%s"%(string,fielddisplay(self,"lithosphere_shear_modulus","Lithosphere shear modulus [Pa]")) 59 59 string="%s\n%s"%(string,fielddisplay(self,"lithosphere_density","Lithosphere density [g/cm^-3]")) … … 119 119 md = checkfield(md,'fieldname','materials.rheology_B','>',0,'size',[md.mesh.numberofvertices]) 120 120 md = checkfield(md,'fieldname','materials.rheology_n','>',0,'size',[md.mesh.numberofelements]) 121 md = checkfield(md,'fieldname','materials.rheology_law','values',['None',' Paterson','Arrhenius','LliboutryDuval'])121 md = checkfield(md,'fieldname','materials.rheology_law','values',['None','Cuffey','Paterson','Arrhenius','LliboutryDuval']) 122 122 md = checkfield(md,'fieldname','materials.lithosphere_shear_modulus','>',0,'numel',[1]); 123 123 md = checkfield(md,'fieldname','materials.lithosphere_density','>',0,'numel',[1]);
Note:
See TracChangeset
for help on using the changeset viewer.