FreeCAD-manual

An experiment at reorganizing the contents of the FreeCAD wiki in an easier, friendlier book-like manner. The manual is now hosted on the FreeCAD wiki

View the Project on GitHub yorikvanhavre/FreeCAD-manual

Using spreadsheets

FreeCAD features another interesting workbench to explore: the Spreadsheet Workbench. This workbench allows you to create spreadsheets such as those made with Excel or LibreOffice directly in FreeCAD. These spreadsheets can then be populated with data extracted from your model, and can also perform a series of calculations between values. Spreadsheets can be exported as CSV files, which can be imported in any other spreadsheet application.

In FreeCAD, however, spreadsheets have an additional utility: Their cells can receive a name, and can then be referenced by any field supported by the expressions engine. This turns spreadsheets into powerful control structures, where the values inserted in specific cells can drive dimensions of the model. There is only one thing to keep in mind, as FreeCAD prohibits circular dependencies between objects, a same spreadsheet cannot be used to set a property of an object and at the same time retrieve a property value from the same object. That would make the spreadsheet and the object depending on each other.

In the following example, we will create a couple of objects, retrieve some of their properties in a spreadsheet, then use the spreadsheet to directly drive properties of other objects.

We will assume the reader has worked through the previous chapters and we’ll not provide a lot of detail that’s been covered previously

Reading properties

the 3 objects

the spreadsheet editor

The spreadsheet editor of FreeCAD, although it is not as complete and powerful as the spreadsheet applications above, has the basic tools and functionality commonly needed. For example you can change the cell properties (size, color, alignment), join and split cells, use formulas such as =2+2, or reference other cells with =B1.

One more very interesting feature has been added to this basic functionality: The possibility to reference not only other cells, but other objects from the document, and retrieve values from their properties. For example, let’s retrieve a couple of properties from the 3 objects we created above. Properties are what we can see in the properties editor window, under the Data tab, when an object is selected.

entering expressions

changing values

The Spreadsheet Workbench page will describe more in detail all the possible operations and functions that you can use in spreadsheets.

Writing properties

Another very interesting use of the Spreadsheet Workbench in FreeCAD is the inverse of what we’ve been doing: Instead of reading the values of properties of 3D objects, we can also assign values to these objects. Remember, however, one of the fundamental rules of FreeCAD: Circular dependencies are forbidden. We therefore can not use the same spreadsheet to read and write values to a 3D object. That would make the object depend on the spreadsheet, which would also depend on the object. Instead, we will create another spreadsheet.

setting alias

using spreadsheet aliases

You might wonder why we used “Spreadsheet001” instead of “Input” in the expression above. This is because each object, in a FreeCAD document, has an internal name, (e.g. Spreadsheet001) which is unique in the document, and a label, (e.g. Input) which appears in the tree view. If you uncheck the appropriate option in the preferences settings, FreeCAD will allow you to give the same label to more than one object. All operations that must identify an object with absolutely certainty, will use the unique internal name instead of the label, which could designate more than one object. The easiest way to know the internal name of an object is by keeping the Selection panel (top menu ViewPanelsSelection view) open, it will always indicate the internal name of a selected object:

checking real names

By using cell aliases in spreadsheets, we are able to use a spreadsheet to store “master values” in a FreeCAD document. This can be used, for example, to have a master model of certain dimensions, and to store these dimensions in a spreadsheet. It becomes then very easy to produce another child model with different dimensions. It is just a matter of opening the file and changing a couple of dimensions in the spreadsheet and saving the child file to a new name.

Finally, note that the constraints inside a sketch can also receive the value of a spreadsheet cell:

setting constraints

You can also give aliases to dimensional constraints (horizontal, vertical or distance) in a sketch (you can then use that value from outside the sketch as well):

setting constraint alias

Download

Read more