I have scoured this board for an answer. I wish to calculate the angle of the tangent of any point along an elipse. Creating the elipse was easy thanks to your assistance. I found a post with a formula to plot the X,Y coordinates of each point of an elipse using this formula and creating polar coordinates and 170 points on the elipse:
[TABLE="width: 821"]
<colgroup><col span="2"><col><col><col></colgroup><tbody>[TR]
[TD="align: right"]1[/TD]
[TD][/TD]
[TD]H=5
[/TD]
[TD="align: right"][/TD]
[TD]Input C1 for half-height on the Y-Axis(vert)
[/TD]
[/TR]
[TR]
[TD="align: right"]2[/TD]
[TD][/TD]
[TD]W=15
[/TD]
[TD="align: right"][/TD]
[TD]Input C2 for half-width on the X-Axis (horiz) [/TD]
[/TR]
[TR]
[TD="align: right"]3[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]This line is blank intrentionally[/TD]
[/TR]
[TR]
[TD="align: right"]4[/TD]
[TD] A
[/TD]
[TD] X
[/TD]
[TD] Y
[/TD]
[TD]Notes on the formula[/TD]
[/TR]
[TR]
[TD="align: right"]5[/TD]
[TD="align: right"]0[/TD]
[TD="align: right"]15.000[/TD]
[TD="align: right"]0.000
[/TD]
[TD] // B5 and down: =(ROWS(B$5:B5) - 2)/(ROWS(B$5:B$175) - 1) * 360
[/TD]
[/TR]
[TR]
[TD="align: right"]6[/TD]
[TD="align: right"]2.117
[/TD]
[TD="align: right"]14.990[/TD]
[TD="align: right"]0.184
[/TD]
[TD] // C5 and down: =D$2*COS(RADIANS($B5))
[/TD]
[/TR]
[TR]
[TD="align: right"]7[/TD]
[TD="align: right"]4.235
[/TD]
[TD="align: right"]14.959[/TD]
[TD="align: right"] 0.369
[/TD]
[TD] // D5 and down: =D$1*SIN(RADIANS($B5))
[/TD]
[/TR]
</tbody>[/TABLE]
In this formula, the angle A is calculated from the center of the elipse. I need it to be a tangent to the elipse and thought I could do it using the TAN function but I am missing something. Any comments would be appreciated greatly.
Thank you for your time
[TABLE="width: 821"]
<colgroup><col span="2"><col><col><col></colgroup><tbody>[TR]
[TD="align: right"]1[/TD]
[TD][/TD]
[TD]H=5
[/TD]
[TD="align: right"][/TD]
[TD]Input C1 for half-height on the Y-Axis(vert)
[/TD]
[/TR]
[TR]
[TD="align: right"]2[/TD]
[TD][/TD]
[TD]W=15
[/TD]
[TD="align: right"][/TD]
[TD]Input C2 for half-width on the X-Axis (horiz) [/TD]
[/TR]
[TR]
[TD="align: right"]3[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]This line is blank intrentionally[/TD]
[/TR]
[TR]
[TD="align: right"]4[/TD]
[TD] A
[/TD]
[TD] X
[/TD]
[TD] Y
[/TD]
[TD]Notes on the formula[/TD]
[/TR]
[TR]
[TD="align: right"]5[/TD]
[TD="align: right"]0[/TD]
[TD="align: right"]15.000[/TD]
[TD="align: right"]0.000
[/TD]
[TD] // B5 and down: =(ROWS(B$5:B5) - 2)/(ROWS(B$5:B$175) - 1) * 360
[/TD]
[/TR]
[TR]
[TD="align: right"]6[/TD]
[TD="align: right"]2.117
[/TD]
[TD="align: right"]14.990[/TD]
[TD="align: right"]0.184
[/TD]
[TD] // C5 and down: =D$2*COS(RADIANS($B5))
[/TD]
[/TR]
[TR]
[TD="align: right"]7[/TD]
[TD="align: right"]4.235
[/TD]
[TD="align: right"]14.959[/TD]
[TD="align: right"] 0.369
[/TD]
[TD] // D5 and down: =D$1*SIN(RADIANS($B5))
[/TD]
[/TR]
</tbody>[/TABLE]
In this formula, the angle A is calculated from the center of the elipse. I need it to be a tangent to the elipse and thought I could do it using the TAN function but I am missing something. Any comments would be appreciated greatly.
Thank you for your time