SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
default_prep_seaflux.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 ! #########
7 ! ###########################
8 !
9 !!**** *DEFAULT_PREP_SEAFLUX* - routine to set default values for the configuration for SEAFLUX field preparation
10 !!
11 !! PURPOSE
12 !! -------
13 !!
14 !!** METHOD
15 !! ------
16 !!
17 !! EXTERNAL
18 !! --------
19 !!
20 !!
21 !! IMPLICIT ARGUMENTS
22 !! ------------------
23 !!
24 !! REFERENCE
25 !! ---------
26 !!
27 !!
28 !! AUTHOR
29 !! ------
30 !! S. Malardel *Meteo France*
31 !!
32 !! MODIFICATIONS
33 !! -------------
34 !! Original 10/2003
35 !! 01/2008 C. Lebeaupin Brossier ! initialization of oceanic var.
36 !! ! from MERCATOR analyses types
37 !! 07/2012 P. Le Moigne ! CMO1D phasing
38 !! 01/2014 S. Senesi ! introduce fractional seaice and sea-ice model
39 !! 03/2014 S. Belamari ! initialize sea surface salinity
40 !-------------------------------------------------------------------------------
41 !
42 !* 0. DECLARATIONS
43 ! ------------
44 !
45 USE modd_prep_seaflux, ONLY : cfile_seaflx, ctype_seaflx, cfilepgd_seaflx, ctypepgd, xsst_unif,&
46  xsss_unif, xsic_unif
47 !
48 USE modn_prep_seaflux, ONLY : lsea_sbl, cseaice_scheme, locean_mercator, locean_current, &
49  xtime_rel, lcur_rel, lts_rel, &
50  lzero_flux, lcorr_flux, xcorflx, ldiapyc
51 
52 USE modd_surf_par, ONLY : xundef
53 !
54 !
55 USE yomhook ,ONLY : lhook, dr_hook
56 USE parkind1 ,ONLY : jprb
57 !
58 IMPLICIT NONE
59 !
60 !* 0.1 Declarations of arguments
61 ! -------------------------
62 !
63 !
64 !
65 !* 0.2 Declarations of local variables
66 ! -------------------------------
67 !
68 !-------------------------------------------------------------------------------
69 !
70 
71 REAL(KIND=JPRB) :: zhook_handle
72 
73 IF (lhook) CALL dr_hook('DEFAULT_PREP_SEAFLUX',0,zhook_handle)
74  cfile_seaflx = ' '
75  ctype_seaflx = 'GRIB '
76 !
77  cfilepgd_seaflx = ' '
78  ctypepgd = ' '
79 !
80 xsst_unif = xundef
81 xsss_unif = xundef
82 xsic_unif = xundef
83 !
84 lsea_sbl = .false.
85  cseaice_scheme='NONE '
86 locean_mercator = .false.
87 locean_current = .false.
88 !
89 xtime_rel = 25920000.
90 xcorflx = 0.
91 lcur_rel = .false.
92 lts_rel = .false.
93 lzero_flux = .false.
94 lcorr_flux = .false.
95 ldiapyc = .false.
96 !
97 IF (lhook) CALL dr_hook('DEFAULT_PREP_SEAFLUX',1,zhook_handle)
98 !
99 !-------------------------------------------------------------------------------
100 !
101 END SUBROUTINE default_prep_seaflux
subroutine default_prep_seaflux