Arch Pipe/ja

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

Arch Pipe

メニューの場所
Arch → Pipe Tools → Pipe
ワークベンチ
Arch
デフォルトのショートカット
P I
バージョンで導入
0.17
も参照してください
Arch PipeConnector

説明

introduced in 0.17 このツールを使用すると、最初から、または選択したオブジェクトからパイプを作成できます。選択されたオブジェクトは、パーツベース(Draft/ドラフト、Sketch/スケッチなど)でなければならず、開いているWire/ワイヤが1つだけです。

使用方法

  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.

オプション

プロパティ

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

典型的なワークフロー

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

スクリプト処理

Pipeツールは、マクロやPythonコンソールから次の関数を使って使うことができます:

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