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

Philippe 12/05/2022: write_profilern: remove ZDATA array (not useful anymore)

parent f6894f6a
No related branches found
No related tags found
No related merge requests found
......@@ -361,16 +361,13 @@ INTEGER :: JSV ! loop counter
integer :: ji
INTEGER :: ISTORE
REAL, DIMENSION(:,:,:), ALLOCATABLE :: ZRHO
REAL, DIMENSION(:,:), TARGET, ALLOCATABLE :: ZWORK
REAL, DIMENSION(:,:), POINTER :: ZDATA
REAL, DIMENSION(:,:), ALLOCATABLE :: ZWORK
REAL, DIMENSION(:,:,:,:), ALLOCATABLE :: ZSV, ZN0, ZSIG, ZRG
type(tbudiachrometadata) :: tzbudiachro
type(tfieldmetadata_base), dimension(:), allocatable :: tzfields
!
!----------------------------------------------------------------------------
ZDATA => Null()
IKU = NKMAX + 2 * JPVEXT !Number of vertical levels
!
!IPROC is too large (not a big problem) due to the separation between vertical profiles and point values
......@@ -435,14 +432,11 @@ if ( nsv > 0 ) then
if ( Trim( tsvlist(jsv)%cunits ) == 'ppv' ) then
yunits = 'ppb'
zwork = tpprofiler%xsv(:,:,jsv) * 1.e9 !*1e9 for conversion ppv->ppb
zdata => zwork
else
yunits = Trim( tsvlist(jsv)%cunits )
zwork = tpprofiler%xsv(:,:,jsv)
zdata => zwork
end if
call Add_profile( tsvlist(jsv)%cmnhname, '', yunits, zdata )
zdata => Null()
call Add_profile( tsvlist(jsv)%cmnhname, '', yunits, zwork )
end do
Deallocate( zwork )
......
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