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

Update fbwind for COM refactor #2479

Merged

Conversation

WalterKolczynski-NOAA
Copy link
Contributor

@WalterKolczynski-NOAA WalterKolczynski-NOAA commented Apr 12, 2024

Description

Updates fbwind job for the COM refactor and some other cleanup.

This works on WCOSS but not on Orion. There seems to be a problem with either grbindex or GETGB() on Orion that causes the executable to be unable to read the grib1 index file. The grib1 data file produced there seems fine. Haven't checked Hera yet, maybe there is a problem with the spack-stack build of grbindex.

Resolves: #2160
Refs: #289

Type of change

  • Bug fix (fixes something broken)

Change characteristics

  • Is this a breaking change (a change in existing functionality)? NO
  • Does this change require a documentation update? NO

How has this been tested?

  • Cycled test with AWIPS on on WCOSS
  • Cycled test with AWIPS on on Orion

Checklist

  • Any dependent changes have been merged and published
  • My code follows the style guidelines of this project
  • I have performed a self-review of my own code
  • I have commented my code, particularly in hard-to-understand areas
  • My changes generate no new warnings
  • New and existing tests pass with my changes
  • I have made corresponding changes to the documentation if necessary

source prep_step

for fhr3 in 006 012 024; do
cp "${COMIN_ATMOS_GRIB_0p25}/gfs.${cycle}.pgrb2.0p25.f${fhr3}" "tmp_pgrb2_0p25${fhr3}"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just making a note that these filenames will be updated in the near future to adhere to EE2 conventions.

# make_ntc_bull.pl WMOBH NONE KWNO NONE tran.fbwnd_pacific ${COMOUTwmo}/tran.fbwnd_pacific.$job_name
${USHgfs}/make_ntc_bull.pl WMOBH NONE KWNO NONE tran.fbwnd_pacific ${COMOUTwmo}/tran.fbwnd_pacific.$job_name
if [[ "${SENDDBN}" == 'YES' ]]; then
# Should this really be in a SENDDBN block?
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure. Is make_ntc_bull.pl calling dbnalert? If so, it might be ok.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It does, though presumably we still want to run it up until the alert point even when DBN is off.

Comment on lines +21 to +22
GRID="0p25" YMD=${PDY} HH=${cyc} declare_from_tmpl -rx COMIN_ATMOS_GRIB_0p25:COM_ATMOS_GRIB_GRID_TMPL
YMD=${PDY} HH=${cyc} declare_from_tmpl -rx COMOUT:COM_ATMOS_WMO_TMPL
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using COMIN and COMOUT to clearly identify input and output directories. Thanks!

Copy link
Contributor

@aerorahul aerorahul left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks good from the perspective on COM refactor.

@GwenChen-NOAA
Copy link
Contributor

Where can I find the test run with AWIPS on WCOSS2? Thanks!

@WalterKolczynski-NOAA
Copy link
Contributor Author

@GwenChen-NOAA

/lfs/h2/emc/global/noscrub/walter.kolczynski/global-workflow/fbwind

@GwenChen-NOAA
Copy link
Contributor

The file format of tran.fbwnd_pacific.fbwind under /lfs/h2/emc/global/noscrub/walter.kolczynski/global-workflow/fbwind/gfs.20211221/00/products/atmos/wmo does not look right. The text file contains a lot of @. An example of the operational file (tran.fbwnd_pacific.gfs_atmos_fbwind_00) can be found at /lfs/h1/ops/prod/com/gfs/v16.3/gfs.20240411/00/atmos/wmo with correct format.

@aerorahul
Copy link
Contributor

@GwenChen-NOAA
Can you verify that the gfsv16.3 script can run with the gfsv17 input data to that script and share the output of the job?
That will give us a starting point to replicate this job.


######################
# Set up Here Files.
######################

