Arch Армировать плиту

From FreeCAD Documentation
This page is a translated version of the page Reinforcement SlabRebars and the translation is 6% complete.
Outdated translations are marked like this.
Other languages:

Армировать плиту

Системное название
Arch_Rebar_Slab_Reinforcement
Расположение в меню
Arch → Rebar tools → Slab Reinforcement
3D/BIM → Reinforcement tools → Slab Reinforcement
Верстаки
Arch
Быстрые клавиши
Нет
Представлено в версии
-
См. также
Reinforcement, Арматура по эскизу, Спиральная арматура

Описание

The Reinforcement SlabRebars tool allows the user to create reinforcing bars inside a Slab Arch Structure object.

This tool is part of the Reinforcement Workbench, an external workbench that can be installed with the Addon Manager.

A Example of Slab Reinforcement inside a Slab Arch Structure

Right view of the given Slab Reinforcement example

Front view of the given Slab Reinforcement example

Применение

1. Select any face of a previously created Slab Arch Structure object. as shown in below image.

Selected face for Slab Arch Structure

2. Then select Slab Reinforcement from the rebar tools.

3. A dialog box will pop-out on screen as shown below.

Dialog Box for the Slab Reinforcement

4. Select the desired type of cover of reinforcement mesh (Top or Bottom).

5. Select the desired rebar type and other input data for rebars in parallel direction of selected face as show in below image.

Dialog Box for Slab Reinforcement of the Rebars in parallel direction of selected face

6. Now click Next or select Cross Rebars in list view.

7. Now select desired data for input data for rabars in cross direction of selected face as show in below image.

Dialog Box for Slab Reinforcement of the Rebars in cross direction of selected face

8. Click OK or Apply or Finish to generate Slab reinforcement.

9. Click Cancel to exit the dialog box.

Properties

Properties for Rebars in Parallel Direction to selected face:

  • ДанныеMesh Cover Along: It represent alignment of rebar mesh along top or bottom face of structure. It can have two values "Top" and "Bottom".
  • ДанныеRebar Type: Type of rebar for parallel rebars for slab reinforcement. It can have four values 'StraightRebar', 'LShapeRebar', 'UShapeRebar', 'BentShapeRebar'.
  • ДанныеFront Cover: The distance between parallel rebar and selected face.
  • ДанныеLeft Cover: The distance between the left end of the parallel rebar to the left face of the structure.
  • ДанныеRight Cover: The distance between the right end of the parallel rebar to right face of the structure.
  • ДанныеBottom Cover: The distance between parallel rebars from the bottom face of the structure.
  • ДанныеTop Cover: The distance between parallel rebars from the top face of the structure.
  • ДанныеRear Cover: Rear cover for slab reinforcement of parallel rebars.
  • ДанныеAnchor Length: It represents arm's length of bent shape parallel rebar when parallel rebar type is BentShapeRebar.
  • ДанныеBent Angle: It represents angle for bent shape parallel rebar when parallel rebar type is BentShapeRebar.
  • ДанныеRounding: A rounding value to be applied to the corners of the bars, expressed in times of diameter of parallel rebars.
  • ДанныеDiameter: Diameter of parallel rebars
  • ДанныеAmount: It contains count of parallel rebars.
  • ДанныеSpacing: It contains spacing between parallel rebars.

Properties of Distribution Rebars for bent shape rebars in parallel Direction to selected face:

  • ДанныеAmount: It contains count of Distribution Rebars for Bent shape rebars in parallel Direction.
  • ДанныеSpacing: It contains spacing between Distribution Rebars for Bent shape rebars in parallel Direction.

Properties for Rebars in Cross Direction to selected face:

  • ДанныеRebar Type: Type of rebar for cross rebars for slab reinforcement. It can have four values 'StraightRebar', 'LShapeRebar', 'UShapeRebar', 'BentShapeRebar'.
  • ДанныеFront Cover: The distance between cross rebar and selected face.
  • ДанныеLeft Cover: The distance between the left end of the cross rebar to the left face of the structure.
  • ДанныеRight Cover: The distance between the right end of the cross rebar to right face of the structure.
  • ДанныеBottom Cover: The distance between cross rebars from the bottom face of the structure.
  • ДанныеTop Cover: The distance between cross rebars from the top face of the structure.
  • ДанныеRear Cover: Rear cover for slab reinforcement of cross rebars.
  • ДанныеAnchor Length: It represents arm's length of bent shape cross rebar when cross rebar type is BentShapeRebar.
  • ДанныеBent Angle: It represents angle for bent shape cross rebar when cross rebar type is BentShapeRebar.
  • ДанныеRounding: A rounding value to be applied to the corners of the bars, expressed in times of diameter of cross rebars.
  • ДанныеDiameter: Diameter of cross rebars
  • ДанныеAmount: It contains count of cross rebars.
  • ДанныеSpacing: It contains spacing between cross rebars.

