Changes between Version 3 and Version 4 of EfficiencyConsiderations


Ignore:
Timestamp:
Sep 28, 2005, 9:59:52 AM (19 years ago)
Author:
ole
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • EfficiencyConsiderations

    v3 v4  
    1515
    1616
     17
    1718NetCDF can't deal with files > 2GB except on cyclone.
    1819It is possible to write netCDF files that exceed 2 GB on platforms that have "Large File Support" (LFS). Such files are platform-independent to other LFS platforms, but trying to open them on an older platform without LFS yields a "file too large" error.
     20On cyclone I observed the error
     21Time = 20820.0000, delta t in [0.33171153, 0.99331961], steps=39 (39)
     22Boundary values at time 20820.0000:
     23    ocean:
     24        stage     in [  3.27420163,   4.33042819]
     25        xmomentum in [ -5.17578730,  11.91953890]
     26        ymomentum in [-11.23672557,   1.99050845]
     27
     28python: posixio.c:210: px_pgin: Assertion `*posp == ((off_t)(-1)) || *posp == lseek(nciop->fd, 0, 1)' failed.
     29Aborted
     30
     31
     32after the NetCDF File reached 1GB
     33
     34-----