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.
mod_grid_definition.f90 in vendors/XMLIO_SERVER/current/src/XMLIO – NEMO

source: vendors/XMLIO_SERVER/current/src/XMLIO/mod_grid_definition.f90 @ 1897

Last change on this file since 1897 was 1897, checked in by flavoni, 14 years ago

importing XMLIO_SERVER vendor

File size: 571 bytes
Line 
1MODULE mod_grid_definition
2  USE mod_grid_group
3 
4  TYPE(grid_group),SAVE,POINTER :: grid_definition
5 
6CONTAINS
7
8  SUBROUTINE grid_definition__swap_context(saved_grid_definition)     
9  IMPLICIT NONE
10    TYPE(grid_group),POINTER :: saved_grid_definition
11   
12    grid_definition=>saved_grid_definition
13   
14  END SUBROUTINE grid_definition__swap_context 
15
16  SUBROUTINE grid_definition__Init
17  USE mod_grid_group
18  IMPLICIT NONE
19 
20    CALL grid_group__new(grid_definition,"grid_definition")
21   
22  END SUBROUTINE grid_definition__Init
23 
24END MODULE mod_grid_definition
Note: See TracBrowser for help on using the repository browser.