Édition de fonctions

From FreeCAD Documentation
Revision as of 19:16, 8 December 2018 by Normandc (talk | contribs) (Created page with "* '''Habillage''' : ces fonctions appliquent un traitement à des arêtes ou des faces, tels que des arrondis/congés, chanfreins ou dépouilles.")

Introduction

Cette page explique la manière dont l'atelier PartDesign doit être utilisé à partir de FreeCAD 0.17.

Alors que l'atelier Part et d'autres ateliers FreeCAD construisent des modèles en combinant des formes, l'atelier PartDesign utilise des fonctions. Une fonction est une opération qui modifie la forme d'un modèle.

Méthodologie d'édition de fonctions

La première fonction est communément appelée la fonction de base. Au fur et à mesure que de nouvelles fonctions sont ajoutées au modèle, chaque fonction prends la forme de la fonction précédente et ajoute ou enlève de la matière, créant des dépendances directes d'une fonction à la suivante. Cette méthodologie imite un procédé de fabrication typique : un bloc est coupé sur un côté, puis sur un autre côté, des trous sont percés, puis des congés appliqués, etc.

Toutes les fonctions sont listées de façon séquentielle dans l'arborescence Modèle et peuvent être modifiées en tout temps, avec la dernière fonction représentant la pièce finale.

Les fonctions peuvent être classées selon différentes catégories :

  • Basée sur profil : ces fonctions partent d'un profil pour définir la forme de la matière à ajouter ou enlever. Le profil consistera en une esquisse, une face plane de la géométrie existante (un profil sera extrait de ses arêtes), une forme liée ou un objet Draft qui aura préalablement été inclus dans le corps actif.
  • Additive : ajoute de la matière au modèle existant. Les fonctions additives ont des icônes de couleur jaune.
  • Soustractive : enlève de la matière du modèle existant. Les fonctions soustractives ont des icônes de couleurs rouge et bleu.
  • Basée sur primitive : basée sur des primitives géométriques (cube, cylindre, cône, tore...). Elles peuvent être additives ou soustractives.
  • Fonctions de transformation : elles appliquent une transformation à des fonctions existantes (symétrie, répétition linéaire ou circulaire, transformation multiple).
  • Habillage : ces fonctions appliquent un traitement à des arêtes ou des faces, tels que des arrondis/congés, chanfreins ou dépouilles.
  • Procedural: can be said of features that are not based on sketches, like the transformation and dress-up features.

Body

Working in PartDesign requires first creating a Body. The PartDesign Body is a container that groups a sequence of features forming a single contiguous solid.

What is a single contiguous solid? It is an object like a casting or something machined from a single block of metal. If the object involves nails, screws, glue or welding, it is not a single contiguous solid. As a practical example, a wooden chair would be made of multiple bodies, with one for each of its sub-components (legs, slats, seat, etc).

Multiple bodies can be created in a FreeCAD document; they can also be combined to form a single contiguous solid.

Only one body can be active in a document. The active body gets the new created features. A body can be activated or deactivated by double clicking on it. An activated body is highlighted in light blue. The highlighting color can be set in the preferences under Display/Colors/Active container since version 0.18.

When a model requires multiple bodies, like the previous wooden chair example, the general purpose Part container can be used to group them and move the whole as a unit.

Body visibility management

A body will present by default its most recent feature to the outside. This feature is defined by default as the tip. A good analogy is the expression the tip of the iceberg: only the tip is visible above the water, most of the iceberg's mass (the other features) is hidden. As a new feature is added to the body, visibility of the previous feature is turned off, and the new feature becomes the tip.

There can only be one feature visible at a time. It is possible to toggle the visibility of any feature in the body, by selecting it in the Model tree and pressing the spacebar, in effect going back in the history of the body.

Body Origin

The body has an Origin which consists of reference planes (XY, XZ, YZ) and axes (X, Y, Z) that can be used by sketches and features. Sketches can be attached to Origin planes, and they no longer need to be mapped to planar faces for features based on them to be added or subtracted from the model.

Moving and Reordering Objects

It is possible to temporarily redefine the tip to a feature in the middle of the Body tree to insert new objects (features, sketches or datum geometry). It is also possible to reorder features under a Body, or to move them to a different Body. Select the object and right-click to get a contextual menu that will offer both options. The operation may be prevented if the object has dependencies in the source Body, such as being attached to a face. To move a sketch to another Body, it should not contain links to external geometry.

Datum geometry

Datum geometry consists of custom planes, lines, points or externally linked shapes. They can be created for use as reference by sketches and features. There is a multitude of attachment possibilities for datums.

Cross-referencing

It is possible to cross-reference elements from a body in another body via datums. For example the datum shape binder allows to copy over faces from a body as reference in another one. This should make it easy to build a box with fitting cover in two different bodies. FreeCAD helps you to not accidentally link to other bodies and queries your intent.

Attachment

Object attachment is not a specific PartDesign tool, but rather a Part utility introduced in v0.17 that can be found in the Part menu. It is heavily used in the PartDesign workbench to attach sketches and reference geometry to the standard planes and axes of the Body. Very extensive ways of creating datum points, lines and planes are available. Optional attachment offset parameters make this tool very versatile.

More info can be found in the Attachment page.

Advice for creating stable models

The idea of parametric modeling implies that you can change the values of certain parameters and subsequent steps are changed according to the new values. However, when severe changes are made, the model can break due to the topological naming issue that is still unresolved in FreeCAD. Compared to previous FreeCAD versions, breakage can be minimized when you respect the following design principles:

  • Avoid as much as possible mapping sketches to faces of the model. Place your sketches on standard planes, or on custom datum planes. Sketches attached to planes are less at risk of being unexpectedly reattached to a different reference.
  • When creating datum geometry, do not base it on the part topology, base it on standard planes/axes and/or sketches.
  • Use a "master sketch". That is a preferably not too complicated sketch which contains basic geometric elements of your model. These elements can be referenced when modeling subsequent features. Such a master sketch will often be the first sketch in the Body but it doesn't have to be; in fact you don't even have to use it at all for anything else but being referenced.
  • If you inevitably have to reference an intermediate feature, e.g. the result of a thickness operation, use the first reference possible in the list of subsequent features where the referenced geometric element occurs. From FreeCAD 0.17 on you don't have to use the latest feature. If you take an early feature as reference, all changes to intermediate steps won't break your model. And again it is better to reference a sketch than edges and vertices of a solid.