Changeset 19707
- Timestamp:
- 11/12/15 06:47:59 (9 years ago)
- Location:
- issm/trunk-jpl/src/m/classes
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/friction.py
r19048 r19707 10 10 11 11 Usage: 12 friction=friction() ;12 friction=friction() 13 13 """ 14 14 -
issm/trunk-jpl/src/m/classes/frictioncoulomb.m
r19479 r19707 48 48 end % }}} 49 49 function disp(self) % {{{ 50 disp(sprintf('Basal shear stress parameters: Sigma_b = min( coefficient^2 * Neff ^r * |u_b|^(s-1) * u_b\n, coefficientcoulomb^2 * rho_i * g * (h-h_f) (effective stress Neff=rho_ice*g*thickness+rho_water*g*bed, r=q/p and s=1/p, floatation thickness h_f=max(0,-rho_fw / rho_i * bed))'));51 fielddisplay(self,'coefficient',' friction coefficient [SI]');52 fielddisplay(self,'coefficientcoulomb',' coulomb friction coefficient [SI]');50 disp(sprintf('Basal shear stress parameters: Sigma_b = min( coefficient^2 * Neff ^r * |u_b|^(s-1) * u_b\n, coefficientcoulomb^2 * rho_i * g * (h-h_f)) (effective stress Neff=rho_ice*g*thickness+rho_water*g*bed, r=q/p and s=1/p, floatation thickness h_f=max(0,-rho_sw / rho_i * bed))')); 51 fielddisplay(self,'coefficient','power law (Weertman) friction coefficient [SI]'); 52 fielddisplay(self,'coefficientcoulomb','Coulomb friction coefficient [SI]'); 53 53 fielddisplay(self,'p','p exponent'); 54 54 fielddisplay(self,'q','q exponent'); 55 55 end % }}} 56 56 function marshall(self,md,fid) % {{{ 57 yts=365.0*24.0*3600.0;58 57 59 58 WriteData(fid,'enum',FrictionLawEnum,'data',7,'format','Integer'); -
issm/trunk-jpl/src/m/classes/mismipbasalforcings.m
r19481 r19707 72 72 end % }}} 73 73 function disp(self) % {{{ 74 disp(sprintf(' mismip basal forcings parameters:'));74 disp(sprintf(' MISMIP+ basal melt parameterization:')); 75 75 76 76 fielddisplay(self,'groundedice_melting_rate','basal melting rate (positive if melting) [m/yr]'); -
issm/trunk-jpl/src/m/classes/timestepping.py
r18000 r19707 66 66 def marshall(self,md,fid): # {{{ 67 67 68 yts=365.0*24.0*3600.0 68 yts=md.constants.yts 69 69 70 70 WriteData(fid,'object',self,'fieldname','start_time','format','Double','scale',yts)
Note:
See TracChangeset
for help on using the changeset viewer.