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

Changes between Version 23 and Version 24 of ticket/1851/General


Ignore:
Timestamp:
2017-02-24T15:37:31+01:00 (7 years ago)
Author:
frrh
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ticket/1851/General

    v23 v24  
    198198So what does this all mean? 
    199199 
    200 Well isecfst is only set on TS=1. So it never changes and it's value is always the number of seconds of the timestep of TS=1 relative to some reference date. 
    201  
    202 So llnew is true if iseclast - isecfst >  10800 
    203  
    204 I think that statement should use >= for starters. 
     200 
     201 
     202Well llnew is true if iseclast - isecfst >  10800 
     203 
     204I think that statement should use >= for starters because by that logic if iseclast is 1010800 and isecfst 1000000 then we're at a whole coupling frequency since the previous TRUE condition and should be doing a new calculation - but we don't because (1010800-1000000) = 10800 which is not greater than 10800, it's equal to it! 
    205205 
    206206Try that, but not worth pursuing further since it seems that the things calculated here are for diagnostic purposes only.