-
Notifications
You must be signed in to change notification settings - Fork 863
Adding new Ristic microphysics scheme #1308
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
00f89fc
307c9da
599c6ce
e9deaba
1602bd1
e4632b0
a80a449
e774092
a42b7c6
cde45fd
7aff4cd
a4faba8
8401e54
30b7ad6
d55c6cf
f4c1c06
a743208
82e13fb
7d26c10
84ac4f2
9ed6b94
535683f
7ef7c13
40a4582
4ab0bb5
7c6fd57
ca220f4
997951e
eeb3f2b
4ff1e3d
eacf0fc
28c33ad
30dbdc8
238a7d2
8f8984e
fc99e4e
712e9cc
8a928d8
e2ea09e
57f8f55
cafc166
0e70827
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1189,7 +1189,12 @@ state real F_ICE_PHY ikj misc 1 - rhdu "F | |
| state real F_RAIN_PHY ikj misc 1 - rhdu "F_RAIN_PHY" "FRACTION OF RAIN " "" | ||
| state real F_RIMEF_PHY ikj misc 1 - rhdu "F_RIMEF_PHY" "MASS RATIO OF RIMED ICE " "" | ||
| state real qndropsource ikj misc 1 - r "qndropsource" "Droplet number source" "#/kg/s" | ||
|
|
||
| # ivanr microphysics variables | ||
| state real cld ikj misc 1 - r "CLD" "w2id " "" | ||
| state real tw2 ikj misc 1 - r "TW2" "w2id " "" | ||
| state real pw2 ikj misc 1 - r "PW2" "w2id " "" | ||
| state real qw2 ikj misc 1 - r "QW2" "w2id " "" | ||
| state real f_snow ikj misc 1 - r "F_SNOW" "w2id " "" | ||
| # cyl 3DPWP variables | ||
| state real OM_TMP i{nocnl}j misc 1 Z i012rhdu=(copy_fcnm)f=(c2f_interp:grid_id) "OM_TMP" "temperature" "k" | ||
| state real OM_S i{nocnl}j misc 1 Z i012rhdu=(copy_fcnm)f=(c2f_interp:grid_id) "OM_S" "salinity" "degree" | ||
|
|
@@ -2824,6 +2829,7 @@ package p3_1category mp_physics==50 - moist:qv,qc | |
| package p3_1category_nc mp_physics==51 - moist:qv,qc,qr,qi;scalar:qnc,qni,qnr,qir,qib;state:re_cloud,re_ice,vmi3d,rhopo3d,di3d,refl_10cm,th_old,qv_old | ||
| package p3_2category mp_physics==52 - moist:qv,qc,qr,qi,qi2;scalar:qnc,qni,qnr,qir,qib,qni2,qir2,qib2;state:re_cloud,re_ice,vmi3d,rhopo3d,di3d,vmi3d_2,rhopo3d_2,di3d_2,refl_10cm,th_old,qv_old | ||
| package morr_tm_aero mp_physics==40 - moist:qv,qc,qr,qi,qs,qg;scalar:qnc,qni,qns,qnr,qng;state:rqrcuten,rqscuten,rqicuten,EFCG,EFIG,EFSG,WACT,CCN1_GS,CCN2_GS,CCN3_GS,CCN4_GS,CCN5_GS,CCN6_GS,CCN7_GS,re_cloud,re_ice,re_snow,mskf_refl_10cm | ||
| package ivanr_micro mp_physics==150 - moist:qv,qc,qr,qs;scalar:qt;state:cld,tw2,pw2,qw2,f_snow | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @dudhia @weiwangncar
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @davegill |
||
| package jensen_ishmael mp_physics==55 - moist:qv,qc,qr,qi,qi2,qi3;scalar:qnr,qni,qvoli,qaoli,qni2,qvoli2,qaoli2,qni3,qvoli3,qaoli3;state:re_cloud,re_ice,vmi3d,rhopo3d,di3d,phii3d,itype,vmi3d_2,rhopo3d_2,di3d_2,phii3d_2,itype_2,vmi3d_3,rhopo3d_3,di3d_3,phii3d_3,itype_3,refl_10cm | ||
| package etampnew mp_physics==95 - moist:qv,qc,qr,qs;scalar:qt;state:f_ice_phy,f_rain_phy,f_rimef_phy | ||
| package gsfcgcescheme mp_physics==97 - moist:qv,qc,qr,qi,qs,qg | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Nikolar97
Please include a description of these fields with units. An example is the line directly above.
Since these are "r" restart variables, have you tested that you do indeed get reproducible results with a restart?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@davegill
Added the descriptions to the fields in the EM_COMMON and NMM registry. The variables should be r, they were used in a similar way to other r fields in other custom schemes already in the model.