job_name=$(echo $job|sed 's/[jpt]gfs/gfs/')
job_name="${job/[jpt]gfs/gfs}"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This changes the output filename from tran.fbwnd_pacific.gfs_atmos_fbwind_CC to tran.fbwnd_pacific.fbwind, missing the cycle information. Is it intentionally?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It shouldn't. This line should function identically to what was here before.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The output filename on Line 71 is tran.fbwnd_pacific.${job_name}. Did $job change?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not exactly. When it is run in ops, $job comes from the scheduler jobname. I don't know what that is. In development, we set it in the rocoto pre-job stub (jobs/rocoto/fbwind.sh). This is the only job I know of that includes the job name in a filename (which seems to me to be a poor practice for this very reason). Presumably, if this were run in ops, the filename would still have the cycle in it.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll change this so it no longer relies on $job for the filename.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

${job_name} is only used to define output filename hereafter. If it's not used elsewhere, we can simply define:

job_name=${model}_${COMPONENT}_${cyc}

or something similar to meet EE2 standard.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Trying to come up with a new name. Do you know what "tran" means in the current filename?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, I don't.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would ${RUN}.atmos.t${cyc}z.wind_profile.pacific.ascii be correct?
CC @aerorahul

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually, I'm just going to make it ${RUN}.atmos.t${cyc}z.fbwind.pacific.ascii, at least for now. No need to worry about it if it winds up getting ditched anyway.

@GwenChen-NOAA
Copy link
Contributor

@GwenChen-NOAA Can you verify that the gfsv16.3 script can run with the gfsv17 input data to that script and share the output of the job? That will give us a starting point to replicate this job.

@aerorahul, I will try.

@WalterKolczynski-NOAA
Copy link
Contributor Author

fbwind from ops:

