% Matrices for control burn computation % % Growth, Replacement, Death and Forest Composition Matrices % Information for Pine Tree Populatation % Pine Tree Height Classes % % 1 = seedlings (0.0 - 1.0 feet) % 2 = saplings (1.0 - 3.0 feet) % 3 = 3.0 feet - 2 in dbh % 4 = 2 in dbh - 1.5 ft dbh % 5 = 1.5 ft dbh - 4.0 ft dbh % pine = [ 100 80 60 45 25 ]; Gpine = [ 0.75 0.20 0.10 0.10 0.60 0.70 0.20 0.10 0.50 0.60 0.30 0.20 0.50 0.50 0.30 0.20 ]; Rpine = [ 0.00 0.00 0.90 0.45 0.20 0.00 0.00 0.80 0.40 0.15 0.00 0.00 0.70 0.35 0.10 0.00 0.00 0.60 0.30 0.10 0.00 0.00 0.50 0.25 0.10 0.00 0.00 0.40 0.20 0.10 0.00 0.00 0.35 0.20 0.10 ]; Dpine = [ 1.00 1.00 0.30 0.20 0.10 0.05 0.10 0.10 0.10 0.05 0.10 0.20 0.10 0.10 0.05 0.20 0.30 0.10 0.10 0.05 0.30 0.35 0.10 0.10 0.05 0.40 0.40 0.10 0.10 0.05 0.50 0.45 0.10 0.10 0.05 0.60 0.45 0.10 0.10 0.05 ]; % Information for Hard Wood Tree Population % Hardwood Height Classes % % 0 = invisible/potential class (includes acorns and potential spouts) % 1 = sprouts (0.0 - 1.5 feet) % 2 = sapling (1.6 - 3.5 feet) % 3 = 3.6 feet tall - 0.5 in dbh % 4 = 0.6 in dbh - 1.5 in dbh % 5 = 1.5 in dbh - 10.0 in dbh % 6 = greater than 10.0 in dbh (has ability to reproduce ... produces acorns) % hard = [ 60 40 30 20 20 30 25 ]; Ghard = [ 0.75 0.50 0.40 0.45 0.25 0.05 ]; Rhard = [ 0.00 0.22 0.30 0.27 0.05 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 5.00 ]; Dhard = [ 1.00 1.00 1.00 0.30 0.05 0.00 0.00 0.50 0.60 0.45 0.35 0.25 0.15 0.05 ];