-
Notifications
You must be signed in to change notification settings - Fork 215
Add CADS use flexibility #2540
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
Add CADS use flexibility #2540
Changes from 6 commits
b423e02
67647fc
e20d167
06c7b90
696dcf9
f57e581
f45d382
bbc0bcf
b47e580
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 |
|---|---|---|
|
|
@@ -678,14 +678,20 @@ if [ ${DOHYBVAR} = "YES" ]; then | |
| SETUP="niter(1)=50,niter(2)=150,niter_no_qc(1)=25,niter_no_qc(2)=0,thin4d=.true.,ens_nstarthr=3,l4densvar=${l4densvar},lwrite4danl=${lwrite4danl},${SETUP}" | ||
| JCOPTS="ljc4tlevs=.true.,${JCOPTS}" | ||
| STRONGOPTS="tlnmc_option=3,${STRONGOPTS}" | ||
| OBSQC="c_varqc=0.04,airs_cads=.false.,cris_cads=.false.,iasi_cads=.false.,${OBSQC}" | ||
| OBSQC="c_varqc=0.04,${OBSQC}" | ||
| fi | ||
| fi | ||
|
|
||
| if [ ${DONST} = "YES" ]; then | ||
| NST="nstinfo=${NSTINFO},fac_dtl=${FAC_DTL},fac_tsl=${FAC_TSL},zsea1=${ZSEA1},zsea2=${ZSEA2},${NST}" | ||
| fi | ||
|
|
||
| # Infrared cloud and aerosol detection software (CADS) on (.true.) - off (.false.) flags | ||
| export AIRS_CADS=${AIRS_CADS:-".false."} | ||
| export CRIS_CADS=${CRIS_CADS:-".false."} | ||
| export IASI_CADS=${IASI_CADS:-".false."} | ||
|
wx20jjung marked this conversation as resolved.
Outdated
|
||
| OBSQC="airs_cads=${AIRS_CADS},cris_cads=${CRIS_CADS},iasi_cads=${IASI_CADS},${OBSQC}" | ||
|
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. Since the Given this we could remove lines 689-690 and simply add |
||
|
|
||
| ############################################################## | ||
| # Create global_gsi namelist | ||
| cat > gsiparm.anl << EOF | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.