Breathing gases used

<uddf version="2.2.0">
    <!-- the <generator> section has to appear in every UDDF file -->
    <generator>
        <!-- description of the program generating the UDDF file -->
        <name>DSL - Diver's Super Logbook</name>
        <manufacturer>
            <name>Dive Heroes Company</name>
            <address>
                <!-- address data of manufacturer -->
            </address>
            <contact>
                <!-- contact data of manufacturer -->
            </contact>
        </manufacturer>
        <version>3.14159</version>
        <date>
            <year>2004</year><month>9</month><day>30</day>
        </date>
    </generator>
    <diver>
        <owner>
            <!-- description of the owner of the UDDF file -->
            <personal>
                <!-- personal data (name etc.) -->
            </personal>
            <address>
                <!-- address data ... -->
            </address>
            <!-- here more data of the owner -->
            <equipment>
                <!-- listing of the owner's equipment -->
                ...
                <tank id="tank_1">
                    <name>favourite tank</name>
                    <manufacturer>
                        <name>Super tank manufacturer</name>
                        <address>
                            <!-- address data of manufacturer -->
                        </address>
                        <contact>
                            <!-- contact data of manufacturer -->
                        </contact>
                    </manufacturer>
                    <model>As hard as steel</model>
                    <serialnumber>12345</serialnumber>
                    <purchase>
                        <date>
                            <!-- date of purchase of tank -->
                        </date>
                        <price currency="DM">250.00</price>
                        <shop>
                            <!-- information concerning the shop, where the tank was bought -->
                        </shop>
                    </purchase>
                    <nextservicedate>
                        <!-- date of next proof by safety standards authority -->
                    </nextservicedate>
                    <tankmaterial>steel</tankmaterial>   <!-- steel tank -->
                    <notes>
                        <image>
                            <objectname>steeltank_new.jpg</objectname>
                            <imagedata>
                                <!-- date when photo was taken -->
                                <date>
                                    <year>2001</year><month>5</month><day>2</day>
                                </date>
                            </imagedata>
                        </image>
                        <image>
                            <objectname>steeltank_2_years_later.jpg</objectname>
                            <imagedata>
                                <!-- date when photo was taken -->
                                <date>
                                    <year>2003</year><month>7</month><day>6</day>
                                </date>
                            </imagedata>
                        </image>
                    </notes>
                </tank>
                <!-- here more tank descriptions can be inserted -->
            </equipment>
        </owner>
    </diver>
    <gasdefinitions>
        <!-- all breathing gases used -->
        <mix id="oxygen_pure">
            <name>pure oxygen</name>
            <o2>1.000</o2>
            <n2>0.000</n2>
            <he>0.000</he>
            <ar>0.000</ar>
            <h2>0.000</h2>
        </mix>
        <mix id="air">
            <name>air</name>
            <o2>0.210</o2>
            <n2>0.790</n2>
            <he>0.000</he>
            <ar>0.000</ar>
            <h2>0.000</h2>
        </mix>
        <mix id="nitrox6040">
            <name>Nitrox60/40</name>  <!-- Nitrox 60 % N2, 40 % O2 -->
            <o2>0.400</o2>
            <n2>0.600</n2>
            <he>0.000</he>
            <ar>0.000</ar>
            <h2>0.000</h2>
        </mix>
        <mix id="trimix">
            <name>Trimix</name>  <!-- Trimix 15 % O2, 40 % N2, 45 % He -->
            <o2>0.150</o2>
            <n2>0.400</n2>
            <he>0.450</he>
            <ar>0.000</ar>
            <h2>0.000</h2>
        </mix>
        <!-- here more <mix> elements can be given -->
        <tankdata id="air_1">
            <!-- air filled 15 litre tank, fill pressure at beginning 200 bar, breathing consumption volume 12 litres/min -->
            <mixref ref="air"/>
            <tankref ref="tank_1"/>
            <tankvolume>0.015</tankvolume>
            <tankpressurebegin>20000000.0</tankpressurebegin>
            <breathingconsumptionvolume>0.0002</breathingconsumptionvolume>
        </tankdata>
        <tankdata id="air_2">
            <!-- another tank filled with air... -->
            <mixref ref="air"/>
            <tankvolume>0.01</tankvolume>
            <tankpressurebegin>20000000.0</tankpressurebegin>
            <breathingconsumptionvolume>0.0003333333333</breathingconsumptionvolume>          <!-- [m^3/s] ^= 20 litres/min -->
        </tankdata>
        <tankdata id="nitrox_tank">
            <mixref ref="nitrox6040"/>
            <tankvolume>0.01</tankvolume>
            <tankpressurebegin>220000000.0</tankpressurebegin>
            <breathingconsumptionvolume>0.00025</breathingconsumptionvolume>                  <!-- [m^3/s] ^= 15 litres/min -->
        </tankdata>
        <tankdata id="o2_tank">
            <mixref ref="oxygen_pure"/>
            <tankvolume>0.008</tankvolume>
            <tankpressurebegin>20000000.0</tankpressurebegin>
            <breathingconsumptionvolume>0.0002</breathingconsumptionvolume>                   <!-- [m^3/s] ^= 12 litres/min -->
        </tankdata>
        <!-- here more <tankdata> elements can be inserted -->
    </gasdefinitions>
</uddf>