-
Notifications
You must be signed in to change notification settings - Fork 60
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
Unfold option Issue #54
Comments
Thanks! I will take a look |
Hi, The 180.0 is not the problem. The problem is difference between European and American standard of k_facror (one of them is 1/2 the other). I have reverted it to the European standard, which is compatible with Ulrich's original unfolder script. Now both unfolding from your system, and Ulrich's system match. |
Thank you |
The k factor in the properties are total different system and works only on sheetmetal prefolded using the sheetmetal WB. If you make a sheetmetal model using another system, you can only unfold it using the unfold button. The unfold button uses its own K-factor, and its the same factor for all folds. The properties system can set a different k factor to each fold. |
Ok. Here is what I'm doing.
The unfolded length is 182,33mm (which is different than other two unfold cases). Report view says: It does not use the 0,86 kfactor that I have set in the bend property. Is it the intended behaviour (workflow) or am I doing something wrong? Here is the example file: L-bracket-final.zip
Cheers, |
Sorry if I wasn't clear, The unfold button disregards ALL fold properties, and works with its own k-factor system. |
Thanks for clarifying. I think this issue has been resolved. Thank you again! :) Cheers, |
Wow! I was about to open an issue about "k-factor is not regarded while unfolding" and I just saw this explanation. What is the use case of this behavior? Why isn't the k-factor from the bend properties simply used while unfolding? |
@jaisekjames I now think the issue is solved. |
@shaise can this ticket be resolved? |
yes, I think it can be closed |
See Issue
https://forum.freecadweb.org/viewtopic.php?f=22&t=25281&start=150#p279502
please change from
unfoldLength = ( bendR + kfactor * thk / 2.0 ) * bendA * math.pi / 180
to
unfoldLength = ( bendR + kfactor * thk / 2.0 ) * bendA * math.pi / 180.0
Add decimal place to 180.
The text was updated successfully, but these errors were encountered: