Drawing Rebar Question

Drawing Rebar Question

Anonymous
Not applicable
11,373 Views
8 Replies
Message 1 of 9

Drawing Rebar Question

Anonymous
Not applicable

New AutoCad user here so bear with me please.  What's the best way to draw rebar exactly like the picture below?  Is there an app or how does everyone do it?

 

1.PNG

0 Likes
Accepted solutions (2)
11,374 Views
8 Replies
Replies (8)
Message 2 of 9

Anonymous
Not applicable

We single line it like we did when we drew with pencils, with a custom linetype of a long dash with a short gap.

0 Likes
Message 3 of 9

john.vellek
Alumni
Alumni

Hi @Anonymous,

 

If you do this repeatedly, you might consider a dynamic block that you can stretch for height and length. If this is more infrequent, I like to do it with a polyline.

 

Does this answer the question or do you need more than this?  Give me some details on where you are stuck and I will try to give you some suggestions.

 

 

Please select the Accept as Solution button if my post solves your issue or answers your question.


John Vellek


Join the Autodesk Customer Council - Interact with developers, provide feedback on current and future software releases, and beta test the latest software!

Autodesk Knowledge Network | Autodesk Account | Product Feedback
Message 4 of 9

dgorsman
Consultant
Consultant

Seconded on the dynamic blocks.  Heck, you could even throw in a single/double line visibility state.

----------------------------------
If you are going to fly by the seat of your pants, expect friction burns.
"I don't know" is the beginning of knowledge, not the end.


Message 5 of 9

Anonymous
Not applicable

I would be doing this pretty often for most of my drawings.  What would be the best way to create the dynamic block(s)?  Does anybody have any examples they use for rebar?

 

Thanks

- Cody

0 Likes
Message 6 of 9

john.vellek
Alumni
Alumni
Accepted solution

Hi @Anonymous,

 

Here is a really crude example of a dynamic block that can be stretched in two directions horizontally.

 

This type of function might be useful or you could have predefined sizes in visibility states or in lookup tables.

 

For more on dynamic blocks, if this looks promising, I suggest you go to the Community forum for AutoCAD Dynamic Blocks.

 

 

Please select the Accept as Solution button if my post solves your issue or answers your question.


John Vellek


Join the Autodesk Customer Council - Interact with developers, provide feedback on current and future software releases, and beta test the latest software!

Autodesk Knowledge Network | Autodesk Account | Product Feedback
0 Likes
Message 7 of 9

Pointdump
Consultant
Consultant
Accepted solution

Cody,

 

"Is there an app..."?

 

Piles of 'em! In the App Store do a search for <<<Rebar>>> or <<<Concrete>>>.

 

Dave

Dave Stoll
Las Vegas, Nevada

EESignature

64GB DDR4 2400MHz ECC SoDIMM / 1TB SSD
NVIDIA Quadro P5000 16GB
Windows 10 Pro 64 / Civil 3D 2025
0 Likes
Message 8 of 9

Anonymous
Not applicable

Thanks everyone for the replies.  I ended up making a dynamic block and it's working well.  I'm also testing out the app autorebar, which seems to work equally well.

 

Thank you,

Cody

0 Likes
Message 9 of 9

hencoop
Advisor
Advisor

We also draw our rebar as single polylines and use colors for thickness (and plot with .ctb  files).  Alternatively, if you give the polylines width equal to the actual diameter of the rebar they will always be to exact scale regardless of color.  Circles used for rebar in section will need to be converted to donuts with appropriate diameter and width.  Such presentations will plot 1x width larger than the diameter which is also 1/2x width larger than the radius.

 

We have a lisp program that draws polylines and circles w/o width in slab and wall sections. The edges selected to create rebar for must be heavy polylines, not LWPOLYLINES.  CONVERTPOLY can make them heavy if necessary.

 

The program REBAR.LSP  can be found here along with any supporting subroutines: ParaCADD.com (free lisp links on left sidebar)

 

 

;;;REBAR - Draws rebar at specified spacing in already drawn slabs and walls
;;;
;;;RCORNER - Draws rebar at intersecting corners
;;;
;;;RHOOK - Draws individual rebar hooks
;;;
;;;REBARPL - Draws circles (rebar in section) along the selected side of a polyline
;;; and sets the layer of the selected polyline to match the circles created. ;;; ;;;****************************************************************************

Commands/functions defined: c:rcorner, c:rebar, c:rebarpl, c:rhook, make_rebar_group, rebar_error

Requires: mklayr.lsp, uangle.lsp, ukword.lsp, upoint.lsp, ureal.lsp

MKLAYR.LSP Requires additional subroutines which are listed under it on this page: http://paracadd.com/lisp/lisp_lst.htm

 

Put the lisp files in a folder included on your Support File Search Path and make it a trusted location to avoid security questions when they load.

 

Rebar.jpg

AutoCAD User since 1989. Civil Engineering Professional since 1983
Product Version: 13.6.1963.0 Civil 3D 2024.4.1 Update Built on: U.202.0.0 AutoCAD 2024.1.6
                        27.0.37.14 Autodesk AutoCAD Map 3D 2024.0.1
                        8.6.52.0 AutoCAD Architecture 2024
0 Likes