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.
Changeset 4120 for branches/2013/dev_r3987_UKMO4_OBS/NEMOGCM/NEMO/OOO_SRC/nemogcm.F90 – NEMO

Ignore:
Timestamp:
2013-10-24T10:29:13+02:00 (10 years ago)
Author:
andrewryan
Message:

Refactored offline_obs_oper to be nemo_gcm. Renamed ooomod.F90 to ooo_intp.F90 since it now contains the interpolation steps only. Renamed namelist to ooo.nml since it contains settings for the offline obs_oper only.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2013/dev_r3987_UKMO4_OBS/NEMOGCM/NEMO/OOO_SRC/nemogcm.F90

    r4116 r4120  
    6363   USE xios 
    6464#endif 
     65   USE ooo_data        ! Offline obs_oper data 
     66   USE ooo_read        ! Offline obs_oper read routines 
     67   USE ooo_intp        ! Offline obs_oper interpolation 
    6568 
    6669   IMPLICIT NONE 
    6770   PRIVATE 
    6871 
     72   PUBLIC   nemo_gcm    ! called by nemo.f90 
    6973   PUBLIC   nemo_init   ! needed by AGRIF 
    7074   PUBLIC   nemo_alloc  ! needed by TAM 
     
    7983CONTAINS 
    8084 
     85   SUBROUTINE nemo_gcm 
     86         !!---------------------------------------------------------------------- 
     87         !!                    ***  SUBROUTINE offline_obs_oper *** 
     88         !! 
     89         !! ** Purpose : To use NEMO components to interpolate model fields 
     90         !!              to observation space. 
     91         !! 
     92         !! ** Method : 1. Initialise NEMO 
     93         !!             2. Initialise offline obs_oper 
     94         !!             3. Cycle through match ups 
     95         !!             4. Write results to file 
     96         !! 
     97         !!---------------------------------------------------------------------- 
     98         !! Class 4 output stream switch 
     99         USE obs_fbm, ONLY: ln_cl4 
     100         !! Initialise NEMO 
     101         CALL nemo_init 
     102         !! Initialise Offline obs_oper data 
     103         CALL ooo_data_init( ln_cl4 ) 
     104         !! Loop over various model counterparts 
     105         DO jimatch = 1, cl4_match_len 
     106            IF (jimatch .GT. 1) THEN 
     107               !! Initialise obs_oper 
     108               CALL dia_obs_init 
     109            END IF 
     110            !! Interpolate to observation space 
     111            CALL ooo_interp 
     112            !! Pipe to output files 
     113            CALL dia_obs_wri 
     114            !! Reset the obs_oper between 
     115            CALL dia_obs_dealloc 
     116         END DO 
     117         !! Safely stop MPI 
     118         IF(lk_mpp) CALL mppstop  ! end mpp communications 
     119   END SUBROUTINE nemo_gcm 
    81120 
    82121   SUBROUTINE nemo_init 
Note: See TracChangeset for help on using the changeset viewer.