We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6194f11 + 5bf2cad commit e1d7113Copy full SHA for e1d7113
1 file changed
workflow/ush/qrocoto/checkDA
@@ -47,10 +47,12 @@ with open(f'{expdir}/rrfs.xml') as infile:
47
FCST_LEN_HRS_CYCLES = get_value(line)
48
elif "getkf_observer" in line:
49
getkf = True
50
+ elif "STATIC_BEC_MODEL" in line:
51
+ STATIC_BEC_MODEL = get_value(line)
52
53
# prepare a summary
54
if float(HYB_WGT_ENS) == 0.0 and float(HYB_WGT_STATIC) == 1.0:
- summary = "Pure 3DVAR"
55
+ summary = f"Pure 3DVAR, using {STATIC_BEC_MODEL}"
56
else:
57
if float(HYB_WGT_ENS) == 1.0 and float(HYB_WGT_STATIC) == 0.0:
58
summary = "Pure 3DEnVAR"
0 commit comments