Changes between Initial version and Version 4 of Ticket #226


Ignore:
Timestamp:
2011-09-01T13:46:03Z (13 years ago)
Author:
Ian Culverwell
Comment:

It turns out that a change from

TGI(:) = INT(time(:)/GPSFL)

to

TGI(:) = FLOOR(time(:)/GPSFL)

(ie using Kjartan's suggestion) was implemented in ROPP5.0. Apologies for not documenting this. Closing ticket.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #226

    • Property Milestone5.1
    • Property Owner set to Ian Culverwell
    • Property Status newclosed
    • Property Resolutionfixed
  • Ticket #226 – Description

    initial v4  
    33TGI(:) = INT(time(:)/GPSFL)
    44
    5 The time variable is negative for the first few (about 30) time steps and then becomes positive. The above line does not handle the change fronm negative to positive correctly. As an example. If time/GPSFL goes:
     5The time variable is negative for the first few (about 30) time steps and then becomes positive. The above line does not handle the change from negative to positive correctly. As an example. If time/GPSFL goes:
    66
    77....  -2.5, -1.5, -0.5, 0.5, 1.5, 2.5 ....