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

Philippe 27/06/2024: one_wayn: add missing initialisations

parent 27e02330
No related branches found
No related tags found
No related merge requests found
!MNH_LIC Copyright 1996-2022 CNRS, Meteo-France and Universite Paul Sabatier !MNH_LIC Copyright 1996-2024 CNRS, Meteo-France and Universite Paul Sabatier
!MNH_LIC This is part of the Meso-NH software governed by the CeCILL-C licence !MNH_LIC This is part of the Meso-NH software governed by the CeCILL-C licence
!MNH_LIC version 1. See LICENSE, CeCILL-C_V1-en.txt and CeCILL-C_V1-fr.txt !MNH_LIC version 1. See LICENSE, CeCILL-C_V1-en.txt and CeCILL-C_V1-fr.txt
!MNH_LIC for details. version 1. !MNH_LIC for details. version 1.
...@@ -352,9 +352,19 @@ ZTWT(:,:,:)=0 ...@@ -352,9 +352,19 @@ ZTWT(:,:,:)=0
ALLOCATE(ZTTHT(IDIMX,IDIMY,SIZE(XTHT,3))) ALLOCATE(ZTTHT(IDIMX,IDIMY,SIZE(XTHT,3)))
ZTTHT(:,:,:)=0 ZTTHT(:,:,:)=0
IF (SIZE(XTKET) /= 0) ALLOCATE(ZTTKET(IDIMX,IDIMY,SIZE(XTKET,3))) IF (SIZE(XTKET) /= 0) THEN
IF (IRR /= 0) ALLOCATE(ZTRT(IDIMX,IDIMY,SIZE(XRT,3),IRR)) ALLOCATE(ZTTKET(IDIMX,IDIMY,SIZE(XTKET,3)))
IF (NSV_A(KMI)/= 0) ALLOCATE(ZTSVT(IDIMX,IDIMY,SIZE(XSVT,3),NSV_A(KMI))) ZTTKET(:,:,:) = 0.
END IF
IF (IRR /= 0) THEN
ALLOCATE(ZTRT(IDIMX,IDIMY,SIZE(XRT,3),IRR))
ZTRT(:,:,:,:) = 0.
END IF
IF (NSV_A(KMI)/= 0) THEN
ALLOCATE(ZTSVT(IDIMX,IDIMY,SIZE(XSVT,3),NSV_A(KMI)))
ZTSVT(:,:,:,:) = 0.
END IF
! !
! 1.3 Specify the ls "source" fields and receiver fields ! 1.3 Specify the ls "source" fields and receiver fields
! !
......
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