Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update some links and clean up comments
Also, bring back appendix D math shortcut `fy ** 3 if l > KE else l / KAPPA` is functionally equivalent to `fy ** 3 if fy > EPSILON3 else (116 * fy - 16) / KAPPA`, it just saves us from doing redundant math and is what is recommended in appendix D and the example used by Bruce Lindbloom. I admit the second approach is less confusing, but the first is more efficient. We briefly considered the more intuitive approach over the efficient approach and have decided we will stick with efficient.
- Loading branch information