Jump to content

Elbow for hvac duct lisp


akgbmb

Recommended Posts

hi

i m looking lisp for elbow. consider 100mm inner Elbow radius

lisp need to following manner

 

Command: Elbow

Select Inner 1st line:

Select Outer 1st line:

Select Inner 2nd line:

Select Outer 2nd line:

 

refer attachment

LISP-ELBOW.jpg

Link to comment
Share on other sites

Here:

http://www.cadtutor.net/forum/showthread.php?30545-*FREE*-HVAC-or-Piping-program-for-AutoCAD

 

Which leads to the updated program here:

http://www.cadtutor.net/forum/showthread.php?10882-Need-better-multiline&p=670389&viewfull=1#post670389

 

Set up defaults by utilizing the Tool Palettes to preset the options for short/long radius, gored elbows, miter throat lengths, etc.

 

-TZ

Link to comment
Share on other sites

hi TZ Sir,

your 2nd lisp (WPIPE) is worthfull & its suitable for newly prepare duct drawing.....

but for editing purpose its not suitable. usually i am using following command

>fillet with 100 radius (inner side)

>offset inner side arc to outer arch

>line & trim command....

so i need make elbow essly......

 

if possible pls arrange

Link to comment
Share on other sites

There will be a duct lsp that does what you want to write one from scratch is not required, TZframpton has offreed a couple of suggestions, if you google you will find plenty more DUCT.lsp programs.

 

I I was doing it which I am not then it would be a pick 2 lines and enter width its not that hard, fairly basic lisp.

 

; an example of fillet 2 lines
(setq obj1 (entsel "Pick 1st line"))
(setq obj2 (entsel "pick 2nd line"))
(setvar "Filletrad" (getreal "enter radius"))
(command "fillet" obj1 obj2)
; your go here
; enter width do offset obj1 obj2 and redo fillet

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...