****0000001316****
FBOC31 KWNO 120352
FD1OC1
DATA BASED ON 120000Z    
VALID 120600Z   FOR USE 0200-0900Z. TEMPS NEG ABV 24000
FT  1000 1500 2000 3000    6000    9000   12000   15000   18000   24000
JON 0810 0811 0812 0814 0818+18 0920+13 0922+08 0924+04 1023-03 3315-10
KWA 1014 1014 0915 0817 0814+15 0810+16 0815+09 0815+04 0829-04 0812-12
MAJ 1410 1410 1410 1409 9900+16 9900+13 3010+08 3010+04 2809-03 3114-14
MDY 0617 0617 0617 0717 0809+17 0206+13 3508+09 3205+03 3413-04 3118-13
PPG 3623 3424 3424 3324 3126+09 3126+05 3030+00 3033-05 3031-12 3037-24
TTK 1320 1320 1218 1010 0606+18 9900+15 9900+09 9900+04 9900-04 3208-16
AWK 0410 0410 0410 0312 0309+18 3207+14 3006+09 9900+03 0907-03 0828-13
GRO 1209 1210 1211 1112 0913+17 0715+14 0717+10 0916+04 0107-04 3514-13
GSN 9900 9900 1006 1007 0806+19 0611+14 0810+08 1115+03 0921-05 0620-14
TNI 9900 9900 1508 1714 9900+21 0512+15 0711+08 1015+02 0825-05 0829-14
GUM 3210 3210 3210 3111 3011+18 2809+13 2807+08 9900+03 1305-03 0905-13
TKK 1415 1415 1414 1413 2605+16 2706+15 9900+10 9900+05 1113-03 3417-16
PNI 1114 1114 1114 1014 1014+16 1111+12 1606+08 2309+03 2212-05 2114-14
ROR 1111 1011 1011 0912 0708+15 1108+14 1109+09 0908+03 0814-05 9900-15
T11 1012 1011 1011 1010 9900+17 9900+13 9900+08 9900+03 3305-05 3411-14
****0000000788****
FBOC37 KWNO 120352
FD8OC7
DATA BASED ON 120000Z    
VALID 120600Z   FOR USE 0200-0900Z. TEMPS NEG ABV 24000
FT   30000  34000  39000  45000  53000
JON 291528 332639 343352 281266 291381
KWA 181229 251340 263352 242366 272481
MAJ 322429 313539 313151 312666 331580
MDY 282728 283538 293151 282966 302481
PPG 304739 276846 276255 284960 283666
TTK 342529 342738 342651 342767 311880
AWK 092328 102039 092052 093866 211581
GRO 291328 302939 294252 313266 241981
GSN 122028 122538 131951 181565 241582
TNI 102228 092339 092052 251165 171282
GUM 071827 081938 122350 142167 361481
TKK 343630 294339 303951 304565 332479
PNI 202430 212440 252252 264365 301978
ROR 322230 313140 293852 284264 292177
T11 321629 322340 322652 303267 241277
****0000001316****
FBOC33 KWNO 120352
FD3OC3
DATA BASED ON 120000Z    
VALID 121200Z   FOR USE 0900-1800Z. TEMPS NEG ABV 24000
FT  1000 1500 2000 3000    6000    9000   12000   15000   18000   24000
JON 1109 1110 1011 0912 0916+18 0818+13 0919+08 0920+04 1019-04 3416-11
KWA 1014 1015 0916 0917 0714+14 0810+15 0816+09 0717+03 0826-06 1113-12
MAJ 1311 1311 1311 1311 9900+17 2605+13 2811+08 2912+04 3009-02 3215-13
MDY 0718 0718 0717 0717 0712+17 0408+13 3612+09 3309+03 3311-04 3013-13
PPG 3528 3328 3327 3225 3126+10 3134+05 3037+00 3140-05 3040-13 3042-24
TTK 1418 1417 1416 1210 0705+19 9900+16 9900+10 9900+04 9900-03 3106-16
AWK 0613 0513 0512 0511 0308+19 3207+14 2806+08 9900+04 0908-02 0739-13
GRO 1110 1111 1111 1113 1014+17 0814+13 0716+09 0919+04 0612-04 3313-12
GSN 9900 9900 0105 0206 0605+19 0608+13 0910+08 1213+02 0915-04 0620-14
TNI 9900 9900 9900 9900 9900+20 0507+14 0809+08 1113+02 0818-04 0829-14
GUM 3410 3410 3410 3310 2909+18 2606+13 2705+08 9900+03 9900-03 0910-13
TKK 1316 1316 1315 1411 2505+16 2705+15 9900+10 9900+04 0808-04 2916-15
PNI 1218 1218 1218 1217 1213+16 1211+13 1608+08 2112+03 2113-04 2415-14
ROR 1015 1015 1015 0912 0810+14 1008+15 0909+09 0709+03 0810-06 9900-16
T11 1012 1012 1012 1010 0706+17 0505+13 9900+09 9900+03 3306-05 3413-14
****0000000788****
FBOC38 KWNO 120352
FD9OC8
DATA BASED ON 120000Z    
VALID 121200Z   FOR USE 0900-1800Z. TEMPS NEG ABV 24000
FT   30000  34000  39000  45000  53000
JON 311528 352439 302651 292666 281982
KWA 190630 251940 252852 231465 272279
MAJ 332229 323539 323551 303866 342181
MDY 292928 282638 292851 293067 302079
PPG 283940 288546 287754 295661 303965
TTK 352130 342439 322952 303667 311677
AWK 092228 121839 113251 103666 221882
GRO 292328 302939 303952 313266 251181
GSN 122728 122339 141551 181166 291282
TNI 102328 102139 990051 271466 141183
GUM 111328 091738 132150 122366 341983
TKK 323531 294140 294551 294866 301778
PNI 203929 193840 232152 274366 282377
ROR 311832 302440 303351 282964 273077
T11 312530 322939 303852 324067 250878
****0000001316****
FBOC35 KWNO 120352
FD5OC5
DATA BASED ON 120000Z    
VALID 130000Z   FOR USE 1800-0600Z. TEMPS NEG ABV 24000
FT  1000 1500 2000 3000    6000    9000   12000   15000   18000   24000
JON 0910 0911 0912 1014 1014+17 0915+13 0917+08 0917+04 1111-03 3509-11
KWA 1117 1117 1117 1116 0813+16 0712+14 0815+09 0719+03 0829-06 1017-12
MAJ 1109 1109 1109 1110 1005+17 9900+13 2609+08 2712+03 3208-03 3214-14
MDY 0815 0815 0815 0916 0911+16 0806+13 0508+08 0105+03 9900-03 2916-14
PPG 3017 3018 3019 3020 3023+07 3031+04 3034+00 3037-06 3041-14 3161-25
TTK 1419 1419 1418 1212 0907+18 0705+14 9900+09 9900+04 9900-04 3013-15
AWK 0710 0710 0710 0710 0507+18 9900+14 9900+08 9900+04 0706-03 0730-14
GRO 1108 1108 1208 1209 1110+17 0913+13 0817+09 1019+04 0814-03 3113-12
GSN 9900 9900 0609 0611 0306+18 0205+12 9900+08 1311+03 1014-04 0819-13
TNI 9900 9900 9900 0506 9900+18 9900+13 1507+08 1514+02 1017-04 0822-13
GUM 9900 9900 3006 3008 9900+17 9900+13 2305+08 3005+03 0408-04 0813-13
TKK 1417 1416 1416 1413 2305+18 2406+16 9900+11 9900+05 0608-04 3223-14
PNI 1217 1217 1216 1215 1312+18 1308+13 1605+07 2011+02 2114-03 2222-13
ROR 1114 1114 1113 1011 0706+15 0906+14 0908+09 0908+03 0812-05 9900-15
T11 1010 1010 1009 1008 9900+17 9900+13 9900+09 9900+03 9900-05 3517-15
****0000000788****
FBOC39 KWNO 120352
FD0OC9
DATA BASED ON 120000Z    
VALID 130000Z   FOR USE 1800-0600Z. TEMPS NEG ABV 24000
FT   30000  34000  39000  45000  53000
JON 331329 321739 332951 272666 272182
KWA 232028 252739 272851 291467 251779
MAJ 312829 313839 323752 303266 332180
MDY 292829 263839 274352 283366 311578
PPG 316340 306749 307555 306958 294863
TTK 352628 333139 313452 303766 322179
AWK 072228 092139 114051 073366 271481
GRO 302428 292940 303751 342666 231781
GSN 101928 102038 091352 220767 271983
TNI 102028 081839 041152 301767 220784
GUM 101528 121138 141452 091967 180880
TKK 293231 292939 304051 285065 302178
PNI 193429 223139 263651 273767 263079
ROR 261530 303040 293453 293564 261977
T11 302229 322940 313752 314365 230978

