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.
Ticket Diff – NEMO

Changes between Initial Version and Version 5 of Ticket #1865


Ignore:
Timestamp:
2017-11-08T11:56:04+01:00 (6 years ago)
Author:
nemo
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1865

    • Property Status changed from new to closed
    • Property Component changed from OPA to AGRIF
    • Property Owner changed from nemo to jchanut
    • Property Resolution changed from to duplicate
    • Property Severity changed from to minor
  • Ticket #1865 – Description

    initial v5  
    33With bdy, variables are declared with target attribute: 
    44exp: trc.F90: 
     5{{{#!f 
    56TYPE(OBC_DATA),    PUBLIC, ALLOCATABLE, DIMENSION(:,:), TARGET ::  trcdta_bdy 
     7}}} 
    68 
    79When te code is pre-compiled with Agrif, those variables get the attribut pointer: 
    810exp: trc.f90 
     11{{{#!f 
    912type(OBC_DATA), target, pointer, dimension(:,:) :: trcdta_bdy 
     13}}} 
    1014 
    1115So the variable has target and pointer attribut.