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 4106 for branches/2013/dev_r3987_UKMO4_OBS/NEMOGCM/NEMO/OOO_SRC/ooo_read.F90 – NEMO

Ignore:
Timestamp:
2013-10-22T17:30:08+02:00 (11 years ago)
Author:
andrewryan
Message:

Applied naming convention to eliminate confusion with OFF_SRC, included relevant OPA_SRC files in OOO_SRC directory.

File:
1 moved

Legend:

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

    r4100 r4106  
    11 
    2 MODULE off_read 
     2MODULE ooo_read 
    33   !!====================================================================== 
    4    !!                      *** MODULE off_read *** 
     4   !!                      *** MODULE ooo_read *** 
    55   !! Read routines : I/O for offline obs_oper 
    66   !!====================================================================== 
     
    1616USE obs_fbm, ONLY: fbimdi, fbrmdi, fbsp, fbdp 
    1717 
    18 USE off_data 
     18USE ooo_data 
    1919!! * Routine accessibility 
    2020PRIVATE 
    2121 
    22 PUBLIC off_rea_dri 
     22PUBLIC ooo_rea_dri 
    2323 
    2424CONTAINS 
    25    SUBROUTINE off_rea_dri(kfile) 
     25   SUBROUTINE ooo_rea_dri(kfile) 
    2626      IMPLICIT NONE 
    2727      !!------------------------------------------------------------------------ 
    28       !!             *** off_rea_dri *** 
     28      !!             *** ooo_rea_dri *** 
    2929      !! 
    3030      !! Purpose : To choose appropriate read method 
     
    5656         & (TRIM(cmatchname) == 'best_estimate').OR. & 
    5757         & (TRIM(cmatchname) == '') ) THEN 
    58          CALL off_read_file(TRIM(cdfilename), kindex) 
    59          CALL off_read_juld(TRIM(cdfilename), kindex, cl4_modjuld) 
     58         CALL ooo_read_file(TRIM(cdfilename), kindex) 
     59         CALL ooo_read_juld(TRIM(cdfilename), kindex, cl4_modjuld) 
    6060      ELSE IF (TRIM(cmatchname) == 'climatology') THEN 
    6161         WRITE(numout,*) 'Interpolating climatologies' 
    6262      ELSE IF (TRIM(cmatchname) == 'altimeter') THEN 
    63          CALL off_read_altbias(TRIM(cdfilename)) 
    64          CALL off_read_juld(TRIM(cdfilename), kindex, cl4_modjuld) 
     63         CALL ooo_read_altbias(TRIM(cdfilename)) 
     64         CALL ooo_read_juld(TRIM(cdfilename), kindex, cl4_modjuld) 
    6565      END IF 
    6666 
    67    END SUBROUTINE off_rea_dri 
    68  
    69    SUBROUTINE off_read_altbias(filename) 
     67   END SUBROUTINE ooo_rea_dri 
     68 
     69   SUBROUTINE ooo_read_altbias(filename) 
    7070      IMPLICIT NONE 
    7171      !!------------------------------------------------------------------------ 
    72       !!                      *** off_read_altbias *** 
     72      !!                      *** ooo_read_altbias *** 
    7373      !! 
    7474      !! Purpose : To read altimeter bias and set tn,sn to missing values 
     
    140140      END IF 
    141141    
    142    END SUBROUTINE off_read_altbias 
    143  
    144    SUBROUTINE off_read_file(filename, ifcst) 
     142   END SUBROUTINE ooo_read_altbias 
     143 
     144   SUBROUTINE ooo_read_file(filename, ifcst) 
    145145      IMPLICIT NONE 
    146146      !!------------------------------------------------------------------------ 
    147       !!             *** off_read_file *** 
     147      !!             *** ooo_read_file *** 
    148148      !! 
    149149      !! Purpose : To fill tn and sn with dailymean field from netcdf files 
     
    268268         istat = nf90_close(ncid) 
    269269      END IF 
    270    END SUBROUTINE off_read_file 
    271  
    272    SUBROUTINE off_read_juld(filename, ifcst, julian) 
     270   END SUBROUTINE ooo_read_file 
     271 
     272   SUBROUTINE ooo_read_juld(filename, ifcst, julian) 
    273273      USE calendar 
    274274      IMPLICIT NONE 
    275275      !!-------------------------------------------------------------------- 
    276       !!                 *** off_read_juld *** 
     276      !!                 *** ooo_read_juld *** 
    277277      !! 
    278278      !!   Purpose : To read model julian day information from file 
     
    346346      DEALLOCATE(r_sec) 
    347347       
    348    END SUBROUTINE off_read_juld 
    349  
    350 END MODULE off_read  
    351  
     348   END SUBROUTINE ooo_read_juld 
     349 
     350END MODULE ooo_read  
     351 
Note: See TracChangeset for help on using the changeset viewer.