Skip to content
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 changes for all-sky radiance assimilation #341

Closed
8 tasks done
emilyhcliu opened this issue Mar 21, 2022 · 2 comments · Fixed by #350 or #381
Closed
8 tasks done

Add changes for all-sky radiance assimilation #341

emilyhcliu opened this issue Mar 21, 2022 · 2 comments · Fixed by #350 or #381
Assignees

Comments

@emilyhcliu
Copy link
Contributor

emilyhcliu commented Mar 21, 2022

The following changes will be added to GSI Master for V16.x Implementation:

Source code update:

  • Switching from assimilating antenna temperature (SDR) to brightness temperature (TDR) for AMSU-A, ATMS, and MHS
  • The use precipitation-affected radiances for ATMS and AMSU-A (extened all-sky framework)
  • The use of GMI radiances under all-sky conditions

Fix files update:

  • Add global_anavinfo_allhydro_l127.txt --- add precipitation components
  • Update cloudy_radiance_info.txt --- add GMI
  • Update global_satinfo.txt --- modify channel use flag and error bounds for GMI
  • Update global_scaninfo.txt --- add GMI

Script update:

  • exglobal_atmos_analysis.sh

The working branch is feature/v16x_allsky
The changes in the branch will not change the GSI result from master with the default namelist and default resource files (All regression tests passed).

List of changes for Ta2Tb work:

  • antcorr_application.f90
  • crtm_interface.f90
  • read_atms.f90
  • read_bufrtovs.f90
  • obsmod.F90
  • gsimod.F90

Set ta2tb = .true. will trigger the use of Tb for AMSU-A, ATMS, and MHS
Default ta2tb is set to false. This ensures that the code update will not change GSI result from the master

List of changes for assimilating precipitation-affected ATMS and AMSU-A:

  • cloud_efr_mod.f90
  • cplr_gfs_ensmod.f90
  • crtm_interface.f90
  • general_read_gfsatm.f90
  • netcdfgfs_io.f90
  • prt_guess.f90
  • qcmod.f90
  • read_atms.f90
  • read_bufrtovs.f90
  • write_incr.f90
  • setuprad.f90

These code changes will not affect GSI result from master unless the default global_anavinfo.l127.txt is replaced with global_anavinfo_alhydro.l127.txt

The current GSI master (and operational GDAS) is using CRTM2.3.0 for radiance assimilation
The use of precipitation-affected MW data should combined with the use of CRTM 2.4.0 for the following two reasons:

  1. The surface Jacobian under scattering condition from CRTM2.3.0 was not implemented correctly and CRTM 2.4.0 fixed the issue. (Surface Jacobian is used in QC for radiance data)
  2. CRTM2.4.0 has the cloud optical table generated based on GFDL physics (consistent with FV3 model physics)

Note: If we decide not to include precipitation-affected MW radiance in our next implementation, then we should not use CRTM2.4.0 (should stay with CRTM 2.3.0) due to the following two reasons:

  1. CRTM 2.4.0 requires cloud fraction profile in the input for cloudy simulation.
  2. GFDL cloud fraction calculation requires all hydrometeors which is not available in our operational run (only cloud water and cloud water are available)

List of changes for the assimilation of GMI under all-sky conditions:

  • read_gmi.f90
  • crtm_interface.f90
  • setuprad.f90

These code update will not change GSI result from the master since GMI channel use flags are set to -1 (monitoring)
To activate GMI for assimilation, modifiy the use flags as the following:

 gmi_gpm                 1  -1    2.700   25.000   30.000   40.000    0.000      1      1     -1
 gmi_gpm                 2  -1    3.700   40.000   30.000   40.000    0.000      1      1     -1
 gmi_gpm                 3  -1    3.500   40.000   15.000   40.000    0.000      1      1     -1
 gmi_gpm                 4  -1    4.500   55.000   30.000   40.000    0.000      1      1     -1
 gmi_gpm                 5   1    4.000   35.000   15.000   40.000    0.000      1      1     -1
 gmi_gpm                 6   1    3.800   25.000   30.000   40.000    0.000      1      1     -1
 gmi_gpm                 7   1  300.000  500.000    5.000   40.000    0.000      1      1     -1
 gmi_gpm                 8  -1    5.000   50.000   15.000   40.000    0.000      1      1     -1
 gmi_gpm                 9  -1   11.500   50.000   20.000   40.000    0.000      1      1     -1
 gmi_gpm                10   1    5.000   50.000   20.000   40.000    0.000      1      1     -1
 gmi_gpm                11  -1    5.000   50.000   20.000   40.000    0.000      1      1     -1
 gmi_gpm                12   1    2.500   30.000   10.000   40.000    0.000      1      1     -1
 gmi_gpm                13   1    3.000   40.000   10.000   40.000    0.000      1      1     -1

