New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
sbcapr.F90 in branches/2013/dev_r3853_CNRS9_ConfSetting/NEMOGCM/NEMO/OPA_SRC/SBC – NEMO

source: branches/2013/dev_r3853_CNRS9_ConfSetting/NEMOGCM/NEMO/OPA_SRC/SBC/sbcapr.F90 @ 3875

Last change on this file since 3875 was 3875, checked in by clevy, 11 years ago

Configuration Setting/Step? 1, see ticket:#1074

File size: 9.7 KB
Line 
1MODULE sbcapr
2   !!======================================================================
3   !!                       ***  MODULE  sbcapr  ***
4   !! Surface module :   atmospheric pressure forcing
5   !!======================================================================
6   !! History :  3.3  !   2010-09  (J. Chanut, C. Bricaud, G. Madec)  Original code
7   !!----------------------------------------------------------------------
8   
9   !!----------------------------------------------------------------------
10   !!   sbc_apr        : read atmospheric pressure in netcdf files
11   !!----------------------------------------------------------------------
12   USE obc_par         ! open boundary condition parameters
13   USE dom_oce         ! ocean space and time domain
14   USE sbc_oce         ! surface boundary condition
15   USE dynspg_oce      ! surface pressure gradient variables
16   USE phycst          ! physical constants
17   USE fldread         ! read input fields
18   USE in_out_manager  ! I/O manager
19   USE lib_fortran     ! distribued memory computing library
20   USE iom             ! IOM library
21   USE lib_mpp         ! MPP library
22
23   IMPLICIT NONE
24   PRIVATE
25
26   PUBLIC   sbc_apr    ! routine called in sbcmod
27   
28   !                                              !!* namsbc_apr namelist (Atmospheric PRessure) *
29   LOGICAL, PUBLIC ::   ln_apr_obc = .FALSE.      !: inverse barometer added to OBC ssh data
30   LOGICAL, PUBLIC ::   ln_ref_apr = .FALSE.      !: ref. pressure: global mean Patm (F) or a constant (F)
31   REAL(wp)        ::   rn_pref    = 101000._wp   !  reference atmospheric pressure   [N/m2]
32
33   REAL(wp), ALLOCATABLE, SAVE, PUBLIC, DIMENSION(:,:) ::   ssh_ib    ! Inverse barometer now    sea surface height   [m]
34   REAL(wp), ALLOCATABLE, SAVE, PUBLIC, DIMENSION(:,:) ::   ssh_ibb   ! Inverse barometer before sea surface height   [m]
35   REAL(wp), ALLOCATABLE, SAVE, PUBLIC, DIMENSION(:,:) ::   apr       ! atmospheric pressure at kt                 [N/m2]
36   
37   REAL(wp) ::   tarea                ! whole domain mean masked ocean surface
38   REAL(wp) ::   r1_grau              ! = 1.e0 / (grav * rau0)
39   
40   TYPE(FLD), ALLOCATABLE, DIMENSION(:) ::   sf_apr   ! structure of input fields (file informations, fields read)
41
42   !! * Substitutions
43#  include "domzgr_substitute.h90"
44   !!----------------------------------------------------------------------
45   !! NEMO/OPA 4.0 , NEMO Consortium (2011)
46   !! $Id: $
47   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt)
48   !!----------------------------------------------------------------------
49CONTAINS
50
51   SUBROUTINE sbc_apr( kt )
52      !!---------------------------------------------------------------------
53      !!                     ***  ROUTINE sbc_apr  ***
54      !!
55      !! ** Purpose :   read atmospheric pressure fields in netcdf files.
56      !!
57      !! ** Method  : - Read namelist namsbc_apr
58      !!              - Read Patm fields in netcdf files
59      !!              - Compute reference atmospheric pressure
60      !!              - Compute inverse barometer ssh
61      !! ** action  :   apr      : atmospheric pressure at kt
62      !!                ssh_ib   : inverse barometer ssh at kt
63      !!---------------------------------------------------------------------
64      INTEGER, INTENT(in)::   kt   ! ocean time step
65      !!
66      INTEGER            ::   ierror  ! local integer
67      INTEGER            ::   ios     ! Local integer output status for namelist read
68      !!
69      CHARACTER(len=100) ::  cn_dir   ! Root directory for location of ssr files
70      TYPE(FLD_N)        ::  sn_apr   ! informations about the fields to be read
71      !!
72      NAMELIST/namsbc_apr/ cn_dir, sn_apr, ln_ref_apr, rn_pref, ln_apr_obc
73      !!----------------------------------------------------------------------
74      !
75      !
76      !                                         ! -------------------- !
77      IF( kt == nit000 ) THEN                   ! First call kt=nit000 !
78         !                                      ! -------------------- !
79         !                                            !* set file information (default values)
80         ! ... default values (NB: frequency positive => hours, negative => months)
81         !            !   file   ! frequency !  variable  ! time intep !  clim   ! 'yearly' or ! weights  ! rotation !
82         !            !   name   !  (hours)  !   name     !   (T/F)    !  (T/F)  !  'monthly'  ! filename ! pairs    !
83         sn_apr = FLD_N( 'patm'  ,    24     ,  'patm'    ,  .false.   , .true.  ,   'yearly'  , ''       , ''       )
84         cn_dir  = './'          ! directory in which the Patm data are
85
86         REWIND( numnam_ref )              ! Namelist namsbc_apr in reference namelist : File for atmospheric pressure forcing
87         READ  ( numnam_ref, namsbc_apr, IOSTAT = ios, ERR = 901)
88901      IF( ios /= 0 ) CALL ctl_nam ( ios , 'namsbc_apr in reference namelist', lwp )
89
90         REWIND( numnam_cfg )              ! Namelist namsbc_apr in configuration namelist : File for atmospheric pressure forcing
91         READ  ( numnam_cfg, namsbc_apr, IOSTAT = ios, ERR = 902 )
92902      IF( ios /= 0 ) CALL ctl_nam ( ios , 'namsbc_apr in configuration namelist', lwp )
93         WRITE ( numond, namsbc_apr )
94         !
95         ALLOCATE( sf_apr(1), STAT=ierror )           !* allocate and fill sf_sst (forcing structure) with sn_sst
96         IF( ierror > 0 )   CALL ctl_stop( 'STOP', 'sbc_apr: unable to allocate sf_apr structure' )
97         !
98         CALL fld_fill( sf_apr, (/ sn_apr /), cn_dir, 'sbc_apr', 'Atmospheric pressure ', 'namsbc_apr' )
99                                ALLOCATE( sf_apr(1)%fnow(jpi,jpj,1)   )
100         IF( sn_apr%ln_tint )   ALLOCATE( sf_apr(1)%fdta(jpi,jpj,1,2) )
101                                ALLOCATE( ssh_ib(jpi,jpj) , ssh_ibb(jpi,jpj) )
102                                ALLOCATE( apr (jpi,jpj) )
103         !
104         IF(lwp) THEN                                 !* control print
105            WRITE(numout,*)
106            WRITE(numout,*) '   Namelist namsbc_apr : Atmospheric PRessure as extrenal forcing'
107            WRITE(numout,*) '      ref. pressure: global mean Patm (T) or a constant (F)  ln_ref_apr = ', ln_ref_apr
108         ENDIF
109         !
110         IF( ln_ref_apr ) THEN                        !* Compute whole inner domain mean masked ocean surface
111            tarea = glob_sum( e1e2t(:,:) )
112            IF(lwp) WRITE(numout,*) '         Variable ref. Patm computed over a ocean surface of ', tarea*1e-6, 'km2'
113         ELSE
114            IF(lwp) WRITE(numout,*) '         Reference Patm used : ', rn_pref, ' N/m2'
115         ENDIF
116         !
117         r1_grau = 1.e0 / (grav * rau0)               !* constant for optimization
118         !
119         !                                            !* control check
120         IF ( ln_apr_obc  ) THEN
121            IF(lwp) WRITE(numout,*) '         Inverse barometer added to OBC ssh data'
122         ENDIF
123         IF( ( ln_apr_obc ) .AND. .NOT. lk_dynspg_ts )   &
124            CALL ctl_stop( 'sbc_apr: use inverse barometer ssh at open boundary ONLY possible with time-splitting' )
125         IF( ( ln_apr_obc ) .AND. .NOT. ln_apr_dyn   )   &
126            CALL ctl_stop( 'sbc_apr: use inverse barometer ssh at open boundary ONLY requires ln_apr_dyn=T' )
127      ENDIF
128
129      !                                         ! ========================== !
130      IF( MOD( kt-1, nn_fsbc ) == 0 ) THEN      !    At each sbc time-step   !
131         !                                      ! ===========+++============ !
132         !
133         IF( kt /= nit000 )   ssh_ibb(:,:) = ssh_ib(:,:)    !* Swap of ssh_ib fields
134         !
135         CALL fld_read( kt, nn_fsbc, sf_apr )               !* input Patm provided at kt + nn_fsbc/2
136         !
137         !                                                  !* update the reference atmospheric pressure (if necessary)
138         IF( ln_ref_apr )   rn_pref = glob_sum( sf_apr(1)%fnow(:,:,1) * e1e2t(:,:) ) / tarea
139         !
140         !                                                  !* Patm related forcing at kt
141         ssh_ib(:,:) = - ( sf_apr(1)%fnow(:,:,1) - rn_pref ) * r1_grau    ! equivalent ssh (inverse barometer)
142         apr   (:,:) =     sf_apr(1)%fnow(:,:,1)                        ! atmospheric pressure
143         !
144         CALL iom_put( "ssh_ib", ssh_ib )                   !* output the inverse barometer ssh
145      ENDIF
146
147      !                                         ! ---------------------------------------- !
148      IF( kt == nit000 ) THEN                   !   set the forcing field at nit000 - 1    !
149         !                                      ! ---------------------------------------- !
150         !                                            !* Restart: read in restart file
151         IF( ln_rstart .AND. iom_varid( numror, 'ssh_ibb', ldstop = .FALSE. ) > 0 ) THEN
152            IF(lwp) WRITE(numout,*) 'sbc_apr:   ssh_ibb read in the restart file'
153            CALL iom_get( numror, jpdom_autoglo, 'ssh_ibb', ssh_ibb )   ! before inv. barometer ssh
154            !
155         ELSE                                         !* no restart: set from nit000 values
156            IF(lwp) WRITE(numout,*) 'sbc_apr:   ssh_ibb set to nit000 values'
157            ssh_ibb(:,:) = ssh_ib(:,:)
158         ENDIF
159      ENDIF
160      !                                         ! ---------------------------------------- !
161      IF( lrst_oce ) THEN                       !      Write in the ocean restart file     !
162         !                                      ! ---------------------------------------- !
163         IF(lwp) WRITE(numout,*)
164         IF(lwp) WRITE(numout,*) 'sbc_apr : ssh_ib written in ocean restart file at it= ', kt,' date= ', ndastp
165         IF(lwp) WRITE(numout,*) '~~~~'
166         CALL iom_rstput( kt, nitrst, numrow, 'ssh_ibb' , ssh_ib )
167      ENDIF
168      !
169   END SUBROUTINE sbc_apr
170     
171   !!======================================================================
172END MODULE sbcapr
Note: See TracBrowser for help on using the repository browser.