Arch: Panel/Panou

From FreeCAD Documentation
Revision as of 19:20, 29 August 2021 by Roy 043 (talk | contribs)

Arch Panel

poziția meniului
Arch → Panel Tools → Panel
Ateliere
Arch
scurtătură
P A
Prezentat în versiune
0.15
A se vedea, de asemenea,
Arch Panel Cut, Arch Panel Sheet

Descriere

Acest instrument vă permite să construiți tot felul de elemente de tip panou, de obicei pentru construcții de panouri, cum ar fi proiectul WikiHouse, dar și pentru toate tipurile de obiecte bazate pe un profil plat.

Imaginea de mai sus prezintă o serie de obiecte de panou, realizate pur și simplu din contururi 2D importate dintr-un fișier DXF. Ele pot fi apoi rotite și asamblate pentru a crea structuri.

Din versiunea 0.17, Panoul Arch poate fi de asemenea utilizat pentru a crea profiluri ondulate sau trapezoidale:

Cum se folosește

  1. Selectați o formă 2D (obiect Draft, fațetă sau Schetch) - opțional
  2. apăsați butonul Arch Panel, sau apăsați tasta P apoi tasta A
  3. Ajustați proprietățile dorite

Limite

  • În prezent nu există un sistem automat pentru a produce foi de tăiere 2D de la obiectele panoului, însă o astfel de caracteristică se află în plan și va fi adăugată în viitor.
  • Acest instrument nu este disponibil în versiunile FreeCAD înainte de 0.15

Opţiuni

  • Panels share the common properties and behaviours of all Arch Components
  • The thickness of a panel can be adjusted after creation
  • Press ESC or the Cancel button to abort the current command.
  • Double-clicking on the panel in the tree view after it is created allows you to enter edit mode and access and modify its additions and subtractions
  • It is possible to automatically make panels composed of more than one sheet of a material, by raising its Sheets property.
  • Panels can make use of Multi-Materials. When using a multi-material, the panel will become multi-layer, using the thicknesses specified by the multi-material. Any layer with a thickness of zero will have its thickness defined automatically by the remaining space defined by the Panel's own Thickness value, after subtracting the other layers.

Proprietăți

  • DateLength: The length of the panel
  • DateWidth: The width of the panel
  • DateThickness: The thickness of the panel
  • DateArea: The area of the panel (automatic)
  • DateSheets: The number of sheets of material the panel is made of
  • DateWave Length: The length of the wave for corrugated panels
  • DateWave Height: The height of the wave for corrugated panels
  • DateWave Type: The type of the wave for corrugated panels, curved, trapezoidal or spiked
  • DateWave Direction: The orientation of the waves for corrugated panels
  • DateBottom Wave: If the bottom wave of the panel is flat or not

Scrip-Programare

Instrumentul Panel poate fi utilizat în macros și de la consola python utilizând următoarele funcții:

Panel = makePanel(baseobj=None, length=0, width=0, thickness=0, placement=None, name="Panel")
  • Creates a Panel object from the given baseobj, which is a closed profile, and the given extrusion thickness.
    • If no baseobj is given, you can provide the numerical values for the length, width, and thickness to create a block panel.
  • If a placement is given, it is used.

Exempluː

import FreeCAD, Draft, Arch

Rect = Draft.makeRectangle(1000, 400)
Panel = Arch.makePanel(Rect, thickness=36)

Tutoriale