
Deco - Module for simulating body tissue during a scuba dive

use Deco::Dive my $dive = Deco::Dive->new( model => 'haldane' ); $dive->load_data_from_file( file => 'profile.txt' ); $dive->gas( 'O2' => 40, 'N2' => 60); $dive->simulate();

The Deco package itself does not do anything useful, it only serves as the root of the other packages. You will want to look into the Deco::Dive module as that is the one to be using directly in your own scripts.
None by default.

An extensive treatment of the Haldane decompression theory is prodived in the Deco.pdf document which can be found in the docs directory.

Jaap Voets, <narked@xperience-automatisering.nl>

Copyright (C) 2006 by Jaap Voets
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.7 or, at your option, any later version of Perl 5 you may have available.