Welcome to the Onshape forum! Ask questions and join in the discussions about everything Onshape.
First time visiting? Here are some places to start:- Looking for a certain topic? Check out the categories filter or use Search (upper right).
- Need support? Ask a question to our Community Support category.
- Please submit support tickets for bugs but you can request improvements in the Product Feedback category.
- Be respectful, on topic and if you see a problem, Flag it.
If you would like to contact our Community Manager personally, feel free to send a private message or an email.
Forming Tools for Sheet Metal
daveaseeman
Member, Developers Posts: 5 PRO
Hi all,
Has anyone figured out a way to create sheet metal features with complex/curved surfaces other than basic bends and flanges? Thinks like louvers or other formed features?
The approach to modeling is very different than in Solidworks, which is what I'm used to. But I tried here to do it in what I thought might be the Onshape way, but with no luck. The first tab shows the approach with flanges in the center of a part, while the second tab shows how I tried to create a formed feature in a similar manner.
Thanks in advance!
Dave
Has anyone figured out a way to create sheet metal features with complex/curved surfaces other than basic bends and flanges? Thinks like louvers or other formed features?
The approach to modeling is very different than in Solidworks, which is what I'm used to. But I tried here to do it in what I thought might be the Onshape way, but with no luck. The first tab shows the approach with flanges in the center of a part, while the second tab shows how I tried to create a formed feature in a similar manner.
Thanks in advance!
Dave
Tagged:
2
Comments
Eduardo Magdalena C2i Change 2 improve ☑ ¿Por qué no organizamos una reunión online?
Partner de PTC - Onshape Averigua a quién conocemos en común
https://cad.onshape.com/documents/9da6a5d6e4ce2ce60d83ddd5/w/970ad634ad96dad4d69c0622/e/df2eec05c0659f0b4f9e6801
Since I only need a line for a .dxf I made a cut very small in width (.0005"). This contour is small enough that when the .dxf was called into Sigma Nest it saw one single line.
I completed the sheet metal part then added the louver feature. Since I only need the depiction of the louver in the model and only the cut line in the flat this method worked out best for me.
Hope this helps.
Twitter: @BryanLAGdesign
https://cad.onshape.com/documents/c906e2264d158509753b1bdb/w/54ac31d75d8897024a9c9c68/e/f07b5f8cd8f7543b972b1779
@michael_bass
@lana
@mahir
@BLeeVN
@emagdalenaC2C
I have just made a forming tool FS: https://cad.onshape.com/documents/a752e0db24eb071ebb6f5aa0
Please try it out and let me know what you think
IR for AS/NZS 1100
HWM-Water Ltd
Excellent use for reference parameter! Nice feature!
"We are impressed!"
I took a liberty of adding processSubfeatureStatus() call after sheetMetalEnd. This causes a blue info message about changes not being reflected in the flat to appear when the Form SM feature is edited.
If you agree with this change please release another version. This might save us some support questions from this feature users in the future. Thank you for helping us with sheet metal functionality development.
Thanks!
I have released the version as V 0.1.8
IR for AS/NZS 1100
This does not seem to display a popup anymore.
I also tried using
reportFeatureInfo(context, id, ErrorStringEnum.SHEET_METAL_END_DONE);
, but it did not work eitherIR for AS/NZS 1100
Thanks!
IR for AS/NZS 1100
Hey @MBartlett21 ,
my goal is to rebuild the embossing library tools from SolidWorks in Onshape.
I found your feature script and am trying to apply it.
https://cad.onshape.com/documents/a752e0db24eb071ebb6f5aa0/w/47c6a6888718e30c80f1f652/e/942b8c71966a4d99ad3d20ce
A few questions I have:
1. What is "Transform 1" for?
2. I noticed something else with my test document. There is material that does not belong there. How can i fix it?
https://cad.onshape.com/documents/c9eb78ae37ac1a81184f65a2/w/8aa655ad7cea7dc1ec6a7ff6/e/361d328b19705a7521903440
3. How to make it known in the flat pattern?
4.Can you control the rotation ? As in Solid works as an example.
5. And the last question. Is it possible to configure a tool in different sizes?
greetings
IR for AS/NZS 1100
But you have to make sure that all cutouts are made in the sheet before you use the embossing tool.
But what if the tool has to be turned around? How can I do that ?
Hello @MBartlett21
I´d like to know how to position the formtool "Kabelbinderbrücke" to my part.
It works by using the sketch point but the mate connector is not accepted.
thanks for feed back
Andreas
Axel Kollmenter
I have just made a version 0.4.1 that adds a Flip Z checkbox and renames the Flip Orientation checkbox to Rotate 180. I have also got the feature to now work in feature patterns.
IR for AS/NZS 1100
Axel Kollmenter
The reason for it being a normal part after is that this FeatureScript does a "Finish sheet metal model" internally, so that it can make non-developable surfaces.
If you don't use the forming feature at all, and just do a Finish sheet metal model on your part, does just that cause problems in the release candidate?
A sheet metal model is based on a developable surface body in Onshape, with special attributes applied on each edge or corner of it.[1]
When using features that modify the sheet metal, they modify that internal surface body, and then call `updateSheetMetalGeometry`[2] once they are finished. (This is slightly different for adding and subtracting material on the flat pattern, which is handled by an internal feature called `opSMFlatOperation` (not documented))
Because of this, we can't just edit the folded model, since that is only meant to be modified by the `updateSheetMetalGeometry` function.
(And due to the requirement of it being developable, we can't use any of the forms, since by definition they are not developable.)
[1]: sheetMetalAttribute.fs (doc)
[2]: updateSheetMetalGeometry (doc)
With sheet metal, I had to implement my own function to get the attribute after the sheet metal model was finished, since there didn't seem to be any builtin way to do so
IR for AS/NZS 1100
Axel Kollmenter