Changeset 390 in lmdz_wrf
- Timestamp:
- Apr 7, 2015, 11:55:46 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/diagnostics.py
r365 r390 675 675 676 676 # Variables not to check 677 NONcheckingvars = ['cllmh', 'deaccum', 'WRF dens', 'WRFgeop', 'WRFp',\677 NONcheckingvars = ['cllmh', 'deaccum', 'WRFbils', 'WRFdens', 'WRFgeop', 'WRFp', \ 678 678 'WRFpos', 'WRFprc', 'WRFprls', 'WRFrh', 'LMDZrh', 'LMDZrhs', 'WRFrhs', 'WRFrvors', \ 679 679 'WRFt'] … … 1004 1004 " Taylor decomposition turbulence term") 1005 1005 1006 # WRFp pressure frin WRF as P + PB 1006 # WRFbils fom WRF as HFX + LH 1007 elif diag == 'WRFbils': 1008 1009 var0 = ncobj.variables[depvars[0]][:] 1010 var1 = ncobj.variables[depvars[1]][:] 1011 1012 diagout = var0 + var1 1013 1014 ncvar.insert_variable(ncobj, 'bils', diagout, dnames, dvnames, newnc) 1015 1016 # WRFp pressure from WRF as P + PB 1007 1017 elif diag == 'WRFp': 1008 1018
Note: See TracChangeset
for help on using the changeset viewer.