Copyright © 2018
ATA ENGINEERING, INC.
ALL RIGHTS RESERVED
function findCoeff input Real h "Horizontal distance between posts"; input Real s "Length"; input Real a_guess = 1.0 "Initial guess for catenary coefficient"; input Real max_rel_step_size = 0.01; input Real tol = 0.0001; input Integer max_number_steps = 1000; output Real a "Catenary coefficient"; end findCoeff;