Arch Pipe/es

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

Arch Pipe

Ubicación en el Menú
Arch → Pipe Tools → Pipe
Entornos de trabajo
Arch
Atajo de teclado por defecto
P I
Introducido en versión
0.17
Ver también
Arch PipeConnector

Descripción

introduced in 0.17 Esta herramienta permite crear tuberías desde cero, o desde objetos seleccionados. Los objetos seleccionados deben estar basados en partes (borrador, boceto, etc.) y contener uno y solo un cable abierto.

Como utilizar

  1. Opcionalmente, seleccione una forma lineal de Part como Draft Line, Draft Wire o un Sketch
  2. Presione el botón Arch Pipe, o presione P luego las teclas I

Opciones

Properties

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

Programación

La herramienta de Tubería/Pipe se puede utilizar en macros y desde la consola de Python mediante la utilización de las siguientes funciones:

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()