List of changes for exglobal_atmos_analysis.sh:

  1. add link to AMSU-A MetOp-A version 2 coefficient file
  2. add logic (ta2tb) to turn on the use of brightness temperature for ATMS, AMSU-A and MHS for assimilaton
  3. add logic (cao_check) to turn on CAO (cold air outbreak check) for quality control
  4. set thinning box to 145 km for GMI (original is 100 km)
@emilyhcliu emilyhcliu changed the title Add changes for all-sky radiance assimilation, the use of antenna-corrected radiances and the use of ASCAT winds from MetOp-Cthe Add changes for all-sky radiance assimilation, the use of antenna-corrected radiances Mar 21, 2022
@emilyhcliu emilyhcliu changed the title Add changes for all-sky radiance assimilation, the use of antenna-corrected radiances Add changes for all-sky radiance assimilation Mar 23, 2022
@emilyhcliu
Copy link
Contributor Author

emilyhcliu commented Mar 30, 2022

Added logical ta2tb to encapsulate the use of brightness temperature instead of antenna temperature.
The ta2tb is set to .false. as default so the update will reproduce the result from GSI master.

emilyhcliu added a commit to emilyhcliu/GSI that referenced this issue Apr 20, 2022
This update includes the following:
(1) Add the capability of assimilating precipitation-affected radiances from AMSU-A and ATMS
(2) Enable the all-sky radiance assimilation for GMI
(3) Add the switch to use brightness temperature (SDR) instead of antenna temperature (TDR) for AMSU-A, ATMS and MHS
emilyhcliu added a commit to emilyhcliu/GSI that referenced this issue Apr 20, 2022
This update includes the following:
(1) Add the capability of assimilating precipitation-affected radiances from AMSU-A and ATMS
(2) Enable the all-sky radiance assimilation for GMI
(3) Add the switch to use brightness temperature (SDR) instead of antenna temperature (TDR) for AMSU-A, ATMS and MHS
emilyhcliu added a commit to emilyhcliu/GSI that referenced this issue Apr 21, 2022
This update includes the following:
(1) Add the capability of assimilating precipitation-affected radiances from AMSU-A and ATMS
(2) Enable the all-sky radiance assimilation for GMI
(3) Add the switch to use brightness temperature (SDR) instead of antenna temperature (TDR) for AMSU-A, ATMS and MHS
emilyhcliu added a commit to emilyhcliu/GSI that referenced this issue Apr 25, 2022
This update includes the following:
(1) Add the capability of assimilating precipitation-affected radiances from AMSU-A and ATMS
(2) Enable the all-sky radiance assimilation for GMI
(3) Add the switch to use brightness temperature (SDR) instead of antenna temperature (TDR) for AMSU-A, ATMS and MHS
MichaelLueken added a commit that referenced this issue May 3, 2022
GitHub Issue #341. Update the use of MW radiances for GFS v16.3 implementation
@MichaelLueken
Copy link
Contributor

Reopening issue to be used with PR #381.

