Fort.41: 3D Density, Temperature and/or Salinity at Recording Stations

This file contains density, temperature and salinity time series output at recording stations as specified in the Model Parameter and Periodic Boundary Condition File. The file structure varies based on the value of IDEN.

File Structure

The file is written in ASCII format. The basic structure varies depending on the value of IDEN:

For IDEN = ±1 (Density Only)

RUNDES, RUNID, AGRID

NDSET3DSD, NSTA3DD, DTDP * NSPO3DSD, NSPO3DSD, NFEN, IRTYPE

for k=1, NDSET3DSD
    TIME, IT, (SIGMA(N), N=1, NFEN-1)

    for j=1, NSTA3DD
        j, (SIGTSTA(M), M=1, NFEN)
    end j loop
end k loop

For IDEN = ±2 (Density and Salinity)

RUNDES, RUNID, AGRID

NDSET3DSD, NSTA3DD, DTDP * NSPO3DSD, NSPO3DSD, NFEN, IRTYPE

for k=1, NDSET3DSD
    TIME, IT, (SIGMA(N), SIGMA(N), N=1, NFEN-1), SIGMA(NFEN)

    for j=1, NSTA3DD
        j, (SIGTSTA(M), SALSTA(M), M=1, NFEN)
    end j loop
end k loop

For IDEN = ±3 (Density and Temperature)

RUNDES, RUNID, AGRID

NDSET3DSD, NSTA3DD, DTDP * NSPO3DSD, NSPO3DSD, NFEN, IRTYPE

for k=1, NDSET3DSD
    TIME, IT, (SIGMA(N), SIGMA(N), N=1, NFEN-1), SIGMA(NFEN)

    for j=1, NSTA3DD
        j, (SIGTSTA(M), TEMPSTA(M), M=1, NFEN)
    end j loop
end k loop

For IDEN = ±4 (Density, Temperature, and Salinity)

RUNDES, RUNID, AGRID

NDSET3DSD, NSTA3DD, DTDP * NSPO3DSD, NSPO3DSD, NFEN, IRTYPE

for k=1, NDSET3DSD
    TIME, IT, (SIGMA(N), SIGMA(N), SIGMA(N), N=1, NFEN-1), SIGMA(NFEN), SIGMA(NFEN)

    for j=1, NSTA3DD
        j, (SIGTSTA(M), TEMPSTA(M), SALSTA(M), M=1, NFEN)
    end j loop
end k loop

Notes

  • Output is only available in ASCII format

  • Time series data is recorded at specified recording stations

  • The file structure varies based on the IDEN parameter:
    • IDEN = ±1: Density only

    • IDEN = ±2: Density and salinity

    • IDEN = ±3: Density and temperature

    • IDEN = ±4: Density, temperature, and salinity

  • Data is recorded at multiple vertical levels defined by SIGMA values

  • SIGTSTA represents density values

  • TEMPSTA represents temperature values

  • SALSTA represents salinity values