Changeset 27937
- Timestamp:
- 10/04/23 12:09:12 (19 months ago)
- Location:
- issm/trunk-jpl/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/HydrologyGlaDSAnalysis.cpp
r27936 r27937 531 531 IssmDouble coarg = 1. + 4.*pow(hratio,3-2*alpha)*omega*k*pow(h,3)*normgradphi/nu; 532 532 coeff = nu/2./omega*pow(hratio,2*alpha-3) * (-1 + pow(coarg, 0.5))/normgradphi/max(AEPS,h); // divide by h to get speed instead of discharge 533 coeff = k*pow(h,alpha)*pow(normgradphi,beta-2.)/max(AEPS,h); // divide by h to get speed instead of discharge534 533 } 535 534 else { -
issm/trunk-jpl/src/m/classes/hydrologyglads.m
r27936 r27937 126 126 fielddisplay(self,'requested_outputs','additional outputs requested'); 127 127 fielddisplay(self,'melt_flag','User specified basal melt? 0: no (default), 1: use md.basalforcings.groundedice_melting_rate'); 128 fielddisplay(self,'istransition','do we use transition [1] or turbulent physics [0, default]');128 fielddisplay(self,'istransition','do we use standard [0, default] or transition model [1]'); 129 129 end % }}} 130 130 function marshall(self,prefix,md,fid) % {{{ -
issm/trunk-jpl/src/m/classes/hydrologyglads.py
r27936 r27937 72 72 s += '{}\n'.format(fielddisplay(self, 'requested_outputs', 'additional outputs requested')) 73 73 s += '{}\n'.format(fielddisplay(self, 'melt_flag', 'User specified basal melt? 0: no (default), 1: use md.basalforcings.groundedice_melting_rate')) 74 s += '{}\n'.format(fielddisplay(self, 'istransition','do we use transition [1] or turbulent physics [0, default]'))74 s += '{}\n'.format(fielddisplay(self, 'istransition','do we use standard [0, default] or transition model [1]')) 75 75 return string 76 76 # }}}
Note:
See TracChangeset
for help on using the changeset viewer.