Skip to content
Snippets Groups Projects
Commit 88983a25 authored by WAUTELET Philippe's avatar WAUTELET Philippe
Browse files

Philippe 04/07/2018: SURFEX: bug correction: PLMO must be declared POINTER...

Philippe 04/07/2018: SURFEX: bug correction: PLMO must be declared POINTER because it can be passed non associated

(cherry picked from commit 7be76db3)
parent 3ac2976b
No related branches found
No related tags found
1 merge request!4Jean Wurtz 30/04/2025 : Bugfixes mainly for TEB and for simple precision
...@@ -36,6 +36,8 @@ ...@@ -36,6 +36,8 @@
!! MODIFICATIONS !! MODIFICATIONS
!! ------------- !! -------------
!! Original 07/2006 !! Original 07/2006
!! P. Wautelet 04/07/2018: add POINTER attribute to PLMO
!! to allow to pass it even if not associated
!------------------------------------------------------------------------------- !-------------------------------------------------------------------------------
! !
!* 0. DECLARATIONS !* 0. DECLARATIONS
...@@ -57,7 +59,7 @@ IMPLICIT NONE ...@@ -57,7 +59,7 @@ IMPLICIT NONE
! ------------------------ ! ------------------------
! !
REAL, DIMENSION(:,:), INTENT(IN) :: PZ ! altitude of full levels REAL, DIMENSION(:,:), INTENT(IN) :: PZ ! altitude of full levels
REAL, DIMENSION(:,:), INTENT(IN) :: PLMO ! Monin Obuhkov length REAL, DIMENSION(:,:),POINTER, INTENT(IN) :: PLMO ! Monin Obuhkov length
REAL, DIMENSION(:,:), INTENT(OUT) :: PLK ! Mixing length REAL, DIMENSION(:,:), INTENT(OUT) :: PLK ! Mixing length
REAL, DIMENSION(:,:), INTENT(OUT) :: PLEPS! Dissipative length REAL, DIMENSION(:,:), INTENT(OUT) :: PLEPS! Dissipative length
LOGICAL, OPTIONAL, INTENT(IN) :: ONEUTRAL LOGICAL, OPTIONAL, INTENT(IN) :: ONEUTRAL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment