Poradnik: Przykład płyty o rozpiętości w jednym kierunku

From FreeCAD Documentation
Revision as of 17:40, 22 November 2021 by Kaktus (talk | contribs) (Created page with "Poradnik: Przykład płyty o rozpiętości w jednym kierunku")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Other languages:
Tutorial
Topic
Example Slab Spanning in One Direction
Level
Intermediate
Time to complete
Authors
Shiv Charan
FreeCAD version
0.20
Example files
See also
None

Description

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

This command is part of the Reinforcement Workbench, an external workbench that can be installed with the Addon Manager via the Tools → Addon manager → Reinforcement menu.

In this example we will create Slab Reinforcement for Slab spanning in one direction as shown in below figure.

A Example of Slab Reinforcement of spanning in one direction in Slab Arch Structure

Right view of the given Slab Reinforcement example

Front view of the given Slab Reinforcement example

Usage

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) In example Bottom is selected.

5. Select the StraightRebar 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 on Next button or select Cross Rebars in list view.

7. Now select BentShapeRebar rebar type and other desired data for input data for rebars 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 Used for Slab Spanning in One direction

Properties for Rebars in Parallel Direction to selected face:

  • DANEMesh Cover Along: It represent alignment of rebar mesh along top or bottom face of structure. It can have two values "Top" and "Bottom".
  • DANERebar Type: Type of rebar for parallel rebars for slab reinforcement. It can have four values 'StraightRebar', 'LShapeRebar', 'UShapeRebar', 'BentShapeRebar'.
  • DANEFront Cover: The distance between parallel rebar and selected face.
  • DANELeft Cover: The distance between the left end of the parallel rebar to the left face of the structure.
  • DANERight Cover: The distance between the right end of the parallel rebar to right face of the structure.
  • DANEBottom Cover: The distance between parallel rebars from the bottom face of the structure.
  • DANETop Cover: The distance between parallel rebars from the top face of the structure.
  • DANERear Cover: Rear cover for slab reinforcement of parallel rebars.
  • DANEDiameter: Diameter of parallel rebars
  • DANEAmount: It contains count of parallel rebars.
  • DANESpacing: It contains spacing between parallel rebars.

Properties for Rebars in Cross Direction to selected face:

  • DANERebar Type: Type of rebar for cross rebars for slab reinforcement. It can have four values 'StraightRebar', 'LShapeRebar', 'UShapeRebar', 'BentShapeRebar'.
  • DANEFront Cover: The distance between cross rebar and selected face.
  • DANELeft Cover: The distance between the left end of the cross rebar to the left face of the structure.
  • DANERight Cover: The distance between the right end of the cross rebar to right face of the structure.
  • DANEBottom Cover: The distance between cross rebars from the bottom face of the structure.
  • DANETop Cover: The distance between cross rebars from the top face of the structure.
  • DANERear Cover: Rear cover for slab reinforcement of cross rebars.
  • DANEAnchor Length: It represents arm's length of bent shape cross rebar when cross rebar type is BentShapeRebar.
  • DANEBent Angle: It represents angle for bent shape cross rebar when cross rebar type is BentShapeRebar.
  • DANERounding: A rounding value to be applied to the corners of the bars, expressed in times of diameter of cross rebars.
  • DANEDiameter: Diameter of cross rebars
  • DANEAmount: It contains count of cross rebars.
  • DANESpacing: It contains spacing between cross rebars.

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

  • DANEAmount: It contains count of Distribution Rebars for Bent shape rebars in cross Direction.
  • DANESpacing: It contains spacing between Distribution Rebars for Bent shape rebars in cross Direction.

Scripting

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

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

Create Slab Reinforcementof Slab Spanning in One direction

To create Slab reinforcement spanning one direction as shown in above figures you can use makeSlabReinforcement function as follows:

from SlabReinforcement.SlabReinforcement import makeSlabReinforcement
SlabReinforcementGroup = makeSlabReinforcement(
    parallel_rebar_type="StraightRebar",
    parallel_front_cover=20,
    parallel_rear_cover=20,
    parallel_left_cover=10,
    parallel_right_cover=10,
    parallel_top_cover=30,
    parallel_bottom_cover=20,
    parallel_diameter=8,
    parallel_amount_spacing_check=False,
    parallel_amount_spacing_value=50,
    cross_rebar_type="BentShapeRebar",
    cross_front_cover=20,
    cross_rear_cover=20,
    cross_left_cover=10,
    cross_right_cover=10,
    cross_top_cover=29,
    cross_bottom_cover=20,
    cross_diameter=8,
    cross_amount_spacing_check=True,
    cross_amount_spacing_value=10,
    cross_rounding=2,
    cross_bent_bar_length=150,
    cross_bent_bar_angle=135,
    cross_distribution_rebars_check = True,
    cross_distribution_rebars_diameter = 8,
    cross_distribution_rebars_amount_spacing_check = True,
    cross_distribution_rebars_amount_spacing_value = 4,
    mesh_cover_along = "Bottom",
    structure=App.getDocument("slab").getObject("Beam"),
    facename='Face4',
)
  • Creates a SlabReinforcementGroup object for slab spanning in one direction 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 used for slab spanning in one direction for scripting reinforcement

Properties for Rebars in Parallel Direction to selected face:

  • DANEparallel_rebar_type: Type of rebar for parallel rebars for slab reinforcement. It can have four values 'StraightRebar', 'LShapeRebar', 'UShapeRebar', 'BentShapeRebar'.
  • DANEparallel_front_cover: The distance between parallel rebar and selected face.
  • DANEparallel_rear_cover: Rear cover for slab reinforcement of parallel rebars.
  • DANEparallel_left_cover: The distance between the left end of the parallel rebar to the left face of the structure.
  • DANEparallel_right_cover: The distance between the right end of the parallel rebar to right face of the structure.
  • DANEparallel_top_cover: The distance between parallel rebars from the top face of the structure.
  • DANEparallel_bottom_cover: The distance between parallel rebars from the bottom face of the structure.
  • DANEparallel_diameter: Diameter of parallel rebars.
  • DANEparallel_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.
  • DANEparallel_amount_spacing_value: It contains count of rebars or spacing between parallel rebars based on value of amount_spacing_check.

Properties for Rebars in Cross Direction to selected face:

  • DANEcross_rebar_type: Type of rebar for cross rebars for slab reinforcement. It can have four values 'StraightRebar', 'LShapeRebar', 'UShapeRebar', 'BentShapeRebar'.
  • DANEcross_front_cover: The distance between cross rebar and cross_face (face perpendicular to selected face).
  • DANEcross_rear_cover: Rear cover for slab reinforcement of cross rebars.
  • DANEcross_left_cover: The distance between the left end of the cross rebar to the left face of the structure.
  • DANEcross_right_cover: The distance between the right end of the rebar to right face of the structure relative to cross_face.
  • DANEcross_top_cover: The distance between cross rebar from the top face of the structure.
  • DANEcross_bottom_cover: The distance between cross rebar from the bottom face of the structure.
  • DANEcross_diameter: Diameter of cross rebars.
  • DANEcross_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.
  • DANEcross_amount_spacing_value: It contains count of rebars or spacing between rebars based on value of cross_amount_spacing_check.
  • DANEcross_rounding: A rounding value to be applied to the corners of the bars, expressed in times the cross_diameter.
  • DANEcross_bent_bar_length: It represents arm's length of bent shape cross rebar when cross_rebar_type is BentShapeRebar
  • DANEcross_bent_bar_angle: It represents angle for bent shape cross rebar when cross_rebar_type is BentShapeRebar
  • DANEcross_distribution_rebars_check: If True add distribution rebars for cross bent shape rebars. Default is False.
  • DANEcross_distribution_rebars_diameter: Diameter for distribution rebars for cross bent shape rebars.
  • DANEcross_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.
  • DANEcross_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:

  • DANEmesh_cover_along: It can have two values "Top" and "Bottom". It represent alignment of rebar mesh along top or bottom face of structure.
  • DANEstructure: Arch structure object. Default is None
  • DANEfacename: selected face of structure. Default is None

Edition of Slab Reinforcement of Slab Spanning in one direction

You can change the properties of the Slab Reinforcement for slab spanning in one direction by using editSlabReinforcement function as follows

from SlabReinforcement.SlabReinforcement import editSlabReinforcement
SlabReinforcementGroup = editSlabReinforcement(
    SlabReinforcementGroup,
    parallel_rebar_type="StraightRebar",
    parallel_front_cover=20,
    parallel_rear_cover=20,
    parallel_left_cover=10,
    parallel_right_cover=10,
    parallel_top_cover=30,
    parallel_bottom_cover=20,
    parallel_diameter=8,
    parallel_amount_spacing_check=True,
    parallel_amount_spacing_value=10,
    cross_rebar_type="BentShapeRebar",
    cross_front_cover=20,
    cross_rear_cover=20,
    cross_left_cover=10,
    cross_right_cover=10,
    cross_top_cover=20,
    cross_bottom_cover=20,
    cross_diameter=8,
    cross_amount_spacing_check=True,
    cross_amount_spacing_value=15,
    cross_rounding=2,
    cross_bent_bar_length=150,
    cross_bent_bar_angle=135,
    cross_distribution_rebars_check = True,
    cross_distribution_rebars_diameter = 8,
    cross_distribution_rebars_amount_spacing_check = True,
    cross_distribution_rebars_amount_spacing_value = 4,
    mesh_cover_along = "Bottom",
    structure=App.getDocument("slab").getObject("Beam"),
    facename='Face4',
)
  • slabReinforcementGroup is a previously created Slab Reinforcement group object.
  • The other parameters are the same as required by the makeSingleTieFourRebars() function.

you can change any property to edit Slab Reinforcement.