table

Occurrence

compulsory, multiple

Attributes

id=unique identifier for this table

Description

Inside the <table> section parameters for the generation of a certain decompression table are put into brackets.

<table> is the only element inside <calculatetable>. It can be repeated any times. At least one <table> element must occur inside <calculatetable>.

Parent Elements

<calculatetable>

Child Elements

<applicationdata>, <decomodel>, <deepstoptime>, <density>, <inputprofile>, <link/> (for cross-referencing a <dive>, or a <mix>, or a <repetitiongroup>), <maximumascendingrate>, <mixchange>, <output>, <surfaceintervalafterdive>, <surfaceintervalbeforedive>, <tablescope>, <title>

See Also

<calculatebottomtimetable>, <calculateprofile>, <calculatetable>

Examples

(see also <calculatebottomtimetable>, <calculateprofile>, and <calculatetable>)

<tablegeneration>
    <calculatetable>
        <!-- here more statements for the generation of decompression tables can appear -->
        ...
        <table id="decotable_air_0m">
            <!-- cross reference to a previous dive ("dive345"); on basis of the tissue -->
            <!-- saturation due to this previous dive now the table is to be generated -->
            <link ref="dive345"/>
            <!-- cross reference to the breathing gas to be used -->
            <link ref="air"/>
            <surfaceintervalbeforedive>
                <!-- a pause of 4 h between dives -->
                <passedtime>14400.0</passedtime>
            </surfaceintervalbeforedive>
            <!-- salt water -->
            <density>1030.0</density>
            <!-- in the following statements for output into a file -->
            <output>
                <!-- output language is English -->
                <lingo>en</lingo>
                <!-- PDF format (-> file extension ".pdf") -->
                <fileformat>pdf</fileformat>
                <!-- name of output file (extension ".pdf" must not be given!) -->
                <filename>table_air_0m</filename>
                <!-- headline for table -->
                <headline>Table for Sealevel - Air</headline>
                <!-- some illustrative text or other remarks -->
                <remark>
                    This is a special table for our proposed descent to the Donator wreck.
                </remark>
            </output>
            <applicationdata>
                <!-- here software specific data -->
            </applicationdata>
            <decomodel>zh-l16</decomodel>
            <!-- take into account deep stops of 1 minute length -->
            <deepstoptime>60.0</deepstoptime>
            <!-- maximum ascending rate 10 m/min -->
            <maximumascendingrate>0.1666666667</maximumascendingrate>
            <tablescope>
                <!-- height above sea level for which the table is to be calculated -->
                <altitude>0.0</altitude>
                <!-- beginning with a depth of 3 m, maximum depth 60 m, increment 3 m  -->
                <divedepthbegin>3.0</divedepthbegin>
                <divedepthend>60.0</divedepthend>
                <divedepthstep>3.0</divedepthstep>
                <!-- maximum bottom time 100 minutes, to be taken into account for the table -->
                <bottomtimemaximum>6000.0</bottomtimemaximum>
                <!-- minimum bottom time 15 minutes, to be taken into account for the table -->
                <bottomtimeminimum>900.0</bottomtimeminimum>
                <!-- at beginning (at minimum dive depth) increment of 25 minutes -->
                <bottomtimestepbegin>1500.0</bottomtimestepbegin>
                <!-- at the end (at maximum dive depth) increment of 1 minute -->
                <!-- Schrittweite auf der maximalen Tauchtiefe 1 Minute -->
                <bottomtimestepend>60.0</bottomtimestepend>
            </tablescope>
        </table>
        <!-- here more statements for the generation of decompression tables can appear -->
        ...
    </calculatetable>
    <!-- here could stand more statements for the generation of one or more -->
    <!-- "maximum bottom time" tables -->
</tablegeneration>