Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/04/2020 in all areas

  1. Rave for your info, the J bolt is probably bent cold so the radius is probably to tight its been a while since I did rebar, but there will be a rule about rad * x I would use say 4 * bar dia.
    1 point
  2. BASEplates. That refers to a plate located at the base (i.e. - bottom) of a column. There are beams at the top of the columns as well as metal decking. Then a poured concrete roof.
    1 point
  3. I would draw the rebar at the bottom of the footing "U" shaped then extend the rebar in the pier down into the footing and add a hook pointing outward. Make this rebar overlap the "U" rebar by 2". Didn't P-F give you an example to refer to as part of the structural project?
    1 point
  4. another, delta (defun c:tt (/ p1 p2 en obj ) (and (setq p1 (getpoint "Specify point ")) (setq p2 (getcorner p1 "opposite corner ")) (setq en (entmakex (list '(0 . "LINE") (cons 10 p1) (cons 11 p2)))) (setq obj (vlax-ename->vla-object en)) (princ (strcat "\nArea=" (rtos (apply '* (mapcar '(lambda (a b) (+ a (abs b))) '(0 0) (vlax-get obj 'delta) ) ) 2 3 ) " M\U+00B2" ) ) (entdel en) ) (princ) ) WCS
    1 point
  5. Area on the fly. (defun c:aof (/ 1p 2p) ;; aof = Area on the fly. ;; (and (setq 1p (getpoint "\nSpecify base point : ")) (setq 2p (getcorner "\nOpposite point : " 1p)) (princ (* (distance 1p (list (car 2p) (cadr 1p))) (distance 2p (list (car 2p) (cadr 1p)))) ) ) (princ) )
    1 point
×
×
  • Create New...