@MichaelLueken MichaelLueken reopened this May 19, 2022
@MichaelLueken MichaelLueken linked a pull request May 19, 2022 that will close this issue
MichaelLueken added a commit that referenced this issue May 19, 2022
GitHub Issue #341. Add GMI for radmon
MichaelLueken added a commit that referenced this issue May 27, 2022
GitHub Issue #341. Add GMI for radmon
EdwardSafford-NOAA pushed a commit to EdwardSafford-NOAA/GSI that referenced this issue May 27, 2022
GitHub Issue NOAA-EMC#341. Update the use of MW radiances for GFS v16.3 implementation
EdwardSafford-NOAA pushed a commit to EdwardSafford-NOAA/GSI that referenced this issue May 27, 2022
EdwardSafford-NOAA pushed a commit to EdwardSafford-NOAA/GSI that referenced this issue May 27, 2022
AndrewEichmann-NOAA pushed a commit to AndrewEichmann-NOAA/GSI that referenced this issue Jun 6, 2022
This update includes the following:
(1) Add the capability of assimilating precipitation-affected radiances from AMSU-A and ATMS
(2) Enable the all-sky radiance assimilation for GMI
(3) Add the switch to use brightness temperature (SDR) instead of antenna temperature (TDR) for AMSU-A, ATMS and MHS
AndrewEichmann-NOAA pushed a commit to AndrewEichmann-NOAA/GSI that referenced this issue Jun 6, 2022
GitHub Issue NOAA-EMC#341. Update the use of MW radiances for GFS v16.3 implementation
AndrewEichmann-NOAA pushed a commit to AndrewEichmann-NOAA/GSI that referenced this issue Jun 6, 2022
AndrewEichmann-NOAA pushed a commit to AndrewEichmann-NOAA/GSI that referenced this issue Jun 6, 2022
RussTreadon-NOAA added a commit to RussTreadon-NOAA/GSI that referenced this issue Jun 21, 2022
commit 112ca82
Merge: 257f6eb dd1bac5
Author: RussTreadon-NOAA <26926959+RussTreadon-NOAA@users.noreply.github.com>
Date:   Tue Jun 21 09:56:10 2022 -0400

    Merge branch 'NOAA-EMC:develop' into feature/rm_sfcanl

commit 257f6eb
Merge: 9c48261 ad84f17
Author: RussTreadon-NOAA <russ.treadon@noaa.gov>
Date:   Mon Jun 13 14:52:28 2022 +0000

    Merge branch 'develop' into feature/rm_sfcanl

commit 9c48261
Merge: dc62da7 eb220ca
Author: RussTreadon-NOAA <26926959+RussTreadon-NOAA@users.noreply.github.com>
Date:   Thu May 26 05:43:20 2022 -0400

    Merge branch 'NOAA-EMC:develop' into feature/rm_sfcanl

commit eb220ca
Author: michael.lueken <Michael.Lueken@noaa.gov>
Date:   Wed May 25 16:04:25 2022 +0000

    GitHub Issue NOAA-EMC#382.  Add GSI fix file changes for v16.3

commit 8c22b33
Merge: a90b632 cf4b323
Author: MichaelLueken-NOAA <63728921+MichaelLueken-NOAA@users.noreply.github.com>
Date:   Wed May 25 15:56:49 2022 +0000

    Merge pull request NOAA-EMC#374 from ADCollard/IRBugFix

    GitHub Issue NOAA-EMC#371. Minor bug fixes to IR processing

commit dc62da7
Merge: b7afecf a90b632
Author: RussTreadon-NOAA <26926959+RussTreadon-NOAA@users.noreply.github.com>
Date:   Fri May 20 12:10:17 2022 -0400

    Merge branch 'NOAA-EMC:develop' into feature/rm_sfcanl

commit a90b632
Merge: 524527b 889cce5
Author: MichaelLueken-NOAA <63728921+MichaelLueken-NOAA@users.noreply.github.com>
Date:   Fri May 20 16:08:11 2022 +0000

    Merge pull request NOAA-EMC#386 from HaixiaLiu-NOAA/master

    GitHub Issue NOAA-EMC#385. Add seviri_m09 to Radiance_Monitor util

commit 889cce5
Author: Haixia.Liu <Haixia.Liu@noaa.gov>
Date:   Fri May 20 04:27:21 2022 +0000

    GitHub Issue NOAA-EMC#385. Add seviri_m09 to Radiance_Monitor util

commit b7afecf
Merge: 58b52c6 524527b
Author: RussTreadon-NOAA <26926959+RussTreadon-NOAA@users.noreply.github.com>
Date:   Thu May 19 12:46:19 2022 -0400

    Merge branch 'NOAA-EMC:develop' into feature/rm_sfcanl

commit 524527b
Merge: 9946c69 002dc87
Author: MichaelLueken-NOAA <63728921+MichaelLueken-NOAA@users.noreply.github.com>
Date:   Thu May 19 16:08:48 2022 +0000

    Merge pull request NOAA-EMC#379 from AndrewEichmann-NOAA/EXP-efso_fv3_issue_378

    Github issue NOAA-EMC#378: refactoring of EFSOI scripts and compiled code (EFSOI and EFSOI forecast scripts)

