--- Welcome to the official ADCIRCWiki site! The site is currently under construction, with limited information. ---

For general information, see the ADCIRC site, ADCIRC FAQ, or the ADCIRC Wikipedia page. For model documentation not yet available on the wiki, see the ADCIRC site. New content is being continuously added to the ADCIRCWiki, and material from the main ADCIRC site will be gradually transitioned over to the wiki.

Fort.11 file: Difference between revisions

From ADCIRCWiki
Jump to navigation Jump to search
(Move file format to this page, initial format edits to create page sections)
(Corrections to heading levels)
 
Line 1: Line 1:
The fort.11 file is only used for a baroclinic run. Baroclinic 2DDI runs are not yet supported. Baroclinic 3D runs occur if [[IDEN]] is not equal to 0.
The fort.11 file is only used for a baroclinic run. Baroclinic 2DDI runs are not yet supported. Baroclinic 3D runs occur if [[IDEN]] is not equal to 0.


= File Format =
== File Format ==
The basic file structure is shown below. Each line of input data is represented by a line containing the input variable name(s). Blank lines are only to enhance readability. Loops indicate multiple lines of input.  
The basic file structure is shown below. Each line of input data is represented by a line containing the input variable name(s). Blank lines are only to enhance readability. Loops indicate multiple lines of input.  


=File structure for a baroclinic 2DDI run=
===File structure for a baroclinic 2DDI run===


==IDEN = 1 or -1==
====IDEN = 1 or -1====
:Header Line 1
:Header Line 1
:Header Line 2
:Header Line 2
Line 15: Line 15:




==IDEN = 2 or -2==
====IDEN = 2 or -2====
:Header Line 1
:Header Line 1
:Header Line 2
:Header Line 2
Line 23: Line 23:
:end k loop
:end k loop


==IDEN = 3 or -3==
====IDEN = 3 or -3====
:Header Line 1
:Header Line 1
:Header Line 2
:Header Line 2
Line 31: Line 31:
:end k loop
:end k loop


==IDEN = 4 or -4==
====IDEN = 4 or -4====
:Header Line 1
:Header Line 1
:Header Line 2
:Header Line 2
Line 39: Line 39:
:end k loop
:end k loop


=File structure for a baroclinic 3D run=
===File structure for a baroclinic 3D run===


==IDEN = 1 or -1==
====IDEN = 1 or -1====
:Header Line 1
:Header Line 1
:Header Line 2
:Header Line 2
Line 51: Line 51:
:end k loop
:end k loop


==IDEN = 2 or -2==
====IDEN = 2 or -2====
:Header Line 1
:Header Line 1
:Header Line 2
:Header Line 2
Line 61: Line 61:
:end k loop
:end k loop


==IDEN = 3 or -3==
====IDEN = 3 or -3====
:Header Line 1
:Header Line 1
:Header Line 2
:Header Line 2
Line 71: Line 71:
:end k loop
:end k loop


==IDEN = 4 or -4==
====IDEN = 4 or -4====
:Header Line 1
:Header Line 1
:Header Line 2
:Header Line 2

Latest revision as of 08:58, 30 June 2022

The fort.11 file is only used for a baroclinic run. Baroclinic 2DDI runs are not yet supported. Baroclinic 3D runs occur if IDEN is not equal to 0.

File Format

The basic file structure is shown below. Each line of input data is represented by a line containing the input variable name(s). Blank lines are only to enhance readability. Loops indicate multiple lines of input.

File structure for a baroclinic 2DDI run

IDEN = 1 or -1

Header Line 1
Header Line 2
NVP
for k=1 to NVP
jki,DASIGT(jki)
end k loop


IDEN = 2 or -2

Header Line 1
Header Line 2
NVP
for k=1 to NVP
'jki,DASALT(jki)
end k loop

IDEN = 3 or -3

Header Line 1
Header Line 2
NVP
for k=1 to NVP
jki,DATEMP(jki)
end k loop

IDEN = 4 or -4

Header Line 1
Header Line 2
NVP
for k=1 to NVP
jki, DATEMP(jki), DASALT(jki)
end k loop

File structure for a baroclinic 3D run

IDEN = 1 or -1

Header Line 1
Header Line 2
NVN, NVP
for k=1 to NVP
for j=1 to NVN
k, j, SIGT(NHNN,NVNN)
end j loop
end k loop

IDEN = 2 or -2

Header Line 1
Header Line 2
NVN, NVP
for k=1 to NVP
for j=1 to NVN
k, j, SAL(k,j)
end j loop
end k loop

IDEN = 3 or -3

Header Line 1
Header Line 2
NVN, NVP
for k=1 to NVP
for j=1 to NVN
k, j, TEMP(k,j)
end j loop
end k loop

IDEN = 4 or -4

Header Line 1
Header Line 2
NVN, NVP
for k=1 to NVP
for j=1 to NVN
k, j, TEMP(k,j),SAL(k,j)
end j loop
end k loop

Note: j=1 at bottom, j=NVN at surface