Arch: Acoperiș

From FreeCAD Documentation
Revision as of 08:45, 18 November 2018 by Luc (talk | contribs)

Arch Roof

Menu location
Arch → Roof
Workbenches
Arch
Default shortcut
R F
Introduced in version
-
See also
None

Descriere

Instrumentul Acoperiș vă permite să creați un acoperiș înclinat de la o linie selctată. Obiectul de acoperiș creat este parametric, menținându-și relația cu obiectul de bază. Rețineți că acest instrument este în curs de dezvoltare și ar putea să nu reușească cu forme foarte complexe. Principiul este acela că fiecare margine este văzută alocând un profil de acoperiș (panta, lățimea, lungimea, grosimea ...).

Cum se folosește

  1. Create a wire with following the counterclockwise direction and select it.
  2. Press the Arch Roof button, or press R then F keys
  3. The default roof object could have a strange shape, it's because the tool have not all the needed informations.
  4. After creating the default roof, double click on the object in the tree view to access and edit all the properties. Angle must be between 0 and 90.
  5. Each line correspond to a roof pane. So you can set properties you want for each roof pane.
  6. To help you, you can set Angle or Run to 0 and defined a Relative Id, this make automatic calculs to find the data relative to the relative Id.
  7. It work like this :
    1. If Angle = 0 and Run = 0 then profile is identical to the relative profile.
    2. If Angle = 0 then angle is calculated so that the height is the same one as the relative profile.
    3. If Run = 0 then Run is calculated so that the height is the same one as the relative profile.
  8. At the end, set an angle to 90° to make a gable.
  9. Also you can check this video : https://www.youtube.com/watch?v=4Urwru71dVk

Opţiuni

Proprietăți

  • DateAngles: List of the slope angle of the roof pane (an angle for each edge in the wire).
  • DateRuns: Listează lățimii apei/versantului acoperișului (apa/versantul pentru fiecare margine afilamentului).
  • DateIdRel: Listează relația/raportul Id unghiul pantei acoperișului
  • DateThickness: List of thickness of the roof pane. (a thickness for each edge in the wire).
  • DateOverhang: Listează streașina fiecărei ape/versat al acoperișului (o sreașină pentru fiecare margine a filamentului original).
  • DateFace: The face index of the base object to be used #Not really used

Scrip-Programare

Instrumentul Acoperiș poate fi folosit în macros și din consola python utilizând următoarea funcție:

makeRoof (baseobj,[facenr],[angles],[runs],[idrel],[thickness],[overhang],[name])
Face un acoperiș pe baza unui filament închis. Puteți furniza o listă de unghiuri, run, idrel, grosime, consola pentru fiecare margine a firului pentru a defini forma acoperișului. Valoarea implicită pentru unghi este de 45 și lista este completată automat pentru a se potrivi cu numărul de muchii din fir.

Exempluː

import Arch, Draft
rect = Draft.makeRectangle(30,40)
Arch.makeRoof(rect,angles=[30.,])