| File | Date | Author | Commit |
|---|---|---|---|
| nelderplot | 2018-12-11 |
|
[ad2493] Add files via upload |
| LICENSE | 2018-12-11 |
|
[feda1a] Initial commit |
| MANIFEST.in | 2018-12-11 |
|
[ad2493] Add files via upload |
| README.md | 2018-12-11 |
|
[ad2493] Add files via upload |
| setup.py | 2018-12-11 |
|
[ad2493] Add files via upload |
Nelder plot (Nelder 1962) is an experimental design for testing a multiple tree
spacings in a single plot. The shape of plot is circular with some number of concentric wheels or arcs radiating outward and the spokes connecting the center. The intersections of spokes and arcs are the tree positions. The tree position on different wheels represent a different the tree spacing distance or tree density. This design eliminates the need for separate experimental plots for each tree density. The difficulties with Nelder plot design is their uncommon layout and complex parameterization (Parrott et al. 2012). A computer-aided tool for designing the Nelder plot can be very useful for the practical implementation of this experimental design.
Plot design type A1 require a parameter to define the initial radius (r_0) and a constant increment value (α). The wheels radius is then calculated with formula:
r_n = r_0 α^n
The individual growing space is calculated based on formula:
A_n=r_n^2 θ(α-α^(-1))/2
where θ is degrees between the wheel spokes (Nelder 1962).
The parameterization with practical application use the formula proposed by Parrot et al. (2012) to convert the variable into standard Nelder plot parameters. The calculation is as follow:
α = exp((log(d_1) - log(d_2))/(2 * n - 2))
where α is constant increment, d_1 is minimum planting density, d_1 is maximum planting density, and n is number of density range.
θ = t * (α^0.5 - 1/α^0.5)
where θ is division angle of spokes and t is rectangularity.
r_0 = (20000/(d_1 θ (α**3 - α)))^0.5
where r_0 is initial wheel radius.