vd2uv_mod.F90 Source File


This file depends on

sourcefile~~vd2uv_mod.f90~2~~EfferentGraph sourcefile~vd2uv_mod.f90~2 vd2uv_mod.F90 sourcefile~prepsnm_mod.f90 prepsnm_mod.F90 sourcefile~vd2uv_mod.f90~2->sourcefile~prepsnm_mod.f90 sourcefile~prfi1b_mod.f90 prfi1b_mod.F90 sourcefile~vd2uv_mod.f90~2->sourcefile~prfi1b_mod.f90 sourcefile~tpm_constants.f90 tpm_constants.F90 sourcefile~vd2uv_mod.f90~2->sourcefile~tpm_constants.f90 sourcefile~tpm_dim.f90 tpm_dim.F90 sourcefile~vd2uv_mod.f90~2->sourcefile~tpm_dim.f90 sourcefile~tpm_distr.f90 tpm_distr.F90 sourcefile~vd2uv_mod.f90~2->sourcefile~tpm_distr.f90 sourcefile~vdtuv_mod.f90 vdtuv_mod.F90 sourcefile~vd2uv_mod.f90~2->sourcefile~vdtuv_mod.f90 sourcefile~prepsnm_mod.f90->sourcefile~tpm_dim.f90 sourcefile~prepsnm_mod.f90->sourcefile~tpm_distr.f90 sourcefile~parkind_ectrans.f90 parkind_ectrans.F90 sourcefile~prepsnm_mod.f90->sourcefile~parkind_ectrans.f90 sourcefile~tpm_fields.f90 tpm_fields.F90 sourcefile~prepsnm_mod.f90->sourcefile~tpm_fields.f90 sourcefile~tpm_gen.f90 tpm_gen.F90 sourcefile~prepsnm_mod.f90->sourcefile~tpm_gen.f90 sourcefile~prfi1b_mod.f90->sourcefile~tpm_dim.f90 sourcefile~prfi1b_mod.f90->sourcefile~tpm_distr.f90 sourcefile~tpm_constants.f90->sourcefile~parkind_ectrans.f90 sourcefile~vdtuv_mod.f90->sourcefile~tpm_dim.f90 sourcefile~vdtuv_mod.f90->sourcefile~tpm_distr.f90 sourcefile~vdtuv_mod.f90->sourcefile~parkind_ectrans.f90 sourcefile~vdtuv_mod.f90->sourcefile~tpm_fields.f90 sourcefile~vdtuv_mod.f90->sourcefile~tpm_gen.f90 sourcefile~tpm_fields.f90->sourcefile~parkind_ectrans.f90 sourcefile~tpm_gen.f90->sourcefile~parkind_ectrans.f90

Source Code

! (C) Copyright 2015- ECMWF.
! (C) Copyright 2015- Meteo-France.
! 
! This software is licensed under the terms of the Apache Licence Version 2.0
! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
! In applying this licence, ECMWF does not waive the privileges and immunities
! granted to it by virtue of its status as an intergovernmental organisation
! nor does it submit to any jurisdiction.
!

MODULE VD2UV_MOD
CONTAINS
SUBROUTINE VD2UV(KM,KMLOC,KF_UV,KLEI2,PSPVOR,PSPDIV,PU,PV)

USE PARKIND1  ,ONLY : JPIM     ,JPRB
USE YOMHOOK   ,ONLY : LHOOK,   DR_HOOK, JPHOOK

USE TPM_CONSTANTS   ,ONLY : RA
USE TPM_DIM         ,ONLY : R
USE TPM_DISTR       ,ONLY : D

USE PREPSNM_MOD     ,ONLY : PREPSNM
USE PRFI1B_MOD      ,ONLY : PRFI1B
USE VDTUV_MOD       ,ONLY : VDTUV


!**** *VD2UV* - U and V from Vor/div
!
!     Purpose.
!     --------
!       
!**   Interface.
!     ----------
!        *CALL* *VD2UV(...)

!        Explicit arguments :
!        --------------------
!          KM        - zonal wavenumber
!          KMLOC     - local zonal wavenumber
!          PSPVOR    - spectral vorticity
!          PSPDIV    - spectral divergence
!          PU(:,:)   - spectral U (out)
!          PV(:,:)   - spectral V (out)


!        Implicit arguments :  

!     Method.
!     -------