fbwind from develop

'101377PFB                              FBOC31 KWNO 120226<<@^^^FD1OC1<<@$DATA BASED ON 210000Z    <<@VALID 210600Z   FOR USE 0200-0900Z. TEMPS NEG ABV 24000<<@@^FT  1000 1500 2000 3000    6000    9000   12000   15000   18000   24000<<@$JON 1118 1121 1022 1023 0828|16 0830|12 0915|10 2614|03 2919-05 3033-16<<@$KWA 1019 1021 1021 0920 0813|16 0609|12 0411|05 9900|01 2712-06 2515-18<<@$MAJ 1411 1411 1311 1210 1012|16 0814|12 0715|07 0716|03 0821-03 1125-15<<@$MDY 0513 0613 0613 0612 0608|16 9900|12 9900|09 1307|04 1513-04 1617-16<<@$PPG 2316 2316 2317 2518 2725|02 2735|00 2842-05 2848-10 2853-17 2756-28<<@$TTK 9900 9900 9900 9900 9900|16 1705|12 9900|07 9900|02 1810-05 2505-17<<@$AWK 0319 0319 0319 0417 0607|16 9900|12 1510|07 1615|02 1717-05 1218-15<<@$GRO 1515 1515 1515 1513 0905|15 1012|11 0917|06 0724|01 0206-04 3412-16<<@$GSN 9900 0505 0808 0711 0417|18 0617|12 0917|07 1115|02 0806-05 0310-15<<@$TNI 9900 9900 1305 1106 0214|19 0518|12 0819|07 1019|02 1110-05 0810-16<<@$GUM 9900 2605 2606 2608 2710|17 2810|12 3012|07 3219|03 3515-05 0113-14<<@$TKK 1317 1317 1317 1317 1311|19 1311|14 1508|07 3505|00 0405-05 3311-17<<@$PNI 0912 0912 0912 1011 1109|16 1309|11 1310|09 1213|04 0919-03 0823-15<<@>$ROR 1016 1016 1016 1015 0908|17 9900|12 0107|05 9900|01 3108-05 311
4-18<<@$T11 0915 0916 0916 0915 0912|18 0905|12 0307|06 0605|02 1510-03 0510-16<<@%'105980 FB                              FBOC37 KWNO 120226<<@^^^FD8OC7<<@$DATA BASED ON 210000Z    <<@VALID 210600Z   FOR USE 0200-0900Z. TEMPS NEG ABV 24000<<@@^FT   30000  34000  39000  45000  53000<<@$JON 293732 295142 296054 283767 275180<<@$KWA 266233 276844 288554 267966 273477<<@$MAJ 120931 080841 051853 081968 103082<<@$MDY 141030 990042 311153 271967 231681<<@$PPG 276444 287053 287255 286756 295159<<@$TTK 331333 361642 032454 012967 311478<<@$AWK 091929 072139 102453 103368 124586<<@$GRO 254632 265543 274454 265966 332781<<@$GSN 122130 152141 192154 162468 062485<<@$TNI 102131 131541 191353 161369 083784<<@$GUM 360928 341039 011352 041867 103084<<@$TKK 323236 312847 285354 283461 332280<<@$PNI 092231 101541 071753 042167 053184<<@$ROR 293134 284344 286555 276766 312674<<@$T11 031032 351943 353355 323564 302781<<@%'101378 FB                              FBOC33 KWNO 120226<<@^^^FD3OC3<<@$DATA BASED ON 210000Z    <<@VALID 211200Z   FOR USE 0900-1800Z. TEMPS NEG ABV 24000<<@@^FT  1000 1500 2000 3000    6000    9000   12000   15000   18000   24000<<@$JON 1017 1018 1019 1020 0827|15 0832|12 0813|09 2613|03 3025-06 3036-16<<@$KWA 1119 1120 1019 1018 0910|16 0609|12 0410|04 990
0|01 2712-07 2615-19<<@$MAJ 1113 1113 1012 0912 0909|17 0811|12 0916|08 1015|02 1018-04 1123-14<<@$MDY 0514 0614 0613 0712 0808|15 9900|11 9900|09 1507|04 1611-04 1813-15<<@$PPG 2416 2416 2416 2517 2626|03 2631-02 2639-07 2750-12 2759-18 2868-29<<@$TTK 9900 9900 9900 9900 9900|16 9900|12 9900|07 9900|01 1807-05 2409-17<<@$AWK 0313 0313 0413 0513 0907|17 9900|12 1605|07 1809|02 1711-05 1118-14<<@$GRO 1413 1414 1413 1411 0805|15 1013|11 1020|05 0823|01 9900-04 3111-17<<@$GSN 9900 0305 0409 0512 0514|18 0716|13 1017|08 1117|03 0808-04 0407-15<<@$TNI 9900 9900 9900 0505 0410|18 0515|13 0918|08 1018|04 1111-04 1012-15<<@$GUM 9900 9900 9900 2905 2708|17 2810|12 3113|07 3315|04 3512-05 0113-15<<@$TKK 1317 1317 1317 1317 1312|19 1312|13 1609|07 9900|00 0205-05 3211-18<<@$PNI 1012 1012 1012 1011 1210|16 1310|11 1313|09 1213|04 0916-02 0923-15<<@>$ROR 1018 1018 1018 1017 0908|17 9900|12 3606|06 3405|02 2808-06 3020-18<<@$T11 1015 1015 1015 1015 0814|17 0809|12 0411|07 0511|02 1310-03 0411-14<<@%'105981 FB                              FBOC38 KWNO 120226<<@^^^FD9OC8<<@$DATA BASED ON 210000Z    <<@VALID 211200Z   FOR USE 0900-1800Z. TEMPS NEG ABV 24000<<@@^FT   30000  34000  39000  45000  53000<<@$JON 294232 294342 305354 294367 274580<<@$KWA 266233 277043 287655 278366 28
3375<<@$MAJ 100630 061340 041854 102468 093282<<@$MDY 161031 190542 280753 282467 231480<<@$PPG 287444 287953 287554 276556 284459<<@$TTK 291334 351543 022854 363067 281579<<@$AWK 102329 102540 102553 103668 115186<<@$GRO 244832 265143 274654 265566 322681<<@$GSN 141729 181640 192053 152868 072286<<@$TNI 111530 151240 191553 141768 073386<<@$GUM 010830 011240 031852 052467 101985<<@$TKK 322736 312647 276054 293060 011881<<@$PNI 102030 112141 071953 041967 062684<<@$ROR 293334 285044 276255 276565 302074<<@$T11 040932 351644 322855 313765 311880<<@%'101379 FB                              FBOC35 KWNO 120226<<@^^^FD5OC5<<@$DATA BASED ON 210000Z    <<@VALID 220000Z   FOR USE 1800-0600Z. TEMPS NEG ABV 24000<<@@^FT  1000 1500 2000 3000    6000    9000   12000   15000   18000   24000<<@$JON 1022 1023 1024 1024 0930|14 0831|12 9900|10 2819|03 3322-06 3240-16<<@$KWA 1219 1220 1220 1219 1112|16 0906|12 0308|06 3406|01 2910-06 2620-18<<@$MAJ 1418 1418 1417 1315 1108|17 0910|13 0912|07 1014|02 1017-04 1020-15<<@$MDY 0509 0609 0608 0707 9900|16 9900|11 9900|09 1707|03 1811-05 2405-15<<@$PPG 2211 2211 2311 2410 2620|02 2625-01 2429-04 2333-09 2240-14 2145-26<<@$TTK 3305 9900 9900 9900 9900|15 9900|12 9900|07 2606|02 2207-06 2307-17<<@$AWK 0112 0112 0212 0212 0506|16 1905|11
 2112|06 2113|02 2009-05 0910-15<<@$GRO 1416 1416 1415 1311 0909|16 1117|12 1122|07 0921|02 3607-04 2713-17<<@$GSN 9900 0905 9900 9900 0507|19 0715|12 0822|07 0920|02 0910-04 0108-14<<@$TNI 9900 9900 9900 2905 9900|19 0914|13 0924|07 0922|02 1113-04 0910-15<<@$GUM 9900 9900 9900 9900 3008|17 3013|12 3114|07 3414|02 0107-05 9900-15<<@$TKK 1416 1416 1416 1416 1316|20 1416|14 1511|08 9900|02 9900-04 3113-18<<@$PNI 1114 1114 1114 1114 1112|15 1211|11 1215|09 1214|03 1115-03 1023-15<<@>$ROR 1218 1218 1218 1117 1210|17 9900|12 3505|06 3407|02 9900-06 2921-18<<@$T11 1017 1017 1017 1017 1014|17 1010|12 0709|07 0714|03 1217-03 9900-14<<@%'105982 FB                              FBOC39 KWNO 120226<<@^^^FD0OC9<<@$DATA BASED ON 210000Z    <<@VALID 220000Z   FOR USE 1800-0600Z. TEMPS NEG ABV 24000<<@@^FT   30000  34000  39000  45000  53000<<@$JON 315931 314843 307352 303766 285881<<@$KWA 265933 276844 297955 267965 263076<<@$MAJ 120830 081041 061854 101868 062480<<@$MDY 990031 251040 261653 281768 310980<<@$PPG 204543 184552 214461 254759 263960<<@$TTK 331433 013042 023855 353768 350877<<@$AWK 082430 082940 103153 112969 114987<<@$GRO 245032 274243 275053 264966 312181<<@$GSN 141030 171840 172254 153668 071886<<@$TNI 141030 161541 171754 162369 092387<<@$GUM 011029 032340 0
32453 070566 072284<<@$TKK 331437 274544 267753 312560 342081<<@$PNI 072131 071742 081954 071666 062483<<@$ROR 283734 285844 296156 286265 281876<<@$T11 031432 341143 302755 313766 311081<<@%                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 

Not sure what is going on. I don't think it is anything I did, but maybe.

WalterKolczynski-NOAA added a commit to WalterKolczynski-NOAA/gfs-utils that referenced this pull request Apr 12, 2024
The use of SENDCOM was retired in global workflow. make_ntc_bull is
updated to match, and also the indentation is made uniform.

Refs NOAA-EMC/global-workflow#2479
@WalterKolczynski-NOAA
Copy link
Contributor Author

Traced the issue to:

  1. not running make_ntc_bull.pl
  2. make_ntc_bull.pl not being updated to remove SENDCOM

I've opened a PR to gfs-utils to make the necessary changes to make_ntc_bull.pl. After that is merged, I will update the hash in this PR.

@WalterKolczynski-NOAA WalterKolczynski-NOAA added the blocked Issue is currently being blocked by another issue label Apr 12, 2024
WalterKolczynski-NOAA added a commit to WalterKolczynski-NOAA/gfs-utils that referenced this pull request Apr 12, 2024
The use of SENDCOM was retired in global workflow. make_ntc_bull is updated
to match.

