Skip to content
Snippets Groups Projects
Commit 156ef2ad authored by RODIER Quentin's avatar RODIER Quentin
Browse files

Quentin 29/07/2022: get_halo bugfix turb HPACK

parent 5e0c4722
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,7 @@ SUBROUTINE GET_HALO_PHY(D,PSRC) ...@@ -30,7 +30,7 @@ SUBROUTINE GET_HALO_PHY(D,PSRC)
USE MODD_DIMPHYEX, ONLY: DIMPHYEX_t USE MODD_DIMPHYEX, ONLY: DIMPHYEX_t
! !
TYPE(DIMPHYEX_t), INTENT(IN) :: D TYPE(DIMPHYEX_t), INTENT(IN) :: D
REAL, DIMENSION(D%NIJT,D%NKT), INTENT(IN) :: PSRC ! variable at t REAL, DIMENSION(D%NIT,D%NJT,D%NKT), INTENT(IN) :: PSRC ! variable at t
! !
END SUBROUTINE GET_HALO_PHY END SUBROUTINE GET_HALO_PHY
! !
...@@ -113,14 +113,14 @@ USE MODD_ARGSLIST_ll, ONLY : LIST_ll ...@@ -113,14 +113,14 @@ USE MODD_ARGSLIST_ll, ONLY : LIST_ll
IMPLICIT NONE IMPLICIT NONE
! !
TYPE(DIMPHYEX_t), INTENT(IN) :: D TYPE(DIMPHYEX_t), INTENT(IN) :: D
REAL, DIMENSION(D%NIJT,D%NKT), INTENT(IN) :: PSRC ! variable at t REAL, DIMENSION(D%NIT,D%NJT,D%NKT), INTENT(IN) :: PSRC ! variable at t
! !
TYPE(LIST_ll) , POINTER :: TZ_PSRC_ll ! halo TYPE(LIST_ll) , POINTER :: TZ_PSRC_ll ! halo
INTEGER :: IERROR ! error return code INTEGER :: IERROR ! error return code
! !
NULLIFY( TZ_PSRC_ll) NULLIFY( TZ_PSRC_ll)
! !
CALL ADD2DFIELD_ll( TZ_PSRC_ll, PSRC, 'GET_HALO::PSRC' ) CALL ADD3DFIELD_ll( TZ_PSRC_ll, PSRC, 'GET_HALO::PSRC' )
CALL UPDATE_HALO_ll(TZ_PSRC_ll,IERROR) CALL UPDATE_HALO_ll(TZ_PSRC_ll,IERROR)
CALL CLEANLIST_ll(TZ_PSRC_ll) CALL CLEANLIST_ll(TZ_PSRC_ll)
! !
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment