User:Suraj/gsoc proposal

From BRL-CAD
  • Name: Suraj
  • IRC nick: SurajDadral

Brief Background Information

I am B.Tech. (2nd year), Computer Science student of Guru Nanak Dev Engineering College, India. Practiced in writing code in C/C++, Python and used Git, Qt, Django, Make, Jekyll and PySide.

I solved an issue with Rebar Addon and here is merged PR: https://github.com/amrit3701/FreeCAD-Reinforcement/pull/11

I worked on GeoData workbench of FreeCAD and added support for links from popular maps to import OSM (OpenStreetMap) using core functionality of GeoData workbench.

Related discussion: https://forum.freecadweb.org/viewtopic.php?f=3&t=27803

Merged PR: https://github.com/microelly2/geodata/pull/10


Project Information

Project Title: Automate Reinforcement Process in FreeCAD

Brief Project Summary

My project is to automate Reinforcement process by using Rebar Addon in FreeCAD. The idea is to create UI and functions on top of the current implementation to combine different types of Rebars in a single Dialog Box as per the user requirements. For example, combine Stirrups and Rebars (different types of rebars) in case of Beam Reinforcement.

Detailed Project Description

Current Scenario in FreeCAD

  1. There is no provision to create straight rebars in a circular column as discussed here: https://forum.freecadweb.org/viewtopic.php?f=8&t=22760&start=230#p186507

  2. To create Reinforcement in a single Beam or Column, user needs to do a lot of work like creating Stirrups, Rebars and perform all calculations involved manually.

  3. If user decides to make changes in any parameter of Beam/Column Reinforcement like Cover of Stirrup, he/she needs to manually adjust Cover and Spacing of all Rebars provided. Doing so manually needs efforts never less than applying Reinforcement from Scratch and involves lots of calculations. And obviously, there are going to be number of Beams/Columns in a building and no one wants to apply Reinforcement to all Beams/Columns manually. So, this is a very time consuming task.
    Example: You can see below how the things went wrong after modifying covering of Stirrup.

    ModifyCoverofStirrup.png


Example: In case of Beam Reinforcement

  1. To create reinforcement in a Beam, user has to do following steps:

    • Select face of the beam and create stirrups.

      BeamReinforcementImage1.png
      BeamReinforcementImage2.png

    • To create rebars, first user needs to select one of the face, perpendicular to previously selected face and then calculate ‘Front Cover’ and ‘Top/Bottom Cover’ based on the values of Rounding and Top/Bottom/Left/Right Cover of the stirrups. And this should be done for all four sides. And this will produce single layered Reinforcement in Beam as follow:

      BeamReinforcementImage3.png
      BeamReinforcementImage4.png

  2. To create multi-layered Reinforcement in a Beam, user needs to do following steps:

    • Create Reinforcement as discussed above.

    • Create Spacer Reinforcement for new layer. While creating this, user needs to perform calculations to adjust cover and spacing of Spacer Rebars.

      BeamReinforcementImage5.png

    • Create Rebars of new layer:

      BeamReinforcementImage6.png

    • Now to create each new layer of Reinforcement, user needs to repeat Step II and III and perform all calculations manually.

      BeamReinforcementImage7.png


Proposed solution to the problem

To solve above mentioned issues, an interactive UI will be developed on top of the current implementation of Rebar Addon in FreeCAD.

  • Dialog Box will be developed where user will input the required data as per the design requirements.

  • When the user will press apply button, this input data will be passed to functions makeStirrup(), makeStraightRebar(), makeLShapeRebar(), makeUShapeRebar() etc. of the Rebar Addon as per the requirements.

  • The Reinforcement will be created using core functionality of the Rebar Addon.

  • To edit Reinforcement provided, user will double click on created Reinforcement object. Then he/she will be shown same Dialog Box as while creating Reinforcement. And then user can make changes and apply them as did before.

  • There will be a Dialog Box, using which user can create straight and L-Shaped rebars in a circular column.