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

Quentin 10/08/2022: bugfix for AROME, explicit dimension for MXM_PHY and...

Quentin 10/08/2022: bugfix for AROME, explicit dimension for MXM_PHY and MYM_PHY causes crash on turb_ver_dyn
parent e01e45da
No related branches found
No related tags found
No related merge requests found
...@@ -156,8 +156,8 @@ IMPLICIT NONE ...@@ -156,8 +156,8 @@ IMPLICIT NONE
! ------------------------------------ ! ------------------------------------
! !
TYPE(DIMPHYEX_t), INTENT(IN) :: D TYPE(DIMPHYEX_t), INTENT(IN) :: D
REAL, DIMENSION(D%NIT,D%NJT,D%NKT), INTENT(IN) :: PA ! variable at mass localization REAL, DIMENSION(:,:,:), INTENT(IN) :: PA ! variable at mass localization
REAL, DIMENSION(D%NIT,D%NJT,D%NKT), INTENT(OUT) :: PMYM ! result at flux localization REAL, DIMENSION(:,:,:), INTENT(OUT) :: PMYM ! result at flux localization
! !
!* 0.2 Declarations of local variables !* 0.2 Declarations of local variables
! ------------------------------- ! -------------------------------
...@@ -411,8 +411,8 @@ IMPLICIT NONE ...@@ -411,8 +411,8 @@ IMPLICIT NONE
! ------------------------------------ ! ------------------------------------
! !
TYPE(DIMPHYEX_t), INTENT(IN) :: D TYPE(DIMPHYEX_t), INTENT(IN) :: D
REAL, DIMENSION(D%NIT,D%NJT,D%NKT), INTENT(IN) :: PA ! variable at mass localization REAL, DIMENSION(:,:,:), INTENT(IN) :: PA ! variable at mass localization
REAL, DIMENSION(D%NIT,D%NJT,D%NKT), INTENT(OUT) :: PMXM ! result at flux localization REAL, DIMENSION(:,:,:), INTENT(OUT) :: PMXM ! result at flux localization
! !
!* 0.2 Declarations of local variables !* 0.2 Declarations of local variables
! ------------------------------- ! -------------------------------
......
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