Changeset 23901
- Timestamp:
- 05/02/19 17:06:36 (6 years ago)
- Location:
- issm/trunk-jpl/src/m/classes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/SMBgemb.m
r23814 r23901 305 305 fielddisplay(self,'Tmean','mean annual temperature [K]'); 306 306 fielddisplay(self,'C','mean annual snow accumulation [kg m-2 yr-1]'); 307 fielddisplay(self,'Vmean','mean annual snow accumulation[m s-1] (default 10 m/s)');307 fielddisplay(self,'Vmean','mean annual wind speed [m s-1] (default 10 m/s)'); 308 308 fielddisplay(self,'Tz','height above ground at which temperature (T) was sampled [m]'); 309 309 fielddisplay(self,'Vz','height above ground at which wind (V) eas sampled [m]'); -
issm/trunk-jpl/src/m/classes/SMBgemb.py
r23814 r23901 38 38 pAir = float('NaN') #surface pressure [Pa] 39 39 Tmean = float('NaN') #mean annual temperature [K] 40 Vmean = float('NaN') 40 Vmean = float('NaN') #mean annual wind velocity [m s-1] 41 41 C = float('NaN') #mean annual snow accumulation [kg m-2 yr-1] 42 42 Tz = float('NaN') #height above ground at which temperature (T) was sampled [m] … … 142 142 string = "%s\n%s"%(string,fielddisplay(self,'Tmean','mean annual temperature [K]')) 143 143 string = "%s\n%s"%(string,fielddisplay(self,'C','mean annual snow accumulation [kg m-2 yr-1]')) 144 string = "%s\n%s"%(string,fielddisplay(self,'Vmean','mean annual temperature[m s-1] (default 10 m/s)'))144 string = "%s\n%s"%(string,fielddisplay(self,'Vmean','mean annual wind velocity [m s-1] (default 10 m/s)')) 145 145 string = "%s\n%s"%(string,fielddisplay(self,'Tz','height above ground at which temperature (T) was sampled [m]')) 146 146 string = "%s\n%s"%(string,fielddisplay(self,'Vz','height above ground at which wind (V) eas sampled [m]'))
Note:
See TracChangeset
for help on using the changeset viewer.