bottomtimetable

Occurrence

compulsory, multiple

Attributes

id=unique identifier of this table — compulsory

Description

Inside the <bottomtimetable> section statements for the generation of a certain "maximum bottom time table" are put into brackets.

At least one <bottomtimetable> element must occur inside <calculatebottomtimetable>; any number of "maximum bottom time tables" can be calculated.

Parent Elements

<calculatebottomtimetable>

Child Elements

<applicationdata>, <bottomtimetablescope>, <link/> (for <table> data to be cross-referenced) <output>, <title>

See Also

<calculatebottomtimetable>, <calculatetable>, <tablegeneration>

Examples

<tablegeneration>
    <calculatetable>
        <!-- here can stand more statements for the table generation -->
        ...
        <table id="divetable_air_0m">
            <!-- here stand definitions for the generation of a dive -->
            <!-- table for sea level with air as breathing gas -->
        </table>
        <!-- here can stand more statements for the table generation -->
        ...
    </calculatetable>
    <calculatebottomtimetable>
        <!-- here can stand more statements for the MBT table generation -->
        ...
        <bottomtimetable id="max_bottime_table_air_0m">
            <!-- reference to the prior calculated dive table as a basis -->
            <!-- to calculate now the "maximum bottom time table" -->
            <link ref="divetable_air_0m"/>
            <!-- in the following information concerning the output file -->
            <output>
                <!-- output in English language -->
                <lingo>en</lingo>
                <!-- ASCII format (-> file extension ".txt") -->
                <fileformat>ascii</fileformat>
                <!-- name of output file (extension ".txt" must not be given!) -->
                <filename>kais_mbt_table</filename>
                <!-- headline for table -->
                <headline>Kai's Maximal Bottom Time Table for sea level</headline>
                <!-- explaining text, or some othe remarks -->
                <remark>
                    This is Kai's "Maximal Bottom Time Table" for scuba dives in the sea
                    with air as breathing gas to be used. If the diver has to obey some
                    decompression stops using the full bottom time, a "d" is put in front
                    of the numerical value. These necessary deco stops are considered in
                    the calculated bottom time given.
                </remark>
            </output>
            <applicationdata>
                <!-- here software specific statements -->
            </applicationdata>
            <bottomtimetablescope>
                <!-- beginning with a depth of 5 m, deepest depth 60 m, increment 5 m -->
                <divedepthbegin>5.0</divedepthbegin>
                <divedepthend>60.0</divedepthend>
                <divedepthstep>5.0</divedepthstep>
                <!-- calculate table for different breathing gas consumption values: -->
                <!-- beginning with 10 liters per minute, greatest BCV 30 l/min, increment 5 l/min -->
                <!-- UDDF uses only SI units => l/min -> m^3/s -->
                <breathingconsumptionvolumebegin>0.00016666667</breathingconsumptionvolumebegin>
                <breathingconsumptionvolumeend>0.0005</breathingconsumptionvolumeend>
                <breathingconsumptionvolumestep>0.000083333333</breathingconsumptionvolumestep>
                <!-- beginning with a tank volume of 10 litres, end with 20 l, increment 5 l -->
                <tankvolumebegin>0.01</tankvolumebegin>
                <tankvolumeend>0.02</tankvolumeend>
                <tankvolumestep>0.005</tankvolumestep>
                <!-- fill pressure 200 bar, reserve pressure 40 bar -->
                <tankpressurebegin>2.0e7</tankpressurebegin>
                <tankpressurereserve>4.0e6</tankpressurereserve>
            </bottomtimetablescope>
        </bottomtimetable>
        <!-- here can stand more statements for the MBT table generation -->
        ...
    </calculatebottomtimetable>
</tablegeneration>