Performance Issues
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I created a tool where User Coordinate System (UCS) is defined on top of a surface. I use hundreds of these UCS to create a sketches as the basis for a set operation either a join or a cut. The problems happens after the first 100 features the systems slows down considerably. Is this an actual behaviour ? How can I speed up the process ?.
I have made some tests breaking down the process and adding features 50 at the time but still the problem persists.
My loop is something like this
for ( i = 0 to number_of_elements_in_pattern)
{
create UCS
create a sketch on XY plane
create a solid of revolution
add a solid to the geometry
}
In this pseudo code if number_of_elements_in_pattern is bigger than 100 the creation of features happens too slow, in a case where I had 750 features it took 3 hours, which is incredibly slow. I can not figure out the real issue.
Any ideas
Thank you