Finds the maximum and minimum number of stairs allowed.
Rise: inches Run: inches Stringer Length: feet Depth of step:
This finds you the parameters to build a staircase properly. To Use:
The maximum number of stairs (maxStairs) equals the total run length (Run) divided by the minimum step length (Run_min), then rounded down to the nearest integer
The minimum number of stairs (minStairs) equals the total rise height (Rise) divided by the maximum step height (Rise_max), then rounded up to the nearest integer:
Blondel compliance: twice the length of the individual rise plus the length of the individual run should be about 24 inches. We give a tolerance of 21.6 to 27.6 inches.