Given an annulus with known dimensions how would I find the length of a line connecting the inner and outer edges at an arbitrary angle?
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
Given an annulus with origin A
and radii R1
& R2
, a point on the inner radius B
, and an angle theta
to an unknown point on the outer radius C
I need to find the length of line segment BC
.
I'm working in OpenSCAD so I must solve this problem mathematically but I have diagrammed it in FreeCAD below.
- knowns:
A
,B
,R1
,R2
,theta
- unknowns:
C
geometry
add a comment |Â
up vote
0
down vote
favorite
Given an annulus with origin A
and radii R1
& R2
, a point on the inner radius B
, and an angle theta
to an unknown point on the outer radius C
I need to find the length of line segment BC
.
I'm working in OpenSCAD so I must solve this problem mathematically but I have diagrammed it in FreeCAD below.
- knowns:
A
,B
,R1
,R2
,theta
- unknowns:
C
geometry
1
in triangle $ABC$ we know side $AB$, side $AC$, and angle $ABC$. We want to find the third side $BC$
â Lozenges
Sep 1 at 7:05
Lozenges... thank you. I made this way too hard in my head /facepalm
â rennat
Sep 1 at 7:07
For anyone else who stumbles onto this page, here is the solution directly from my openscad file:theta = 180 - vaneAngle; chordLength = innerRadius * cos(theta) + sqrt(pow(outerRadius, 2) - pow(innerRadius, 2) * pow(sin(theta), 2));
and yes it is for a centrifugal blower :)
â rennat
Sep 1 at 7:38
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Given an annulus with origin A
and radii R1
& R2
, a point on the inner radius B
, and an angle theta
to an unknown point on the outer radius C
I need to find the length of line segment BC
.
I'm working in OpenSCAD so I must solve this problem mathematically but I have diagrammed it in FreeCAD below.
- knowns:
A
,B
,R1
,R2
,theta
- unknowns:
C
geometry
Given an annulus with origin A
and radii R1
& R2
, a point on the inner radius B
, and an angle theta
to an unknown point on the outer radius C
I need to find the length of line segment BC
.
I'm working in OpenSCAD so I must solve this problem mathematically but I have diagrammed it in FreeCAD below.
- knowns:
A
,B
,R1
,R2
,theta
- unknowns:
C
geometry
geometry
edited Sep 1 at 6:38
asked Sep 1 at 6:11
rennat
1013
1013
1
in triangle $ABC$ we know side $AB$, side $AC$, and angle $ABC$. We want to find the third side $BC$
â Lozenges
Sep 1 at 7:05
Lozenges... thank you. I made this way too hard in my head /facepalm
â rennat
Sep 1 at 7:07
For anyone else who stumbles onto this page, here is the solution directly from my openscad file:theta = 180 - vaneAngle; chordLength = innerRadius * cos(theta) + sqrt(pow(outerRadius, 2) - pow(innerRadius, 2) * pow(sin(theta), 2));
and yes it is for a centrifugal blower :)
â rennat
Sep 1 at 7:38
add a comment |Â
1
in triangle $ABC$ we know side $AB$, side $AC$, and angle $ABC$. We want to find the third side $BC$
â Lozenges
Sep 1 at 7:05
Lozenges... thank you. I made this way too hard in my head /facepalm
â rennat
Sep 1 at 7:07
For anyone else who stumbles onto this page, here is the solution directly from my openscad file:theta = 180 - vaneAngle; chordLength = innerRadius * cos(theta) + sqrt(pow(outerRadius, 2) - pow(innerRadius, 2) * pow(sin(theta), 2));
and yes it is for a centrifugal blower :)
â rennat
Sep 1 at 7:38
1
1
in triangle $ABC$ we know side $AB$, side $AC$, and angle $ABC$. We want to find the third side $BC$
â Lozenges
Sep 1 at 7:05
in triangle $ABC$ we know side $AB$, side $AC$, and angle $ABC$. We want to find the third side $BC$
â Lozenges
Sep 1 at 7:05
Lozenges... thank you. I made this way too hard in my head /facepalm
â rennat
Sep 1 at 7:07
Lozenges... thank you. I made this way too hard in my head /facepalm
â rennat
Sep 1 at 7:07
For anyone else who stumbles onto this page, here is the solution directly from my openscad file:
theta = 180 - vaneAngle; chordLength = innerRadius * cos(theta) + sqrt(pow(outerRadius, 2) - pow(innerRadius, 2) * pow(sin(theta), 2));
and yes it is for a centrifugal blower :)â rennat
Sep 1 at 7:38
For anyone else who stumbles onto this page, here is the solution directly from my openscad file:
theta = 180 - vaneAngle; chordLength = innerRadius * cos(theta) + sqrt(pow(outerRadius, 2) - pow(innerRadius, 2) * pow(sin(theta), 2));
and yes it is for a centrifugal blower :)â rennat
Sep 1 at 7:38
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2901417%2fgiven-an-annulus-with-known-dimensions-how-would-i-find-the-length-of-a-line-con%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
1
in triangle $ABC$ we know side $AB$, side $AC$, and angle $ABC$. We want to find the third side $BC$
â Lozenges
Sep 1 at 7:05
Lozenges... thank you. I made this way too hard in my head /facepalm
â rennat
Sep 1 at 7:07
For anyone else who stumbles onto this page, here is the solution directly from my openscad file:
theta = 180 - vaneAngle; chordLength = innerRadius * cos(theta) + sqrt(pow(outerRadius, 2) - pow(innerRadius, 2) * pow(sin(theta), 2));
and yes it is for a centrifugal blower :)â rennat
Sep 1 at 7:38