Changeset 22955 for issm/trunk-jpl/src/m/classes/slr.py
- Timestamp:
- 07/16/18 15:39:26 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/slr.py
r22808 r22955 60 60 string="%s\n%s"%(string,fielddisplay(self,'elastic','elastic earth graviational potential perturbation')) 61 61 string="%s\n%s"%(string,fielddisplay(self,'rotation','earth rotational potential perturbation')) 62 string="%s\n%s"%(string,fielddisplay(self,'ocean_area_scaling','correction for model representation of ocean area (default: No correction)'))62 string="%s\n%s"%(string,fielddisplay(self,'ocean_area_scaling','correction for model representation of ocean area [default: No correction]')) 63 63 string="%s\n%s"%(string,fielddisplay(self,'steric_rate','rate of steric ocean expansion [mm/yr]')) 64 64 string="%s\n%s"%(string,fielddisplay(self,'degacc','accuracy (default .01 deg) for numerical discretization of the Green''s functions')) … … 71 71 72 72 #Convergence criterion: absolute, relative and residual 73 self.reltol= 0.01 # 1 per cent74 self.abstol= float('NaN') #default73 self.reltol=float('NaN') #default 74 self.abstol=0.001 #1 mm of sea level rise 75 75 76 76 #maximum of non-linear iterations. … … 87 87 self.tide_love_k=0.3055; #degree 2 88 88 89 #secular fluid love number:89 #secular fluid love number: 90 90 self.fluid_love=0.942; 91 91 … … 93 93 self.equatorial_moi=8.0077*10**37; # [kg m^2] 94 94 self.polar_moi =8.0345*10**37; # [kg m^2] 95 95 96 96 #mean rotational velocity of earth 97 97 self.angular_velocity=7.2921*10**-5; # [s^-1]
Note:
See TracChangeset
for help on using the changeset viewer.