Re: [RESOLVED] Curve Fitting
Quote:
Originally Posted by sgrya1
y=-0.0001*(8000)²+1.4545*8000-5568=-332 when it should equal 250. Where have I gone wrong?
Hi, the culprit is rounding, particularly for a. Rounding -0.0000909090909090909 to -.0001 introduces substantial error. For b, 5 significant digits were retained. For c, 4 significant digits were retained. If 5 significant digits are retained for a (i.e. -9.0909E-5), the answer is 249.8, which is a lot closer to the exact value.
P.S. One additional comment. Be careful about relating radius of curvature to y". The expression for radius of curvature is R = [(1 + y'^2)^1.5]/y". If y' is small, then 1/y" approximates the radius of curvature. In your case, y' = 0, so it works. For more info see:
http://mathworld.wolfram.com/RadiusofCurvature.html
Re: [RESOLVED] Curve Fitting
Hi VBAHack.
Thanks for that! I hadn't actually worked it out.
I was trying to cross check an excel sheet by hand and just couldn't understand what the problem was. The rounding makes perfect sense now that I look at the large number (8000²) and small fraction (0.0001) that were being multipled. I corrected something else in the spreadsheet which made me think that I had solved it.
I'll have to look into the curvature thing. At the moment everything looks fine with the approximation. That being because tendons are typically in thin slabs having long spans. I will need to adjust it though as I don't know how accurate it will be for the tendon profile in a deep beam for instance where the gradients are a lot larger.
Catch 22 with that though. I need the radii to determine the equations. And I need the equations to determine the radii. Might need to give that one some thought.
Re: [RESOLVED] Curve Fitting
Quote:
Originally Posted by sgrya1
I'll have to look into the curvature thing. At the moment everything looks fine with the approximation. That being because tendons are typically in thin slabs having long spans. I will need to adjust it though as I don't know how accurate it will be for the tendon profile in a deep beam for instance where the gradients are a lot larger.
Catch 22 with that though. I need the radii to determine the equations. And I need the equations to determine the radii. Might need to give that one some thought.
Actually, calculating y" is a straightforward if you know or can estimate the gradient and radius of curvature.