SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
get_dim_fulln.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 ! ########################################
6  SUBROUTINE get_dim_full_n (U, &
7  kdim_full)
8 ! ########################################
9 !
10 !!**** *GET_DIM_FULL_n* - routine to get some ISBA fields
11 !!
12 !! PURPOSE
13 !! -------
14 !!
15 !!** METHOD
16 !! ------
17 !!
18 !! EXTERNAL
19 !! --------
20 !!
21 !!
22 !! IMPLICIT ARGUMENTS
23 !! ------------------
24 !!
25 !! REFERENCE
26 !! ---------
27 !!
28 !!
29 !! AUTHOR
30 !! ------
31 !! V. Masson *Meteo France*
32 !!
33 !! MODIFICATIONS
34 !! -------------
35 !! Original 04/2008
36 !-------------------------------------------------------------------------------
37 !
38 !* 0. DECLARATIONS
39 ! ------------
40 !
41 !
42 !
43 !
44 USE modd_surf_atm_n, ONLY : surf_atm_t
45 !
46 USE yomhook ,ONLY : lhook, dr_hook
47 USE parkind1 ,ONLY : jprb
48 !
49 IMPLICIT NONE
50 !
51 !* 0.1 Declarations of arguments
52 ! -------------------------
53 !
54 !
55 TYPE(surf_atm_t), INTENT(INOUT) :: u
56 !
57 INTEGER, INTENT(OUT) :: kdim_full ! total number of points
58 REAL(KIND=JPRB) :: zhook_handle
59 !
60 !
61 !* 0.2 Declarations of local variables
62 ! -------------------------------
63 !
64 !
65 !-------------------------------------------------------------------------------
66 IF (lhook) CALL dr_hook('GET_DIM_FULL_N',0,zhook_handle)
67 kdim_full = u%NDIM_FULL
68 IF (lhook) CALL dr_hook('GET_DIM_FULL_N',1,zhook_handle)
69 !
70 !==============================================================================
71 !
72 END SUBROUTINE get_dim_full_n
subroutine get_dim_full_n(U, KDIM_FULL)