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 4849 for branches/2014/dev_r4650_UKMO14.12_STAND_ALONE_OBSOPER/NEMOGCM/NEMO/SAO_SRC – NEMO

Ignore:
Timestamp:
2014-11-12T15:25:41+01:00 (9 years ago)
Author:
andrewryan
Message:

moved ooo_data.F90 to sao_data.F90 along with renaming its internal subroutines appropriately

Location:
branches/2014/dev_r4650_UKMO14.12_STAND_ALONE_OBSOPER/NEMOGCM/NEMO/SAO_SRC
Files:
4 edited
1 moved

Legend:

Unmodified
Added
Removed
  • branches/2014/dev_r4650_UKMO14.12_STAND_ALONE_OBSOPER/NEMOGCM/NEMO/SAO_SRC/nemogcm.F90

    r4848 r4849  
    6565 
    6666   ! Stand Alone Observation operator modules 
    67    USE ooo_data 
     67   USE sao_data 
    6868   USE sao_intp 
    6969 
     
    102102         CALL nemo_init 
    103103         !! Initialise Stand Alone Observation operator data 
    104          CALL ooo_data_init( ln_cl4 ) 
     104         CALL sao_data_init( ln_cl4 ) 
    105105         !! Loop over various model counterparts 
    106106         DO jimatch = 1, cl4_match_len 
  • branches/2014/dev_r4650_UKMO14.12_STAND_ALONE_OBSOPER/NEMOGCM/NEMO/SAO_SRC/ooo_write.F90

    r4110 r4849  
    88   USE obs_utils, ONLY: chkerr 
    99   USE ooo_utils, ONLY: date_format, inst_converter, yyyymmdd_to_ref_date 
    10    USE ooo_data 
     10   USE sao_data 
    1111 
    1212   IMPLICIT NONE 
  • branches/2014/dev_r4650_UKMO14.12_STAND_ALONE_OBSOPER/NEMOGCM/NEMO/SAO_SRC/sao_data.F90

    r4848 r4849  
    1 MODULE ooo_data 
     1MODULE sao_data 
    22   !! ================================================================= 
    3    !!                    *** MODULE ooo_data *** 
     3   !!                    *** MODULE sao_data *** 
    44   !! ================================================================= 
    55   USE par_kind, ONLY: lc 
     
    4242      & alt_file                       !: altimeter file 
    4343CONTAINS 
    44    SUBROUTINE ooo_data_init( ld_cl4 ) 
     44   SUBROUTINE sao_data_init( ld_cl4 ) 
    4545      !!---------------------------------------------------------------------- 
    46       !!                    ***  SUBROUTINE ooo_data_init *** 
     46      !!                    ***  SUBROUTINE sao_data_init *** 
    4747      !! 
    4848      !! ** Purpose : To read namelists and initialise offline_oper run. 
     
    151151      END IF 
    152152 
    153    END SUBROUTINE ooo_data_init 
     153   END SUBROUTINE sao_data_init 
    154154 
    155 END MODULE ooo_data 
     155END MODULE sao_data 
    156156 
  • branches/2014/dev_r4650_UKMO14.12_STAND_ALONE_OBSOPER/NEMOGCM/NEMO/SAO_SRC/sao_intp.F90

    r4848 r4849  
    99   !! Stand Alone Observation operator modules 
    1010   USE sao_read 
    11    USE ooo_data 
     11   USE sao_data 
    1212 
    1313   IMPLICIT NONE 
  • branches/2014/dev_r4650_UKMO14.12_STAND_ALONE_OBSOPER/NEMOGCM/NEMO/SAO_SRC/sao_read.F90

    r4848 r4849  
    1515   USE par_oce, ONLY: jpi, jpj, jpk 
    1616   USE obs_fbm, ONLY: fbimdi, fbrmdi, fbsp, fbdp 
    17    USE ooo_data 
     17   USE sao_data 
    1818 
    1919   IMPLICIT NONE 
Note: See TracChangeset for help on using the changeset viewer.