What's new

A little preview of v24

Max

Administrator
Staff member
A little preview of what we've been up to. :D

Realtime Previews in Sheet Metal

  • SM features now compute in real time like regular part features
Assembly Constraint Dialog - Apply
  • An apply button is now at the bottom of the dialog.
    upload_2021-8-30_8-24-36.png
User Profile versioning
  • Sometimes you need to go between versions, but your user profile was upgraded to a later version and the earlier AD didn't know what to do with it. Moving forward multiple versions of the profile are saved and used automatically by the appropriate version.
File Incrementation on Data/Model change only
  • Previously all saves resulted in the internal version of a part / assy changing. This meant that all downstream files would need to be updated. There was no distinction between data changes and cosmetic changes. That distinction now exists, and saving files with only cosmetic changes will not increment the version, and thus not cause downstream files to require an update unnecessarily.
Save Types and Notifications
  • 3 save options now exist:
    • Normal - operates like previous versions
    • Notify - Notifies you on save if the save contains data changes that will result in downstream files needing to be updated.
      upload_2021-8-30_8-23-20.png
    • Lock - see below.
Lock Files
  • You can set files to be locked. Locked files cannot be edited and operate similarly to files set to Read Only in Windows. You can set any files that should never change to Locked.
Plane Along 2D / 3D Sketch
  • Create a plane along a 2D or 3D sketch by defining what percentage along the curve the plane should exist at. This becomes important for some loft improvements.
Loft Improvements
  • Dialog and grid control revamp
  • Added two new twist minimization algorithm options
  • Centerline lofting is now supported
    upload_2021-8-30_8-30-13.png
  • A setting to make Closed lofts tangent at the start / end
    upload_2021-8-30_8-29-14.png
  • Ruled setting makes loft result only contain ruled surfaces
    upload_2021-8-30_8-31-52.png
  • Face Takoff Settings give control over geometry when lofting between two faces
    upload_2021-8-30_8-34-41.png
  • Control over lofting to a point
    upload_2021-8-30_8-36-55.png
  • New Gap Type option adds a Chamfer and Round style of Gap filling. Type a) below is what all lofts prior to v24 used.
    upload_2021-8-30_8-38-19.png
  • No New Vertices option allows you to prevent the creation of new vertices. In the image on the left 2 vertices are created that did not exist before the left. On the right, we create the same loft with no new vertices.
    upload_2021-8-30_8-41-45.png
  • A whole bunch more that isn't easy to convey in this format.
 

Attachments

  • upload_2021-8-30_8-38-16.png
    upload_2021-8-30_8-38-16.png
    128 KB · Views: 29

Max

Administrator
Staff member
Backstage View

A revamped File menu experience provides immediate access to part data, save settings, and more.
upload_2021-8-30_8-48-47.png

upload_2021-8-30_8-49-22.png

upload_2021-8-30_8-50-9.png


Save Dialog
The multi-component save dialog is getting an overhaul.

Equation Editor
Massive EQ Editor overhaul with:
  • New responsive grid control
    upload_2021-8-30_8-52-21.png
  • Set favorites
  • Search entire table
  • View owner of a parameter (where it was defined)
  • Group parameters (e.g. by Favorite, Type, etc)
    upload_2021-8-30_8-54-56.png

Center of Mass in 3D
Details coming soon

Not an exhaustive list, more to come later.
 

Attachments

  • upload_2021-8-30_8-51-58.png
    upload_2021-8-30_8-51-58.png
    1.4 MB · Views: 54

JST

Alibre Super User
WELL, THAT IS LOOKING GOOD!

Yep, I am shouting!

Locked files just basically enabled libraries, it would seem. Hopefully they are copyable and keep their locked nature by default.

The accept at the bottom of the constraint dialog will save much hassle.... I am still hitting the close as if it were the accept....... Can't seem to get used to it, and now I don't have to.
 

GIOV

Alibre Super User
Max and AD Team:
"No New Vertices
option allows you to prevent the creation of new vertices. In the image on the left 2 vertices are created that did not exist before the left. On the right, we create the same loft with no new vertices."
This is a good improvement. Congrats!
I loss my maintenance because I need the 2D Drawing Workspace and 2D Part and Assemble Section physic Properties as urgent.
 

JST

Alibre Super User
Copying is not usually a good idea. SaveAs'ing is better. And yes, copy and SaveAs will maintain locked status.

Yes, save as.... although with a library part (a real library" the part should retain the same description etc, which goes away in save as.

That is due to the only human-readable description that is visible without opening the file is the filename, which doubles as the "external ID" (yes I know there is an internal one as well that is human readable, and an internal one used by Alibre also).

The workaround would be to add a label such as "LIB" to the filename, which can be removed when doing the "save as". Such as "LIB 443-22-432 bracket", becoming just "443-22-432 bracket" when saved.

Ideally, the part would have an AD_LIB or similar extension, which changes to a PRT when saved as.
 
Last edited:

HaroldL

Alibre Super User
I'm not dismissing the work the Alibre team has done here but I wonder why we needed to wait for v24 for some of them.
I'm not going to get too excited about them now, I'll wait to see how they function when launched.

So here's my thoughts on some of them:

Yay for sheet metal previews, that will be nice.

Adding an Apply button to assembly constraints, that will be nice but it seems like that could have been done with an update to v23, unless there was something in the constraint engine that needed a rewrite.

Planes along a sketch, nice but could there also be a dimension as well as a percentage along?

As much as I try to avoid Lofts having a Centerline loft will be welcome.

Closed Loft Tangency at the start/end. I never understood why that wasn't part of the tool in the first place. Glad that is finally getting fixed.

No new vertices for lofts. It's nice, but why an option to prevent them and why are they being added/created anyway. I would prefer that they not be created at all. AND with the example shown will it be easier to loft something like a twisted bar. I could use something to make that easier so I don't have to add all the 3D guide curves, which are a PITA.

This example still doesn't look right even with guide curves.
Twisted Bar.png
 

skeller

Member
Updates look great!

Is there any way to get a filename only with no path information in the list of available properties? Currently, Part Name gives the filename including the path. It would be nice just to have the file name.
 

idslk

Alibre Super User
Preview of V24 looks interesting.
Will there be an Script and/or API enhancements?

Is there any way to get a filename only with no path information
yes.
create a custom property named eg. "Filename":

upload_2021-8-31_22-30-53.png

run this little script
Code:
import os
data = os.path.split(CurrentPart().FileName)
CurrentPart()._Part.DesignProperties.CustomProperty('Filename',str(data[1]))

Add this field to a drawing template
upload_2021-8-31_22-28-39.png

and when using this template for a drawing you will have only the filname.

Regards
Stefan
 

swertel

Alibre Super User
This thread is a sneak preview of what will be in v24 - it isn't for 'shopping lists'. It is much too late now to add items to the v24 development sprint.

We get this off topic drift every time Max shows a preview.
I completely agree.

And please don't make it "like Solidworks."
If I wanted Solidworks, I would have bought Solidworks.
 
Top