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 15228 for NEMO/branches/UKMO/NEMO_4.0.4_generic_obs – NEMO

Ignore:
Timestamp:
2021-09-03T18:41:22+02:00 (3 years ago)
Author:
dford
Message:

Rename module.

Location:
NEMO/branches/UKMO/NEMO_4.0.4_generic_obs/src/OCE/OBS
Files:
5 edited
1 moved

Legend:

Unmodified
Added
Removed
  • NEMO/branches/UKMO/NEMO_4.0.4_generic_obs/src/OCE/OBS/diaobs.F90

    r15227 r15228  
    4646   USE obs_surf_def      ! Surface data definitions 
    4747   USE obs_types         ! Definitions for observation types 
    48    USE obs_field         ! Definitions for observation types 
     48   USE obs_group_def     ! Definitions for observation groups 
    4949   ! 
    5050   USE mpp_map           ! MPP mapping 
  • NEMO/branches/UKMO/NEMO_4.0.4_generic_obs/src/OCE/OBS/obs_group_def.F90

    r15227 r15228  
    1 MODULE obs_field 
     1MODULE obs_group_def 
    22   !!===================================================================== 
    3    !!                       ***  MODULE obs_field  *** 
     3   !!                       ***  MODULE obs_group_def  *** 
    44   !! Observation diagnostics: Routines specific to model variables 
    55   !!===================================================================== 
     
    472472   END SUBROUTINE obs_group_check 
    473473 
    474 END MODULE obs_field 
     474END MODULE obs_group_def 
  • NEMO/branches/UKMO/NEMO_4.0.4_generic_obs/src/OCE/OBS/obs_oper.F90

    r15227 r15228  
    1919   USE sbcdcy,        ONLY :   sbc_dcy, nday_qsr            ! For calculation of where it is night-time 
    2020   USE obs_grid,      ONLY :   obs_level_search 
    21    USE obs_field,    ONLY : cobsname_sla, cobsname_fbd, imaxavtypes 
     21   USE obs_group_def, ONLY : cobsname_sla, cobsname_fbd, imaxavtypes 
    2222#if defined key_si3 || defined key_cice 
    2323   USE phycst,        ONLY : rhos, rhoi, rhow               ! For conversion from sea ice freeboard to thickness 
  • NEMO/branches/UKMO/NEMO_4.0.4_generic_obs/src/OCE/OBS/obs_prep.F90

    r15227 r15228  
    2222   USE obs_inter_sup      ! Interpolation support 
    2323   USE obs_oper           ! Observation operators 
    24    USE obs_field, ONLY : &  ! Velocity variable names 
     24   USE obs_group_def, ONLY : &  ! Observation variable information 
    2525      & cobsname_uvel, & 
    2626      & cobsname_vvel, & 
  • NEMO/branches/UKMO/NEMO_4.0.4_generic_obs/src/OCE/OBS/obs_read_prof.F90

    r15227 r15228  
    2727   USE lib_mpp                  ! For ctl_warn/stop 
    2828   USE obs_fbm                  ! Feedback routines 
    29    USE obs_field, ONLY : &      ! Velocity variable names 
    30       & cobsname_uvel,   & 
    31       & cobsname_vvel,   & 
     29   USE obs_group_def, ONLY : &  ! Observation variable information 
     30      & cobsname_uvel, & 
     31      & cobsname_vvel, & 
    3232      & imaxavtypes 
    3333 
  • NEMO/branches/UKMO/NEMO_4.0.4_generic_obs/src/OCE/OBS/obs_read_surf.F90

    r15225 r15228  
    2222   USE obs_fbm                  ! Feedback routines 
    2323   USE netcdf                   ! NetCDF library 
    24    USE obs_field, ONLY : &      ! Velocity variable names 
    25       & cobsname_uvel,   & 
     24   USE obs_group_def, ONLY : &  ! Observation variable information 
     25      & cobsname_uvel, & 
    2626      & cobsname_vvel 
    2727 
Note: See TracChangeset for help on using the changeset viewer.