Properties of Distribution Rebars for bent shape rebars in cross Direction to selected face:

  • ДанныеAmount: It contains count of Distribution Rebars for Bent shape rebars in cross Direction.
  • ДанныеSpacing: It contains spacing between Distribution Rebars for Bent shape rebars in cross Direction.

Программирование

See also: Arch API, Reinforcement API and FreeCAD Scripting Basics.

The Reinforcement SlabRebars tool can be used from the Python console by using the following function:

Create Slab Reinforcement

from SlabReinforcement.SlabReinforcement import makeSlabReinforcement
SlabReinforcementGroup = makeSlabReinforcement(
    parallel_rebar_type,
    parallel_front_cover,
    parallel_rear_cover,
    parallel_left_cover,
    parallel_right_cover,
    parallel_top_cover,
    parallel_bottom_cover,
    parallel_diameter,
    parallel_amount_spacing_check,
    parallel_amount_spacing_value,
    cross_rebar_type,
    cross_front_cover,
    cross_rear_cover,
    cross_left_cover,
    cross_right_cover,
    cross_top_cover,
    cross_bottom_cover,
    cross_diameter,
    cross_amount_spacing_check,
    cross_amount_spacing_value,
    cross_rounding = 2,
    cross_bent_bar_length = 50,
    cross_bent_bar_angle = 135,
    cross_l_shape_hook_orintation = "Alternate",
    cross_distribution_rebars_check = False,
    cross_distribution_rebars_diameter = 8,
    cross_distribution_rebars_amount_spacing_check = True,
    cross_distribution_rebars_amount_spacing_value = 2,
    parallel_rounding = 2,
    parallel_bent_bar_length = 50,
    parallel_bent_bar_angle = 135,
    parallel_l_shape_hook_orintation = "Alternate",
    parallel_distribution_rebars_check = False,
    parallel_distribution_rebars_diameter = 8,
    parallel_distribution_rebars_amount_spacing_check = True,
    parallel_distribution_rebars_amount_spacing_value = 2,
    mesh_cover_along = "Bottom",
    structure = None,
    facename = None,
)
  • Creates a SlabReinforcementGroup object from the given structure, which is a Slab Arch Structure, and facename, which is a face of that structure.
    • If no structure nor facename are given, it will take the user selected face as input.

Properties for Rebars in Parallel Direction to selected face:

  • Данныеparallel_rebar_type: Type of rebar for parallel rebars for slab reinforcement. It can have four values 'StraightRebar', 'LShapeRebar', 'UShapeRebar', 'BentShapeRebar'.
  • Данныеparallel_front_cover: The distance between parallel rebar and selected face.
  • Данныеparallel_rear_cover: Rear cover for slab reinforcement of parallel rebars.
  • Данныеparallel_left_cover: The distance between the left end of the parallel rebar to the left face of the structure.
  • Данныеparallel_right_cover: The distance between the right end of the parallel rebar to right face of the structure.
  • Данныеparallel_top_cover: The distance between parallel rebars from the top face of the structure.
  • Данныеparallel_bottom_cover: The distance between parallel rebars from the bottom face of the structure.
  • Данныеparallel_diameter: Diameter of parallel rebars.
  • Данныеparallel_amount_spacing_check: If is set to True, then value of parallel_amount_spacing_value is used as rebars count else parallel_amount_spacing_value's value is used as spacing in parallel rebars.
  • Данныеparallel_amount_spacing_value: It contains count of rebars or spacing between parallel rebars based on value of amount_spacing_check.
  • Данныеparallel_rounding: A rounding value to be applied to the corners of the bars, expressed in times the parallel_diameter.
  • Данныеparallel_bent_bar_length: It represents arm's length of bent shape parallel rebar when parallel_rebar_type is BentShapeRebar
  • Данныеparallel_bent_bar_angle: It represents angle for bent shape parallel rebar when parallel_rebar_type is BentShapeRebar
  • Данныеparallel_l_shape_hook_orintation: It represents orintation of hook of parallel L-Shape rebar if parallel_rebar_type is LShapeRebar. It can have three values "Left", "Right","Alternate"
  • Данныеparallel_distribution_rebars_check: If True add distribution rebars for parallel bent shape rebars. Default is False.
  • Данныеparallel_distribution_rebars_diameter: Diameter of distribution rebars for parallel bent shape rebars.
  • Данныеparallel_distribution_rebars_amount_spacing_check: If is set to True, then value of parallel_distribution_rebars_amount_spacing_value is used as rebars count else parallel_distribution_rebars_amount_spacing_value's value is used as spacing in parallel_distribution_rebars. Default is True.
  • Данныеparallel_distribution_rebars_amount_spacing_value: It contains count or spacing between distribution rebars for one side of parallel bent shape rebars based on value of parallel_distribution_rebars_check. Default is 2.

