Changeset 432 in lmdz_wrf
- Timestamp:
- May 26, 2015, 2:53:12 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/nc_var_tools.py
r431 r432 11156 11156 'squared mean value within', 'standard deviation value within', \ 11157 11157 'accumulated value within'] 11158 Nsts = len(stsn) +111158 Nsts = len(stsn) 11159 11159 statnames = [] 11160 11160 cstatnames = [] … … 11225 11225 rlatvals = np.ones(tuple([Ttraj,dimz,Nrad*2+1,Nrad*2+1]), dtype=np.float) 11226 11226 11227 statvarvals = np.ones(tuple([Ttraj,dimz,Nsts]), dtype=np.float) 11228 rstatvarvals = np.ones(tuple([Ttraj,dimz,Nsts]), dtype=np.float) 11227 # One dimension plus for the values at the center of the trajectory 11228 statvarvals = np.ones(tuple([Ttraj,dimz,Nsts+1]), dtype=np.float) 11229 rstatvarvals = np.ones(tuple([Ttraj,dimz,Nsts+1]), dtype=np.float) 11229 11230 11230 11231 for it in range(Ttraj): … … 11477 11478 rlatvals = np.ones(tuple([Ttraj,Nrad*2+1,Nrad*2+1]), dtype=np.float) 11478 11479 11479 statvarvals = np.ones(tuple([Ttraj,Nsts]), dtype=np.float) 11480 rstatvarvals = np.ones(tuple([Ttraj,Nsts]), dtype=np.float) 11480 # One dimension plus for the values at the center of the trajectory 11481 statvarvals = np.ones(tuple([Ttraj,Nsts+1]), dtype=np.float) 11482 rstatvarvals = np.ones(tuple([Ttraj,Nsts+1]), dtype=np.float) 11481 11483 11482 11484 for it in range(Ttraj):
Note: See TracChangeset
for help on using the changeset viewer.