Arch Profile
This page has been updated for that version.
|
Menu location |
---|
3D/BIM → Generic 3D tools → Profile |
Workbenches |
BIM |
Default shortcut |
None |
Introduced in version |
0.19 |
See also |
None |
Description
The Arch Profile tool builds a parametric 2D profile object. This object can then be used as a base in different other tools that perform extrusions, such as Arch Frame, Arch CurtainWall or Part Extrude.
See the list of available presets.
The profile tool is also integrated to the Arch Structure tool, all preset profiles are also available there.
Usage
- Press the
Profile button
- Select a preset in the tool task panel
- Click a point in the 3D view to place the profile
Properties
Data
- DataHeight: The overall height of the profile
- DataWidth: The overall width of the profile
- DataDiameter: The diameter of the profile (circular profiles only)
- DataThickness: The thickness of the tube wall (circular and rectangular hollow profiles only)
- DataWeb Thickness: The thickness of the profile web (H and I profiles only)
- DataFlange Thickness: The thickness of the profile flange (H and I profiles only)
Adding custom profiles
An additional CSV file can be created by the user, containing custom profile definitions. It must be named profiles.csv
, and placed in
$FREECAD_USER_DIR/BIM/
The $FREECAD_USER_DIR
can be obtained from the Python console:
FreeCAD.getUserAppDataDir()
The contents of your custom profiles.csv
file must be modeled upon the same rules as the profiles.csv in the source code.
The CSV file must contain one line per available profile, formatted as follows:
- For C profiles: Category, Name, Profile class, Diameter, Thickness
- For H, U and T profiles: Category, Name, Profile class, Width, Height, Web thickness, Flange thickness
- For L profiles: Category, Name, Profile class, Width, Height, Thickness
- For R profiles: Category, Name, Profile class, Width, Height
- For RH profiles: Category, Name, Profile class, Width, Height, Thickness
All measurements must be in millimeters. Possible profile classes are:
- C: Circular tube
- H: H or I profile
- R: Rectangular
- RH: Rectangular hollow
- U: U profile
- L: L profile
- T: T profile
Additional profile types can be created, but a corresponding class must first be defined in ArchProfile.py.
Scripting
The Profile tool can be used in macros and from the Python console by using the following function:
profile = makeProfile(profile_list)
Where profile_list
contains the different elements of a list in the CSV file.
Example:
import Arch
Arch.makeProfile([0, 'REC', 'REC100x100', 'R', 100, 100])
Where the first element of the list is an order number that is not used yet.
- 2D drafting: Sketch, Line, Polyline, Circle, Arc, Arc by 3 points, Fillet, Ellipse, Polygon, Rectangle, B-spline, Bézier curve, Cubic Bézier curve, Point
- 3D/BIM: Project, Site, Building, Level, Space, Wall, Curtain Wall, Column, Beam, Slab, Door, Window, Pipe, Pipe Connector, Stairs, Roof, Panel, Frame, Fence, Truss, Equipment
- Reinforcement tools: Custom Rebar, Straight Rebar, U-Shape Rebar, L-Shape Rebar, Stirrup, Bent-Shape Rebar, Helical Rebar, Column Reinforcement, Beam Reinforcement, Slab Reinforcement, Footing Reinforcement
- Generic 3D tools: Profile, Box, Shape builder..., Facebinder, Objects library, Component, External reference
- Annotation: Text, Shape from text, Aligned dimension, Horizontal dimension, Vertical dimension, Leader, Label, Axis, Axes System, Grid, Section Plane, Hatch, Page, View, Shape-based view
- Snapping: Snap lock, Snap endpoint, Snap midpoint, Snap center, Snap angle, Snap intersection, Snap perpendicular, Snap extension, Snap parallel, Snap special, Snap near, Snap ortho, Snap grid, Snap working plane, Snap dimensions, Toggle grid, Working Plane Top, Working Plane Front, Working Plane Side
- Modify: Move, Copy, Rotate, Clone, Create simple copy, Make compound, Offset, 2D Offset..., Trimex, Join, Split, Scale, Stretch, Draft to sketch, Upgrade, Downgrade, Add component, Remove component, Array, Path array, Polar array, Point array, Cut with plane, Mirror, Extrude..., Difference, Union, Intersection
- Manage: BIM Setup..., Views manager, Manage project..., Manage doors and windows..., Manage IFC elements..., Manage IFC quantities..., Manage IFC properties..., Manage classification..., Manage layers..., Material, Schedule, Preflight checks..., Annotation styles...
- Utils: Toggle bottom panels, Move to Trash, Working Plane View, Select group, Set slope, Create working plane proxy, Add to construction group, Split Mesh, Mesh to Shape, Select non-manifold meshes, Remove Shape from Arch, Close Holes, Merge Walls, Check, Toggle IFC Brep flag, Toggle subcomponents, Survey, IFC Diff, IFC explorer, Create IFC spreadsheet..., Image plane, Unclone, Rewire, Glue, Reextrude
- Panel tools: Panel, Panel Cut, Panel Sheet, Nest
- Structure tools: Structure, Structural System, Multiple Structures
- IFC tools: IFC Diff..., IFC Expand, Make IFC project, IfcOpenShell update
- Nudge: Nudge Switch, Nudge Up, Nudge Down, Nudge Left, Nudge Right, Nudge Rotate Left, Nudge Rotate Right, Nudge Extend, Nudge Shrink
- Additional: Preferences, Fine tuning, Import Export Preferences, IFC, DAE, OBJ, JSON, 3DS, SHP

- Getting started
- Installation: Download, Windows, Linux, Mac, Additional components, Docker, AppImage, Ubuntu Snap
- Basics: About FreeCAD, Interface, Mouse navigation, Selection methods, Object name, Preferences, Workbenches, Document structure, Properties, Help FreeCAD, Donate
- Help: Tutorials, Video tutorials
- Workbenches: Std Base, Assembly, BIM, CAM, Draft, FEM, Inspection, Material, Mesh, OpenSCAD, Part, PartDesign, Points, Reverse Engineering, Robot, Sketcher, Spreadsheet, Surface, TechDraw, Test Framework
- Hubs: User hub, Power users hub, Developer hub