commit 9946c69
Merge: bcc0358 ccfda16
Author: MichaelLueken-NOAA <63728921+MichaelLueken-NOAA@users.noreply.github.com>
Date:   Thu May 19 16:05:20 2022 +0000

    Merge pull request NOAA-EMC#381 from emilyhcliu/feature/gmi

    GitHub Issue NOAA-EMC#341. Add GMI for radmon

commit bcc0358
Merge: 7146a0b 7a4fa9b
Author: MichaelLueken-NOAA <63728921+MichaelLueken-NOAA@users.noreply.github.com>
Date:   Thu May 19 16:02:55 2022 +0000

    Merge pull request NOAA-EMC#384 from christopherwharrop-noaa/feature/update-cheyenne-hpc-stack

    GitHub Issue NOAA-EMC#383 Update hpc-stack in Cheyenne modulefiles for GNU and Intel compilers.

commit 7a4fa9b
Author: Christopher Harrop <Christopher.W.Harrop@noaa.gov>
Date:   Thu May 19 09:23:33 2022 -0600

    GitHub Issue NOAA-EMC#383

    Update hpc-stack in Cheyenne modulefiles for GNU and Intel compilers.

    A small workaround was necessary for the GNU modulefile to avoid
    a dependency issue with the GNU version of hpc-stack.

commit ccfda16
Author: Emily Liu <emily.liu@noaa.gov>
Date:   Thu May 19 02:20:09 2022 +0000

    Add GMI for radmon

commit 58b52c6
Merge: c4c860b 7146a0b
Author: RussTreadon-NOAA <26926959+RussTreadon-NOAA@users.noreply.github.com>
Date:   Wed May 18 14:52:48 2022 -0400

    Merge branch 'NOAA-EMC:develop' into feature/rm_sfcanl

commit 7146a0b
Author: Rahul Mahajan <aerorahul@users.noreply.github.com>
Date:   Wed May 18 11:57:08 2022 -0400

    GitHub Issue NOAA-EMC#112.  A refactor of CMake build framework. (NOAA-EMC#327)

commit cf4b323
Author: Andrew Collard <andrew.collard@noaa.gov>
Date:   Fri Apr 29 21:34:22 2022 +0000

    GitHub Issue NOAA-EMC#371: Bug fixes to IR processing

commit 002dc87
Author: AndrewEichmann-NOAA <Andrew.Eichmann@noaa.gov>
Date:   Thu May 12 15:02:40 2022 -0500

    Removed extraneous lines from EFSOI script, and extraneous
    exgdas_efsoi_fcst.sh script

commit c4c860b
Merge: c9ac824 34294c1
Author: RussTreadon-NOAA <russ.treadon@noaa.gov>
Date:   Mon May 9 16:46:28 2022 +0000

    Merge branch 'develop' into feature/rm_sfcanl

commit 34294c1
Merge: ad2a3c0 20cf887
Author: MichaelLueken-NOAA <63728921+MichaelLueken-NOAA@users.noreply.github.com>
Date:   Mon May 9 16:26:12 2022 +0000

    Merge pull request NOAA-EMC#376 from EdwardSafford-NOAA/develop

    GitHub Issue NOAA-EMC#373.  Compress RadMon data files.

commit ad2a3c0
Merge: e7f8c88 845b360
Author: MichaelLueken-NOAA <63728921+MichaelLueken-NOAA@users.noreply.github.com>
Date:   Mon May 9 16:24:29 2022 +0000

    Merge pull request NOAA-EMC#369 from MichaelLueken-NOAA/feature/wcoss2_port

    GitHub Issue NOAA-EMC#368.  WCOSS2 port.

commit 20cf887
Author: Edward.Safford <edward.safford@noaa.gov>
Date:   Thu May 5 12:04:30 2022 +0000

    Github issue NOAA-EMC#373.  Compress RadMon data files.  Completes NOAA-EMC#373.

commit 845b360
Author: Michael Lueken <michael.lueken@noaa.gov>
Date:   Fri Apr 29 11:00:52 2022 +0000

    GitHub Issue NOAA-EMC#368.  WCOSS2 port.

