SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
vslog.F90
Go to the documentation of this file.
1 !SFX_LIC Copyright 1994-2014 CNRS, Meteo-France and Universite Paul Sabatier
2 !SFX_LIC This is part of the SURFEX software governed by the CeCILL-C licence
3 !SFX_LIC version 1. See LICENSE, CeCILL-C_V1-en.txt and CeCILL-C_V1-fr.txt
4 !SFX_LIC for details. version 1.
5  SUBROUTINE vslog(PA,PLOG,N)
6 !
7  USE yomhook ,ONLY : lhook, dr_hook
8  USE parkind1 ,ONLY : jprb
9 !
10 !
11 !
12 
13 ! COMPUTES THE LOGARITHM
14 
15  IMPLICIT NONE
16 
17  INTEGER :: n
18  REAL :: pa(n), plog(n)
19 
20  INTEGER :: j
21  REAL(KIND=JPRB) :: zhook_handle
22 
23  IF (lhook) CALL dr_hook('VSLOG',0,zhook_handle)
24  DO j=1,n
25  plog(j) = log(pa(j))
26  END DO
27  IF (lhook) CALL dr_hook('VSLOG',1,zhook_handle)
28 
29  END
subroutine vslog(PA, PLOG, N)
Definition: vslog.F90:5