Arch Pipe/pt-br

THIS COMMAND IS PART OF THE INTEGRATED BIM WORKBENCH IN V1.0
This page has been updated for that version.

Arch Pipe

Menu location
3D/BIM → Pipe
Workbenches
BIM
Default shortcut
P I
Introduced in version
0.17
See also
None

Descrição

The Arch Pipe tool allows to create pipes from scratch, or from selected objects. The selected objects must contain a single open wire.

Utilização

  1. Optionally, select a linear Part shape such as a Draft Line, a Draft Wire or an open Sketch.
  2. Invoke this command using several methods:
    • Pressing the Pipe button on the toolbar.
    • Pressing the P then I keyboard shortcut.
    • Pressing the 3D/BIM → Pipe entry from the top menu.

Opções

Propriedades

An Arch Pipe object shares the common properties and behaviors of all Arch Components.

Data

Component

For the other properties in the group see Arch Component.

Pipe

Typical workflow

FreeCAD.ActiveDocument.Equipment.SnapPoints=[FreeCAD.Vector(0,0,100)]

It is also possible to create Arch Pipes without a base line, in this case use its "Length" property to define the length.

Scripting

See also: Arch API and FreeCAD Scripting Basics.

The Pipe tool can be used in macros and from the Python console by using the following function:

pipe = makePipe(baseobj=None, diameter=0, length=0, placement=None, name="Pipe")
import Draft, Arch

p1 = FreeCAD.Vector(1000, 0, 0)
p2 = FreeCAD.Vector(2500, 200, 0)
p3 = FreeCAD.Vector(3100, 1000, 0)
p4 = FreeCAD.Vector(3500, 500, 0)
line = Draft.make_wire([p1, p2, p3, p4])

pipe = Arch.makePipe(line, 200)
FreeCAD.ActiveDocument.recompute()

pipe2 = Arch.makePipe(diameter=120, length=3000)
FreeCAD.ActiveDocument.recompute()