commit c9ac824
Merge: e577941 e7f8c88
Author: RussTreadon-NOAA <26926959+RussTreadon-NOAA@users.noreply.github.com>
Date:   Tue May 3 10:42:43 2022 -0400

    Merge branch 'NOAA-EMC:develop' into feature/rm_sfcanl

commit e7f8c88
Merge: 586c2df 0a5daea
Author: MichaelLueken-NOAA <63728921+MichaelLueken-NOAA@users.noreply.github.com>
Date:   Tue May 3 10:08:34 2022 -0400

    Merge pull request NOAA-EMC#372 from RussTreadon-NOAA/feature/interp

    GitHub Issue NOAA-EMC#370: use nf90_inq_varid to set integer addresses for lon and lat variables

commit 0a5daea
Author: RussTreadon-NOAA <russ.treadon@noaa.gov>
Date:   Fri Apr 29 21:36:35 2022 +0000

    GitHub Issue NOAA-EMC/GSI NOAA-EMC#370: use nf90_inq_varid to set integer addresses for lon and lat variables

commit e577941
Merge: be550bf 586c2df
Author: RussTreadon-NOAA <26926959+RussTreadon-NOAA@users.noreply.github.com>
Date:   Tue May 3 09:52:08 2022 -0400

    Merge branch 'NOAA-EMC:develop' into feature/rm_sfcanl

commit 586c2df
Merge: 87fe77d f16e852
Author: MichaelLueken-NOAA <63728921+MichaelLueken-NOAA@users.noreply.github.com>
Date:   Tue May 3 09:46:33 2022 -0400

    Merge pull request NOAA-EMC#366 from EdwardSafford-NOAA/develop

    GitHub Issue NOAA-EMC#310 and NOAA-EMC#367. Correct RadMon's mean correction time series plots and update html generation.

commit f16e852
Author: edward.safford <edward.safford@noaa.gov>
Date:   Fri Apr 29 14:39:22 2022 +0000

    Github issue NOAA-EMC#310.  Correct mean correction time series plots.  Fixes NOAA-EMC#310.

commit be550bf
Merge: c0a5204 114ed31
Author: RussTreadon-NOAA <26926959+RussTreadon-NOAA@users.noreply.github.com>
Date:   Mon May 2 06:25:23 2022 -0400

    Merge branch 'NOAA-EMC:develop' into feature/rm_sfcanl

commit c0a5204
Merge: 8b376d1 498896b
Author: RussTreadon-NOAA <26926959+RussTreadon-NOAA@users.noreply.github.com>
Date:   Mon Apr 25 13:22:30 2022 -0400

    Merge branch 'NOAA-EMC:develop' into feature/rm_sfcanl

commit 8b376d1
Merge: 91a8077 0c6548e
Author: RussTreadon-NOAA <26926959+RussTreadon-NOAA@users.noreply.github.com>
Date:   Wed Apr 20 13:53:51 2022 -0400

    Merge branch 'NOAA-EMC:master' into feature/rm_sfcanl

commit 91a8077
Merge: dec3299 7201778
Author: RussTreadon-NOAA <26926959+RussTreadon-NOAA@users.noreply.github.com>
Date:   Wed Apr 13 10:27:36 2022 -0400

    Merge branch 'NOAA-EMC:master' into feature/rm_sfcanl

commit dec3299
Merge: 6204f98 5936a23
Author: RussTreadon-NOAA <26926959+RussTreadon-NOAA@users.noreply.github.com>
Date:   Tue Apr 5 10:49:24 2022 -0400

    Merge branch 'NOAA-EMC:master' into feature/rm_sfcanl

commit 6204f98
Merge: f7a1495 affe4ed
Author: RussTreadon-NOAA <26926959+RussTreadon-NOAA@users.noreply.github.com>
Date:   Thu Mar 31 12:38:40 2022 -0400

    Merge branch 'NOAA-EMC:master' into feature/rm_sfcanl

commit f7a1495
Merge: b592666 ef237ce
Author: RussTreadon-NOAA <26926959+RussTreadon-NOAA@users.noreply.github.com>
Date:   Thu Mar 24 08:57:46 2022 -0400

    Merge branch 'NOAA-EMC:master' into feature/rm_sfcanl

