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

Quentin 04/04/2022: bugfix repro expand array mode_turb_ver_dyn with mesonh

parent 896d62da
No related branches found
No related tags found
No related merge requests found
...@@ -711,28 +711,33 @@ ELSE ! Atmos case ...@@ -711,28 +711,33 @@ ELSE ! Atmos case
*ZUSLOPEM(:,:,1:1) & *ZUSLOPEM(:,:,1:1) &
+ZCOEFFLXV(:,:,1:1) / PDZZ(:,:,IKB:IKB) & +ZCOEFFLXV(:,:,1:1) / PDZZ(:,:,IKB:IKB) &
*ZVSLOPEM(:,:,1:1) ) *ZVSLOPEM(:,:,1:1) )
ZWORK4(:,:,IKB:IKB) = MYM( ZSOURCE(:,:,IKB:IKB) / PDZZ(:,:,IKB:IKB) ) !
!$mnh_expand_array(JI=1:D%NIT,JJ=1:D%NJT)
IF (.NOT.OCOUPLES) THEN ! only atmosp without coupling IF (.NOT.OCOUPLES) THEN ! only atmosp without coupling
! compute the explicit tangential flux at the W point ! compute the explicit tangential flux at the W point
!$mnh_expand_array(JI=1:D%NIT,JJ=1:D%NJT)
ZSOURCE(:,:,IKB) = & ZSOURCE(:,:,IKB) = &
PTAU11M(:,:) * PSINSLOPE(:,:) * PDIRCOSZW(:,:) * ZDIRSINZW(:,:) & PTAU11M(:,:) * PSINSLOPE(:,:) * PDIRCOSZW(:,:) * ZDIRSINZW(:,:) &
+PTAU12M(:,:) * PCOSSLOPE(:,:) * ZDIRSINZW(:,:) & +PTAU12M(:,:) * PCOSSLOPE(:,:) * ZDIRSINZW(:,:) &
-PTAU33M(:,:) * PSINSLOPE(:,:) * ZDIRSINZW(:,:) * PDIRCOSZW(:,:) -PTAU33M(:,:) * PSINSLOPE(:,:) * ZDIRSINZW(:,:) * PDIRCOSZW(:,:)
!$mnh_end_expand_array(JI=1:D%NIT,JJ=1:D%NJT)
ZWORK4(:,:,IKB:IKB) = MYM( ZSOURCE(:,:,IKB:IKB) / PDZZ(:,:,IKB:IKB) )
! !
! add the vertical part or the surface flux at the V,W vorticity point ! add the vertical part or the surface flux at the V,W vorticity point
ZSOURCE(:,:,IKB) = & !$mnh_expand_array(JI=1:D%NIT,JJ=1:D%NJT)
ZSOURCE(:,:,IKB) = &
( ZWORK4(:,:,IKB) & ( ZWORK4(:,:,IKB) &
+ ZWORK3(:,:,IKB) & + ZWORK3(:,:,IKB) &
- ZCOEFS(:,:,1) * PVM(:,:,IKB) * PIMPL & - ZCOEFS(:,:,1) * PVM(:,:,IKB) * PIMPL &
) * 0.5 * ( 1. + ZWORK1(:,:,D%NKA) / ZWORK2(:,:,IKB) ) ) * 0.5 * ( 1. + ZWORK1(:,:,D%NKA) / ZWORK2(:,:,IKB) )
!$mnh_end_expand_array(JI=1:D%NIT,JJ=1:D%NJT)
! !
ELSE !atmosphere when coupling ELSE !atmosphere when coupling
! input flux assumed to be in SI and at vorticity point ! input flux assumed to be in SI and at vorticity point
!$mnh_expand_array(JI=1:D%NIT,JJ=1:D%NJT)
ZSOURCE(:,:,IKB) = -TURBN%XSSVFL_C(:,:,1)/(1.*PDZZ(:,:,IKB)) & ZSOURCE(:,:,IKB) = -TURBN%XSSVFL_C(:,:,1)/(1.*PDZZ(:,:,IKB)) &
* 0.5 * ( 1. + ZWORK1(:,:,D%NKA) / ZWORK2(:,:,IKB) ) * 0.5 * ( 1. + ZWORK1(:,:,D%NKA) / ZWORK2(:,:,IKB) )
!$mnh_end_expand_array(JI=1:D%NIT,JJ=1:D%NJT)
ENDIF ENDIF
!$mnh_end_expand_array(JI=1:D%NIT,JJ=1:D%NJT)
!No flux at the atmosphere top !No flux at the atmosphere top
ZSOURCE(:,:,IKE) = 0. ZSOURCE(:,:,IKE) = 0.
ENDIF ! End of Ocean or Atmospher Cases ENDIF ! End of Ocean or Atmospher Cases
......
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