Refs NOAA-EMC/global-workflow#2479
WalterKolczynski-NOAA added a commit to NOAA-EMC/gfs-utils that referenced this pull request Apr 12, 2024
# Description
The use of SENDCOM was retired in global workflow. make_ntc_bull is
updated to match.

Refs NOAA-EMC/global-workflow#2479
@WalterKolczynski-NOAA WalterKolczynski-NOAA removed the blocked Issue is currently being blocked by another issue label Apr 13, 2024
@WalterKolczynski-NOAA
Copy link
Contributor Author

The fbwind file is now formatted properly after the update to make_ntc_bull.pl.

Updates fbwind job for the COM refactor and some other cleanup.

fbwind IS STILL NON-FUNCTIONAL after this commit. The exectuable is
failing to read the grib1 index file. The grib1 data file looks fine,
so this appears to me a problem either with the GRBINDEX executable or
with GETGB.

Refs: NOAA-EMC#289
Refs: NOAA-EMC#2160
@GwenChen-NOAA
Copy link
Contributor

The new gfs.atmos.t00z.fbwind.pacific.ascii file looks good.

@WalterKolczynski-NOAA WalterKolczynski-NOAA merged commit 28b840c into NOAA-EMC:develop Apr 15, 2024
4 checks passed
@WalterKolczynski-NOAA WalterKolczynski-NOAA deleted the feature/fbwind branch April 15, 2024 18:07
danholdaway added a commit to danholdaway/global-workflow that referenced this pull request Apr 15, 2024
* upstream/develop:
  Update fbwind for COM refactor (NOAA-EMC#2479)
  Update parm files for atm product (NOAA-EMC#2486)
  Fix paths in prepocnobs task (NOAA-EMC#2459)
  Add oceanalecn to workflow generator (NOAA-EMC#2409)
  Add support for CADS IR cloud detection scheme in the GSI (NOAA-EMC#2478)
  Improve error messaging to resolve bugzilla (NOAA-EMC#2468)
  Check the DO_JEDISNOWDA condition before adding snow DA analysis to the list (NOAA-EMC#2471)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Newly added gfsfbwinds job fails to run
3 participants