commit b592666
Merge: d0f7c20 47ee70b
Author: RussTreadon-NOAA <26926959+RussTreadon-NOAA@users.noreply.github.com>
Date:   Thu Mar 10 09:13:14 2022 -0500

    Merge branch 'NOAA-EMC:master' into feature/rm_sfcanl

commit d0f7c20
Merge: ed94193 828c0cf
Author: RussTreadon-NOAA <26926959+RussTreadon-NOAA@users.noreply.github.com>
Date:   Wed Mar 2 10:35:21 2022 -0500

    Merge branch 'NOAA-EMC:master' into feature/rm_sfcanl

commit ed94193
Merge: c63bd77 963b7e5
Author: RussTreadon-NOAA <russ.treadon@noaa.gov>
Date:   Tue Mar 1 16:04:48 2022 +0000

    Merge branch 'master' at 963b7e5 into feature/rm_sfcanl

    Conflicts:
    	scripts/exglobal_atmos_analysis.sh

commit c63bd77
Merge: 39912e1 0444258
Author: RussTreadon-NOAA <26926959+RussTreadon-NOAA@users.noreply.github.com>
Date:   Tue Feb 15 06:06:10 2022 -0500

    Merge branch 'NOAA-EMC:master' into feature/rm_sfcanl

commit 39912e1
Merge: f0161c8 9e765da
Author: RussTreadon-NOAA <26926959+RussTreadon-NOAA@users.noreply.github.com>
Date:   Tue Jan 11 06:40:58 2022 -0500

    Merge branch 'NOAA-EMC:master' into feature/rm_sfcanl

commit f0161c8
Merge: a75d6ed a62dec6
Author: RussTreadon-NOAA <26926959+RussTreadon-NOAA@users.noreply.github.com>
Date:   Tue Dec 14 11:40:31 2021 -0500

    Merge branch 'NOAA-EMC:master' into feature/rm_sfcanl

commit a75d6ed
Author: russ.treadon <Russ.Treadon@noaa.gov>
Date:   Tue Dec 14 14:38:57 2021 +0000

    GitHub Issue NOAA-EMC#266:  add DOGAUSFCANL capability back to JGLOBAL_ATMOS_ANALYSIS_CALC and exglobal_atmos_analysis_calc.sh

commit 9422758
Author: russ.treadon <Russ.Treadon@noaa.gov>
Date:   Mon Dec 13 14:39:14 2021 +0000

    GitHub Issue NOAA-EMC#266:  remove DOGCYCLE and DOGAUSFCANL scripting and variables from j-jobs and scripts

     * jobs/JGDAS_ATMOS_ANALYSIS_DIAG - remove DOGCYCLE and DOGAUSFCANL
     * jobs/JGLOBAL_ATMOS_ANALYSIS - remove DOGCYCLE and DOGAUSFCANL
     * jobs/JGLOBAL_ATMOS_ANALYSIS_CALC - remove DOGCYCLE and DOGAUSFCANL
     * scripts/exglobal_atmos_analysis.sh - remove DOGCYCLE scripting and DOGAUSFCANL variables
     * scripts/exglobal_atmos_analysis_calc.sh - remove DOGAUSFCANL scripting
aerorahul pushed a commit to NOAA-EMC/global-workflow that referenced this issue Jul 12, 2022
This update includes the following:
(1) Add the capability of assimilating precipitation-affected radiances from AMSU-A and ATMS
(2) Enable the all-sky radiance assimilation for GMI
(3) Add the switch to use brightness temperature (SDR) instead of antenna temperature (TDR) for AMSU-A, ATMS and MHS
aerorahul pushed a commit to NOAA-EMC/global-workflow that referenced this issue Jul 12, 2022
GitHub Issue NOAA-EMC/GSI#341. Update the use of MW radiances for GFS v16.3 implementation
aerorahul pushed a commit to NOAA-EMC/global-workflow that referenced this issue Jul 12, 2022
This update includes the following:
(1) Add the capability of assimilating precipitation-affected radiances from AMSU-A and ATMS
(2) Enable the all-sky radiance assimilation for GMI
(3) Add the switch to use brightness temperature (SDR) instead of antenna temperature (TDR) for AMSU-A, ATMS and MHS
aerorahul pushed a commit to NOAA-EMC/global-workflow that referenced this issue Jul 12, 2022
GitHub Issue NOAA-EMC/GSI#341. Update the use of MW radiances for GFS v16.3 implementation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants