Non-integer numbers are declared with the Float element. Note that Float elements can also read an integer, but Integer elements cannot read a floating point number.
Snippet from the Input Deck
17.4 80 72.5
Snippet from the FSML File
<FileData>
<Float name="dist" description="crossing distance" units="miles"/>
<Float name="avgtime" description="average crossing time" units="minutes"/>
<Float name="mintime" description="fastest crossing time" units="minutes"/>
</FileData>
<FileStructure>
<Record ignoreOnRead="false"/>
<SetValue target="dist"/>
</Record>
<Record ignoreOnRead="false"/>
<SetValue target="avgtime"/>
</Record>
<Record ignoreOnRead="false"/>
<SetValue target="mintime"/>
</Record>
</FileStructure>