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 10810 for NEMO/branches/UKMO/dev_r10037_vorticity_trends/src/OCE/IOM/iom.F90 – NEMO

Ignore:
Timestamp:
2019-03-29T09:43:38+01:00 (5 years ago)
Author:
davestorkey
Message:

UKMO/dev_r10037_vorticity_trends branch: commit code changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/UKMO/dev_r10037_vorticity_trends/src/OCE/IOM/iom.F90

    r10032 r10810  
    153153         CALL set_grid( "U", glamu, gphiu, .FALSE., .FALSE. ) 
    154154         CALL set_grid( "V", glamv, gphiv, .FALSE., .FALSE. ) 
     155         CALL set_grid( "F", glamf, gphif, .FALSE., .FALSE. ) 
    155156         CALL set_grid( "W", glamt, gphit, .FALSE., .FALSE. ) 
    156157         CALL set_grid_znl( gphit ) 
     
    160161            CALL iom_set_domain_attr("grid_U", area = e1e2u(nldi:nlei, nldj:nlej)) 
    161162            CALL iom_set_domain_attr("grid_V", area = e1e2v(nldi:nlei, nldj:nlej)) 
     163            CALL iom_set_domain_attr("grid_F", area = e1e2f(nldi:nlei, nldj:nlej)) 
    162164            CALL iom_set_domain_attr("grid_W", area = e1e2t(nldi:nlei, nldj:nlej)) 
    163165            CALL set_grid_bounds( "T", glamf, gphif, glamt, gphit ) 
    164166            CALL set_grid_bounds( "U", glamv, gphiv, glamu, gphiu ) 
    165167            CALL set_grid_bounds( "V", glamu, gphiu, glamv, gphiv ) 
     168            CALL set_grid_bounds( "F", glamt, gphit, glamf, gphif ) 
    166169            CALL set_grid_bounds( "W", glamf, gphif, glamt, gphit ) 
    167170         ENDIF 
     
    174177         CALL set_grid( "U", glamu_crs, gphiu_crs, .FALSE., .FALSE. )  
    175178         CALL set_grid( "V", glamv_crs, gphiv_crs, .FALSE., .FALSE. )  
     179         CALL set_grid( "F", glamf_crs, gphif_crs, .FALSE., .FALSE. )  
    176180         CALL set_grid( "W", glamt_crs, gphit_crs, .FALSE., .FALSE. )  
    177181         CALL set_grid_znl( gphit_crs ) 
     
    183187            CALL iom_set_domain_attr("grid_U", area = e1u_crs(nldi:nlei, nldj:nlej) * e2u_crs(nldi:nlei, nldj:nlej)) 
    184188            CALL iom_set_domain_attr("grid_V", area = e1v_crs(nldi:nlei, nldj:nlej) * e2v_crs(nldi:nlei, nldj:nlej)) 
     189            CALL iom_set_domain_attr("grid_F", area = e1f_crs(nldi:nlei, nldj:nlej) * e2f_crs(nldi:nlei, nldj:nlej)) 
    185190            CALL iom_set_domain_attr("grid_W", area = e1e2t_crs(nldi:nlei, nldj:nlej)) 
    186191            CALL set_grid_bounds( "T", glamf_crs, gphif_crs, glamt_crs, gphit_crs ) 
    187192            CALL set_grid_bounds( "U", glamv_crs, gphiv_crs, glamu_crs, gphiu_crs ) 
    188193            CALL set_grid_bounds( "V", glamu_crs, gphiu_crs, glamv_crs, gphiv_crs ) 
     194            CALL set_grid_bounds( "F", glamt_crs, gphit_crs, glamf_crs, gphif_crs ) 
    189195            CALL set_grid_bounds( "W", glamf_crs, gphif_crs, glamt_crs, gphit_crs ) 
    190196         ENDIF 
Note: See TracChangeset for help on using the changeset viewer.