(12C Platinum) Parabola - arc length
|
06-29-2019, 10:22 AM
(This post was last modified: 07-02-2019 12:30 AM by Gamo.)
Post: #1
|
|||
|
|||
(12C Platinum) Parabola - arc length
The Arc Length of a Parabola calculator compute the arc length (S)
of a parabola based on the distance height (H) and the width (L) of the parabola at that point perpendicular to the axis. ---------------------------------------------------------------- The formula for determining the length of an arc of a Parabola. ---------------------------------------------------------------- Instruction: FIX 4 1. H [R/S] display Height 2. L [R/S] display Answer of the Arc Length of a Parabola ---------------------------------------------------------------- Example: H is 20 feet and L is 90 feet, what is the length of S? 20 [R/S] display 20.000 90 [R/S] display 100.7376 Answer: 100.7376 feet To check answer for difference problem or check if this program give correct answer. URL: https://www.vcalc.com/wiki/vCalc/Parabola+-+arc+length --------------------------------------------------------------- Program: ALG mode Code:
Gamo |
|||
06-30-2019, 08:33 AM
Post: #2
|
|||
|
|||
RE: (12C Platinum) Parabola - arc length
Hello,
Here is a rpl solution for the HP11C : Code:
Instructions : H [enter] L [A] Regards Dominique |
|||
06-30-2019, 11:35 AM
(This post was last modified: 06-30-2019 11:38 AM by Gamo.)
Post: #3
|
|||
|
|||
RE: (12C Platinum) Parabola - arc length
Parabola -arc Length program in RPN mode using this formula:
--------------------------------- Instruction: H [ENTER] L [R/S] display Answer of Parabola arc length H is the Height L is the distance from both end -------------------------------- Example: FIX 4 H is 20 feet and L is 90 feet, what is the length of S? 20 [ENTER] 90 [R/S] display 100.7376 Answer: 100.7376 feet -------------------------------- Program: RPN mode (For HP-12C replace [X^2] to [ENTER] [x] Code:
Gamo |
|||
07-01-2019, 09:12 AM
Post: #4
|
|||
|
|||
RE: (12C Platinum) Parabola - arc length
Thanks Dominique
Here is another version without using any STO registers and only use the stacks. This can be adapted to HP-11C as well. Procedure is the same: H [ENTER] L [R/S] display Parabola Arc Length Program for HP-12C Platinum on RPN mode Code:
Gamo |
|||
07-02-2019, 09:18 AM
Post: #5
|
|||
|
|||
RE: (12C Platinum) Parabola - arc length
(06-29-2019 10:22 AM)Gamo Wrote: The Arc Length of a Parabola calculator compute the arc length (S) The formula given in your image can be optimised, unless LN is a natural log. It includes two instances of LN: LN4 and LN(). Where N = H/L Thus LN 4 can be optimised to LH/L = H, and similarly for LN() if that is an implied multiply and not a natural logarithm. Stephen Lewkowicz (G1CMZ) https://my.numworks.com/python/steveg1cmz |
|||
07-03-2019, 07:35 AM
Post: #6
|
|||
|
|||
RE: (12C Platinum) Parabola - arc length
Hello,
This the trap ! In the formula, LN is the neperian logarithm, and not LxN ! However, you can optimize the computation : the steps sequence "ln 4 ln +" can be replace with "4 * ln". Dominique |
|||
07-03-2019, 08:14 AM
Post: #7
|
|||
|
|||
RE: (12C Platinum) Parabola - arc length
Hello, thanks to StephenG1CMZ and Dominique
Yes Post#1 Formula look very tricky and thanks for the head up on that formula. On Post#3 that formula is a good one to use. Thanks Gamo |
|||
07-03-2019, 10:07 PM
Post: #8
|
|||
|
|||
RE: (12C Platinum) Parabola - arc length
One more parameter can be calculated with the same data, the Surface:
A= 2/3 * H * L For H= 20 and L= 90, A= 1200.00 You only need to store H in R3 and actívate LBL B with the following sequence: LBL B 2 ENTER 3 / RCL 0 RCL 3 x x RTN Pedro |
|||
07-11-2019, 04:19 PM
(This post was last modified: 07-11-2019 04:37 PM by Albert Chan.)
Post: #9
|
|||
|
|||
RE: (12C Platinum) Parabola - arc length
For HP-11C, code can be shortened using identity: asinh(x) = ln(x + √(x^2+1))
parabola arc length = (asinh(x)/x + √(x^2+1)) * L/2, where x=4H/L Doing everything on the stacks, we have: Code: 01 LBL A ; Instructions : H [enter] L [A] |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)