NAME

Physics::CVD - Chemical Vapor Deposition simulation framework in Perl

SYNOPSIS

use Physics::CVD;

my $cvd = Physics::CVD->new(
    temperature => 700,    # K
    pressure    => 66.5,   # Pa (500 mTorr)
);

my $chem = $cvd->chemistry;
$chem->add_gas_reaction(...);

my $kmc = $cvd->kmc(lattice_size => [50, 50, 30]);
$kmc->add_species(name => 'Si', ...);
$kmc->deposit(time => 60);