Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Infinite contact_length Error - contact length calculation #240

Open
RichardPfr opened this issue Aug 8, 2024 · 4 comments
Open

Infinite contact_length Error - contact length calculation #240

RichardPfr opened this issue Aug 8, 2024 · 4 comments
Labels
bug Something isn't working
Milestone

Comments

@RichardPfr
Copy link
Contributor

The contact_length is currently calculated like this:

@RollPass.Roll.contact_length
def contact_length(self: RollPass.Roll):
height_change = self.roll_pass.in_profile.height - self.roll_pass.height
return np.sqrt(self.min_radius * height_change - height_change ** 2 / 4)

Problem

In cases like in the following this height_change outputs a negative value which in turn causes an error in the return function:

This is because for the roll_pass.height PyRolL only looks at the tip depth of the groove and if that is grater than the incoming profile it thinks, that both dont touch at all so no contact length would be there.

Proposed Solution

As the picture above shows though there would logically be a contact_length.
Would it be feasible, to handle the contact length calculation differently in these cases, by looking at the intersection of groove and in_profile instead?

P.S.:
The Error that is output with the above:
grafik

@RichardPfr RichardPfr added the bug Something isn't working label Aug 8, 2024
@ChRen95
Copy link
Member

ChRen95 commented Aug 13, 2024

Please attach a MWE to reproduce this error.

@RichardPfr
Copy link
Contributor Author

MWE to reproduce the Error:

MWE_Export.zip

@ChRen95
Copy link
Member

ChRen95 commented Sep 16, 2024

Okay, so the problem for this case is a bit manifold. On the one side we could implement a search algorithm that search the minimal contact length and therefore change this implementation on the other side, the case with is described here is not covered by the equivalent rectangle approach... underfilled grooves

@axtimhaus
Copy link
Member

Solution for this already available in #251

@ChRen95 ChRen95 added this to the Indeterminate milestone Oct 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants