--- 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.13 file format: Difference between revisions

From ADCIRCWiki
Jump to navigation Jump to search
(Created page with "AGRID NumOfNodes NAttr for i = 1 to NAttr : AttrName(i) : Units(i) : ValuesPerNode(i) : DefaultAttrVal(i,k), k = 1, ValuesPerNode(i) end...")
 
m (Added text about blank lines and loops)
Line 1: Line 1:
The basic file structure is shown below. Each line of input data is represented by a line containing the input variable name(s) in bold face type. Blank lines are only to enhance readability. Loops indicate multiple lines of input.
[[AGRID]]
[[AGRID]]



Revision as of 11:14, 5 December 2018

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

AGRID

NumOfNodes

NAttr

for i = 1 to NAttr

AttrName(i)
Units(i)
ValuesPerNode(i)
DefaultAttrVal(i,k), k = 1, ValuesPerNode(i)

end i loop

for i = 1 to NAttr

AttrName(i)
NumNodesNotDefaultVal(i)
for j = 1 to NumNodesNotDefaultVal(i)
n, (AttrVal(n,k), k = 1, ValuesPerNode(i))
end j loop

end i loop