Properties for Rebars in Cross Direction to selected face:

  • Данныеcross_rebar_type: Type of rebar for cross rebars for slab reinforcement. It can have four values 'StraightRebar', 'LShapeRebar', 'UShapeRebar', 'BentShapeRebar'.
  • Данныеcross_front_cover: The distance between cross rebar and cross_face (face perpendicular to selected face).
  • Данныеcross_rear_cover: Rear cover for slab reinforcement of cross rebars.
  • Данныеcross_left_cover: The distance between the left end of the cross rebar to the left face of the structure.
  • Данныеcross_right_cover: The distance between the right end of the rebar to right face of the structure relative to cross_face.
  • Данныеcross_top_cover: The distance between cross rebar from the top face of the structure.
  • Данныеcross_bottom_cover: The distance between cross rebar from the bottom face of the structure.
  • Данныеcross_diameter: Diameter of cross rebars.
  • Данныеcross_amount_spacing_check: If is set to True, then value of cross_amount_spacing_value is used as rebars count else cross_amount_spacing_value's value is used as spacing in rebars.
  • Данныеcross_amount_spacing_value: It contains count of rebars or spacing between rebars based on value of cross_amount_spacing_check.
  • Данныеcross_rounding: A rounding value to be applied to the corners of the bars, expressed in times the cross_diameter.
  • Данныеcross_bent_bar_length: It represents arm's length of bent shape cross rebar when cross_rebar_type is BentShapeRebar
  • Данныеcross_bent_bar_angle: It represents angle for bent shape cross rebar when cross_rebar_type is BentShapeRebar
  • Данныеcross_l_shape_hook_orintation: It represents orintation of hook of cross L-Shape rebar if cross_rebar_type is LShapeRebar. It can have three values "Left", "Right", "Alternate"
  • Данныеcross_distribution_rebars_check: If True add distribution rebars for cross bent shape rebars. Default is False.
  • Данныеcross_distribution_rebars_diameter: Diameter for distribution rebars for cross bent shape rebars.
  • Данныеcross_distribution_rebars_amount_spacing_check: If is set to True, then value of cross_distribution_rebars_amount_spacing_value is used as rebars count else cross_distribution_rebars_amount_spacing_value's value is used as spacing in cross_distribution_rebars. Default is True.
  • Данныеcross_distribution_rebars_amount_spacing_value: It contains count or spacing between distribution rebars for one side of cross bent shape rebars based on value of cross_distribution_rebars_check. Default is 2.

Common Properties for Parallel and Cross Rebars:

  • Данныеmesh_cover_along: It can have two values "Top" and "Bottom". It represent alignment of rebar mesh along top or bottom face of structure.
  • Данныеstructure: Arch structure object. Default is None
  • Данныеfacename: selected face of structure. Default is None

Edition of Slab Reinforcement

You can change the properties of the Slab Reinforcement with the following function:

from SlabReinforcement.SlabReinforcement import editSlabReinforcement
slabReinforcementGroup = editSlabReinforcement(
    slabReinforcementGroup,
    parallel_rebar_type,
    parallel_front_cover,
    parallel_rear_cover,
    parallel_left_cover,
    parallel_right_cover,
    parallel_top_cover,
    parallel_bottom_cover,
    parallel_diameter,
    parallel_amount_spacing_check,
    parallel_amount_spacing_value,
    cross_rebar_type,
    cross_front_cover,
    cross_rear_cover,
    cross_left_cover,
    cross_right_cover,
    cross_top_cover,
    cross_bottom_cover,
    cross_diameter,
    cross_amount_spacing_check,
    cross_amount_spacing_value,
    cross_rounding = 2,
    cross_bent_bar_length = 50,
    cross_bent_bar_angle = 135,
    cross_l_shape_hook_orintation = "Alternate",
    cross_distribution_rebars_check = False,
    cross_distribution_rebars_diameter = 8,
    cross_distribution_rebars_amount_spacing_check = True,
    cross_distribution_rebars_amount_spacing_value = 2,
    parallel_rounding = 2,
    parallel_bent_bar_length = 50,
    parallel_bent_bar_angle = 135,
    parallel_l_shape_hook_orintation = "Alternate",
    parallel_distribution_rebars_check = False,
    parallel_distribution_rebars_diameter = 8,
    parallel_distribution_rebars_amount_spacing_check = True,
    parallel_distribution_rebars_amount_spacing_value = 2,
    mesh_cover_along: str = "Bottom",
    structure = None,
    facename = None,
)
  • slabReinforcementGroup is a previously created Slab Reinforcement group object.
  • The other parameters are the same as required by the makeSlabReinforcement() function.

Examples for Slab Reinforcement