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/0650 (diff) – NEMO

Changes between Version 1 and Version 2 of ticket/0650


Ignore:
Timestamp:
2010-09-27T14:15:52+02:00 (14 years ago)
Author:
cbricaud
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ticket/0650

    v1 v2  
    1313=== Description === 
    1414 
    15  On-the-fly interpolation for 3D files. 
     15On-the-fly interpolation for 3D files. 
    1616It will replace time-interpolation for intial state in dtatem and dtasal. 
    17  
    18 In fldread, fnow has now a third dimension ( vertical ) and fdta a forth dimension ( vertical too) 
    19  
    20  
     17In fldread, fnow has now a third dimension ( vertical ) and fdta a forth dimension ( vertical too). 
     18In consequence, all routines using fldread will be modified, when fdta and fnow are allocated ; we decided to not allocate fdta when time-interpolation is not used. 
    2119---- 
    2220=== Testing === 
    2321Testing could consider (where appropriate) other configurations in addition to NVTK]. 
    2422 
    25 ||NVTK Tested||!'''YES/NO!'''|| 
    26 ||Other model configurations||!'''YES/NO!'''|| 
    27 ||Processor configurations tested||[ Enter processor configs tested here ]|| 
    28 ||If adding new functionality please confirm that the [[BR]]New code doesn't change results when it is switched off [[BR]]and !''works!'' when switched on||!'''YES/NO/NA!'''|| 
     23||NVTK Tested||!'''YES!'''|| 
     24||Other model configurations||!'''YES!'''|| 
     25||Processor configurations tested||[ 2*1 , 1*2 , 2*2 ]|| 
     26||If adding new functionality please confirm that the [[BR]]New code doesn't change results when it is switched off [[BR]]and !''works!'' when switched on||!'''NO!'''|| 
    2927 
    30 (Answering UNSURE is likely to generate further questions from reviewers.) 
     28In dtatem and dtasal, time-interpolation formula is  :  
     29     zxy = FLOAT( nday + 15 - 30 * i15 ) / 30. 
     30      t_dta(:,:,:) = (1.-zxy) * temdta(:,:,:,1) + zxy * temdta(:,:,:,2) 
     31Here, lenght of month is hard-coded: 30 days. 
    3132 
    32 'Please add further summary details here' 
     33Now, with fldread, computing is exact. 
    3334 
    34  * Processor configurations tested 
    35  * etc---- 
    3635 
    3736=== Bit Comparability ===