Changeset 1565
- Timestamp:
- May 20, 2016, 8:27:04 AM (9 years ago)
- Location:
- trunk/LMDZ.GENERIC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/README
r1564 r1565 1223 1223 initializations (now done by inigeomphy in dynphy_lonlat) and 1224 1224 mosre physics-package specific things (remain in iniphysiq). 1225 1226 == 20/05/2016 == EM 1227 - Fix in wstats: use "def_var_stats" and not "def_var" (intended for 1228 writediagfi). -
trunk/LMDZ.GENERIC/libf/phystd/wstats.F90
r1531 r1565 173 173 write (*,*) "STATS: creation de ",nom 174 174 namebis=trim(nom) 175 call def_var (nid,namebis,titre,unite,nbdim,id,meanid,ierr)175 call def_var_stats(nid,namebis,titre,unite,nbdim,id,meanid,ierr) 176 176 if (dim.eq.3) then 177 177 call inivar(nid,meanid,size(px3_glop,1),dim,indx,px3_glop,ierr) … … 180 180 endif 181 181 namebis=trim(nom)//"_sd" 182 call def_var (nid,namebis,trim(titre)//" total standard deviation over the season",unite,nbdim,id,sdid,ierr)182 call def_var_stats(nid,namebis,trim(titre)//" total standard deviation over the season",unite,nbdim,id,sdid,ierr) 183 183 if (dim.eq.3) then 184 184 call inivar(nid,sdid,size(px3_glop,1),dim,indx,px3_glop,ierr)
Note: See TracChangeset
for help on using the changeset viewer.