Changeset 20930
- Timestamp:
- 07/18/16 02:24:40 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/matice.js
r20918 r20930 24 24 25 25 //ice latent heat of fusion L (J/kg) 26 this.latentheat=3.34* 10^5;26 this.latentheat=3.34*Math.pow(10,5); 27 27 28 28 //ice thermal conductivity (W/m/K) … … 36 36 37 37 //rate of change of melting point with pressure (K/Pa) 38 this.beta=9.8* 10^-8;38 this.beta=9.8*Math.pow(10,-8); 39 39 40 40 //mixed layer (ice-water interface) heat capacity (J/kg/K) … … 42 42 43 43 //thermal exchange velocity (ice-water interface) (m/s) 44 this.thermal_exchange_velocity=1.00* 10^-4;44 this.thermal_exchange_velocity=1.00*Math.pow(10,-4); 45 45 46 46 //Rheology law: what is the temperature dependence of B with T … … 131 131 WriteData(fid,prefix,'data',StringToEnum(this.rheology_law),'name','md.materials.rheology_law','format','Integer'); 132 132 WriteData(fid,prefix,'object',this,'class','materials','fieldname','lithosphere_shear_modulus','format','Double'); 133 WriteData(fid,prefix,'object',this,'class','materials','fieldname','lithosphere_density','format','Double','scale', 10^3);133 WriteData(fid,prefix,'object',this,'class','materials','fieldname','lithosphere_density','format','Double','scale',Math.pow(10,3)); 134 134 WriteData(fid,prefix,'object',this,'class','materials','fieldname','mantle_shear_modulus','format','Double'); 135 WriteData(fid,prefix,'object',this,'class','materials','fieldname','mantle_density','format','Double','scale', 10^3);135 WriteData(fid,prefix,'object',this,'class','materials','fieldname','mantle_density','format','Double','scale',Math.pow(10,3)); 136 136 WriteData(fid,prefix,'object',this,'class','materials','fieldname','earth_density','format','Double'); 137 137
Note:
See TracChangeset
for help on using the changeset viewer.