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

WRF-CMAQ Bugfix for UWIND and VWIND at Grid Cell Centers (mass points) #189

Merged
merged 1 commit into from
May 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions CCTM/src/twoway/twoway_aqprep.F90
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ SUBROUTINE aqprep (grid, config_flags, t_phy_wrf, p_phy_wrf, rho_wrf, &
! 26 Jul 2022 (David Wong)
! -- Added a prefix tw_ for these variables: sc, ec, sr, er sc_d, ec_d,
! sr_d, and er_d to avoid naming conflicts
! 16 Mar 2023 (David Wong)
! -- fixed a bug in creating u and v components
!===============================================================================

USE module_domain ! WRF module
Expand Down Expand Up @@ -1206,11 +1208,6 @@ END SUBROUTINE bcldprc_ak

ENDDO
ENDDO

metcro3d_data_wrf (:,:,1:nlays,15) = zf (:,:,1:nlays)

metcro3d_data_wrf (:,:,1:nlays,16) = zf (:,:,1:nlays)

ENDDO

metcro3d_data_wrf (:,:,1:nlays,14) = zf (:,:,1:nlays)
Expand Down