Experimental attempt for the next generation assembly workbench for FreeCAD
Go to file
luz.paz e9fe377f7b Misc typos and whitespace fixes
Found via `codespell`
2018-08-19 09:46:06 +08:00
deps Add six python module 2018-07-02 16:53:30 +08:00
Gui/Resources/icons Icon modification 2018-08-02 18:57:52 +08:00
py_slvs@13a83d416f Update py_slvs submodule 2018-08-11 09:45:16 +08:00
py_slvs_mac@b0f9c6a28d Update py_slvs_mac submodule 2018-08-11 11:09:41 +08:00
slvs@8b66606ef0 assembly: reduce auto recompute transaction 2018-08-15 10:58:30 +08:00
__init__.py Add six python module 2018-07-02 16:53:30 +08:00
.gitignore Initial commit 2017-09-11 04:30:13 +08:00
.gitmodules Add support for MacOS 2018-04-11 18:13:06 +08:00
assembly.py Misc typos and whitespace fixes 2018-08-19 09:46:06 +08:00
constraint.py constraint: fix constraint multiplication 2018-08-18 09:11:04 +08:00
FCADLogger.py py3: exception has not attr message 2018-07-01 23:08:34 +02:00
gui.py solver: default to not report failed constraint 2018-08-11 08:39:55 +08:00
init_gui.py gui: move AsmCmdGotoRelation to navigation toolbar 2018-07-30 13:04:33 +08:00
LICENSE Initial commit 2017-09-11 04:30:13 +08:00
mover.py assembly: support for derived assembly 2018-07-30 13:03:55 +08:00
proxy.py proxy: handle property type change 2018-08-15 10:52:27 +08:00
Readme.md #10 fix typo in readme 2018-06-12 07:58:05 +02:00
solver.py Misc typos and whitespace fixes 2018-08-19 09:46:06 +08:00
sys_slvs.py Add six python module 2018-07-02 16:53:30 +08:00
sys_sympy.py Add six python module 2018-07-02 16:53:30 +08:00
system.py constraint: optimize constraint multiplication 2018-08-17 19:10:03 +08:00
utils.py utils: use new 'Rotation' attribute of geometry 2018-08-17 11:59:18 +08:00

Assembly3 Workbench for FreeCAD

paypal

Assembly3 workbench is yet another attempt to bring assembly capability to FreeCAD. There is the original unfinished Assembly workbench in FreeCAD source tree, and Assembly2, which is an inspiration of this workbench, and with some code borrowed as well. The emphasis of Assembly3 is on full support of nested and multi-document assemblies.

You can find more details at Assembly3 wiki.

Update: I have added a donation button. Feel free to show your support, and thanks in advance!

Installation

Although Assembly3 workbench is written in Python, it depends on a few external python extensions. In addition, it relies on quite a few FreeCAD core changes to work properly. At the moment of this writing, these changes have not been merged into upstream yet, and only exists as a forked branch. To save you all the trouble of building FreeCAD yourself, I release Assembly3 along with the pre-build FreeCAD for all three major platforms. If you want to build everything yourself, please check out the build instruction here.

Design

The design of Assembly3 (and the fork of FreeCAD) partially follows the unfinished FreeCAD Assembly project plan, in particularly, the section Infrastructure and Object model. You can find more details at here.

Usage

Before starting to use the Assembly3 workbench, it is necessary for the user to be familiar with a few new concepts introduced by the forked FreeCAD.

You can find instructions on common operations along with some tutorials at here.

Comparing with Assembly2

This section is for those who have used Assembly2 before. Here is a brief list of comparison between Assembly2 to Assembly3.

  • Assembly2 supports only one assembly per document, so the document can be considered as the assembly container.

    Assembly3 has dedicated container for assembly and supports multiple nested assemblies per document.

  • Assembly2 has dedicated object for imported child feature. The child feature's geometry is imported as a compound, and can be updated by user in case of external modification of the geometry model.

    Assembly3 has no special object for imported feature, although the feature may be added through a link under some circumstances. Simply drag and drop feature into an Assembly container, even if the feature is in another document. Any modification of the feature is instantaneously visible to its parent assembly. The FreeCAD core provides various commands to help navigating among nested assemblies and the linked child features, import the external feature into the same document of the assembly, and export the child feature into external document.

  • In Assembly2, the imported child feature acts as a container to group related constraints. There is no visualization of the geometry element in the constraint.

    The Assembly3 constraints are grouped under the parent assembly, each constraint acts as a container of its referring geometry ElementLink, with enhanced visualization support. Simply right click the ElementLink and choose Link actions -> Select final linked object to jump to the actual geometry model object owning the geometry element.

  • Assembly2 has a dedicate task panel for degree of freedom animation.

    Assembly3 is currently lacking of similar functionality. However, it does allow you to interactively drag any part of the assembly under constraint in real time.