-
Notifications
You must be signed in to change notification settings - Fork 175
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 capability to ingest and assimilate IASI-NG #3126
Draft
wx20jjung
wants to merge
19
commits into
NOAA-EMC:develop
Choose a base branch
from
wx20jjung:IASI-NG
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WalterKolczynski-NOAA
changed the title
Add capability to imgest and assimilate IASI-NG
Add capability to ingest and assimilate IASI-NG
Dec 10, 2024
@wx20jjung Is there any reason this is still in draft, or is it ready for review? Shellcheck failures should be corrected. |
Walter,
This pull request requires the latest GSI 'develop'. There are namelist
variables that are set in the scripts but not yet in the GSI the
global-workflow is using.
Jim
…On Tue, Dec 10, 2024 at 2:48 PM Walter Kolczynski - NOAA < ***@***.***> wrote:
@wx20jjung <https://github.com/wx20jjung> Is there any reason this is
still in draft, or is it ready for review? Shellcheck failures should be
corrected.
—
Reply to this email directly, view it on GitHub
<#3126 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AMPASAYUNMZGIYTKFCYFOYD2E5ARPAVCNFSM6AAAAABSRGV2VOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDKMZSG4ZDANZUGI>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
6 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
These are various changes needed to connect the IASI-NG data files to the GSI and ENKF routines. They include connecting the RARS/EARS and DBNet data when available.
Data links are contained in the exglobal_atmos_analysis.sh. mtias2 is the operational data file. Esias2 and ias2db lines are for the RARS/EARS and DBNet data files.
IASINGBF=${IASINGBF:-${COM_OBS}/${OPREFIX}mtias2.tm00.bufr_d${OSUFFIX}}
ESIASING=${ESIASING:-${COM_OBS}/${OPREFIX}esias2.tm00.bufr_d${OSUFFIX}}
IASINGDB=${IASINGDB:-${COM_OBS}/${OPREFIX}ias2db.tm00.bufr_d${OSUFFIX}}
Eventually the cloud and aerosol detection software (CADS) will be used for cloud detection. There is an auxiliary file to modify several default parameters, if necessary. This file is also linked in the exglobal_atmos_analysis.sh file. This IASING_CLDDET.NL file is not required at run time and is ignored if the file does not exist.
${NLN} ${FIXgfs}/gsi/IASING_CLDDET.NL IASING_CLDDET.NL
There is a flag in the config.anal file to turn on/off the CADS. This flag is turned on/off with a namelist variable in OBSQC
iasing_cads=${IASING_CADS}
If this iasing_cads flag (above) is incorporated before the changes in the GSI (added to GSI on 11/25) are available, this will break the global workflow.
A line is added to obs_input to define the data thinning and the surface calculations. These values are consistent with the current IASI and CrIS instruments.
iasingbufr iasi-ng metop-sg-a1 iasi-ng_metop-sg-a1 0.0 1 0
A line is added to the exgdas_enkf_update.sh to use these data within the ensembles similar to exglobal_atmos_analysis.sh.
sattypes_rad(80)= 'iasi-ng_metop-sg-a1', dsis(80)= 'iasi-ng_metop-sg-a1',
Iasi-ng_metop-sg-a1 was appended to the diagtype[3} variable in exglobal_diag.sh to collect O-B and O-A statistics for iasi-ng.
There are fix files that will be required to eventually use IASI-NG. They are global_satinfo.txt, global_scaninfo.txt and IASING_CLDDET.NL. The global_satinfo.txt will contain the assumed 500 channel subset expected to be used. The global_scaninfo.txt contains the information if fields-of-view along the edges of the scan line are to be removed. IASING_CLDDET.NL contains run-time namelist changes for the cloud and aerosol detection software (CADS). Global_satinfo.txt should be installed after the IASI-NG and MetImage coefficient files exist in the CRTM fix directory. The GSI has internal defaults for scaninfo.txt and IASING_CLDDET.NL and do not need to exist.
Resolves #3081
Depends on NOAA-EMC/GSI#804
Type of change
Change characteristics
How has this been tested?
I have run cycled tests with these changes using IASI-NG proxy data on Hera.
I have also conducted limited unit tests with my changes within the global-workflow:
C96C48_hybatmDA
C96_atm3DVar
Both pass when the OBSPROC namelist variable is removed or the latest develop branch of the GSI is used.
Checklist