Around line 171 of components/eam/src/physics/cam/gw/gw_front.F90 ``` do l = 0, ngwv where (launch_wave) tau(:,l,kbot) = fav(l) tau(:,-l,kbot) = fav(l) ``` Should be ``` do l = 0, ngwv where (launch_wave) tau(:,l,kbot) = fav(l) tau(:,-l,kbot) = fav(-l) ```