!     Externals.
!     ----------

!         PREPSNM - prepare REPSNM for wavenumber KM
!         PRFI1B  - prepares the spectral fields
!         VDTUV   - compute u and v from vorticity and divergence

!     Reference.
!     ----------
!        ECMWF Research Department documentation of the IFS
!        Temperton, 1991, MWR 119 p1303

!     Author.
!     -------
!        Mats Hamrud  *ECMWF*

!     Modifications.
!     --------------
!        Original : July 2015
!       
!     ------------------------------------------------------------------

IMPLICIT NONE

INTEGER(KIND=JPIM), INTENT(IN) :: KM
INTEGER(KIND=JPIM), INTENT(IN) :: KMLOC
INTEGER(KIND=JPIM), INTENT(IN) :: KF_UV
INTEGER(KIND=JPIM), INTENT(IN) :: KLEI2

REAL(KIND=JPRB)   , INTENT(IN)  :: PSPVOR(:,:)
REAL(KIND=JPRB)   , INTENT(IN)  :: PSPDIV(:,:)
REAL(KIND=JPRB)   , INTENT(OUT) :: PU(:,:)
REAL(KIND=JPRB)   , INTENT(OUT) :: PV(:,:)

REAL(KIND=JPRB) :: ZIA(R%NLEI1,KLEI2)
REAL(KIND=JPRB) :: ZEPSNM(0:R%NTMAX+2),ZA_R

INTEGER(KIND=JPIM) :: JFLD,ILCM
INTEGER(KIND=JPIM) :: IVORL,IVORU,IDIVL,IDIVU,IUL,IUU,IVL,IVU,II,IR,INM,J
INTEGER(KIND=JPIM) :: IFIRST, ILAST, IOFF

REAL(KIND=JPHOOK) :: ZHOOK_HANDLE

!     ------------------------------------------------------------------

!*       1.       PERFORM LEGENDRE TRANFORM.
!                 --------------------------

IF (LHOOK) CALL DR_HOOK('VD2UV_MOD',0,ZHOOK_HANDLE)

!     ------------------------------------------------------------------

!*       1.    PREPARE ZEPSNM.
!              ---------------

CALL PREPSNM(KM,KMLOC,ZEPSNM)

!     ------------------------------------------------------------------


!*       3.    SPECTRAL COMPUTATIONS FOR U,V AND DERIVATIVES.
!              ----------------------------------------------

IFIRST = 1
ILAST  = 4*KF_UV

IF (KF_UV > 0) THEN
  IVORL = 1
  IVORU = 2*KF_UV
  IDIVL = 2*KF_UV+1
  IDIVU = 4*KF_UV
  IUL   = 4*KF_UV+1
  IUU   = 6*KF_UV
  IVL   = 6*KF_UV+1
  IVU   = 8*KF_UV
  CALL PRFI1B(KM,ZIA(:,IVORL:IVORU),PSPVOR,KF_UV)
  CALL PRFI1B(KM,ZIA(:,IDIVL:IDIVU),PSPDIV,KF_UV)

  CALL VDTUV(KM,KF_UV,ZEPSNM,ZIA(:,IVORL:IVORU),ZIA(:,IDIVL:IDIVU),&
           & ZIA(:,IUL:IUU),ZIA(:,IVL:IVU))
  ILCM = R%NSMAX+1-KM
  IOFF = D%NASM0(KM)
  ZA_R = 1.0_JPRB/REAL(RA,JPRB)
  DO J=1,ILCM
    INM = IOFF+(ILCM-J)*2
    DO JFLD=1,KF_UV
      IR = 2*(JFLD-1)+1
      II = IR+1
      PU(JFLD,INM  ) = ZIA(J+2,IR+IUL-1)*ZA_R
      PU(JFLD,INM+1) = ZIA(J+2,II+IUL-1)*ZA_R
      PV(JFLD,INM  ) = ZIA(J+2,IR+IVL-1)*ZA_R
      PV(JFLD,INM+1) = ZIA(J+2,II+IVL-1)*ZA_R
    ENDDO
  ENDDO
ENDIF

IF (LHOOK) CALL DR_HOOK('VD2UV_MOD',1,ZHOOK_HANDLE)
!     ------------------------------------------------------------------

END SUBROUTINE VD2UV
END MODULE VD2UV_MOD