Jump to content

Ceiling diffusers in between distances X2X basis


Recommended Posts

Posted

 

Dear all,

 

First of all sorry for my poor English….

 

I am HVAC Draftsman. For purpose of project designing (Meeting room, Bed rooms, Lounge, Hall etc.) I have to make square ceiling diffusersor, round diffusers in between distances X2X basis

I don’t know how to create lisp routine. If someone help me to create lisp routine as I want, it will be greatly appriciated

 

lisp routine will work in below stages

 

Stage: 1

 

1) Two folders will be created to linked with lisp routine

Folder no.1- Square Diffusers (it will carry different sizes of square diffusers like 6x6" , 9x9", 12x12" 15x15" and 21x21")

Folder no.2- round diffusers (it will carry round diffusers like dia 6", 8" ,10", 12", 14", 16", 18", 20")

 

Stage: 2

 

1) select area (bed room or hall) by window

2) then choose how many rows you need of diffusers (for example 3 rows)

3) then choose how many column you need of diffusers (for example 3 column) (in this case total no. of diffuser will be 6 in particular room divided in X 2 X sequence)

4) then which size of ceiling diffusers you want to insert. (for 6x6" square ceiling diffuser TYPE 6, for round ceiling diffuser TYPE R6)

 

Thanks in advance..

Posted

Have you tried using AutoCAD's array command? It sounds like this would accomplish what you want to do. Just insert the block for whatever diffuser you need, and then perform the array command.

Posted

You could go a step further and create a dynamic block for each of the two types of diffusers that incorporate all the different sizes. Insert one block select the size then array.

Posted

I think I get what you want pick two sides pick a diffuser and it arrays them working out the correct spacing.

Screen Shot 02-10-16 003.PNG

Posted

Dear all,

 

I tried array but i m not getting as i want, it's consuming more time, and its not distributing X2X sequence, it's distributing equal spacing.

Posted

Please find attached pic, actually it will be look like this when it will be x2x distances.

DIFFUSERS X2X DISTANCES.jpg

Posted

Diffusers must be inserted in order of Supply and Return and so on but if the return air goes through another system / apparatus so the all Diffusers would be with Supply type.

Posted
diffusers must be inserted in order of supply and return and so on but if the return air goes through another system / apparatus so the all diffusers would be with supply type.

 

the return air will be through 'return air grill' as a free return.

Posted
the return air will be through 'return air grill' as a free return.

Yes, that's what I meant in my last reply with the word apparatus.

  • 2 weeks later...
  • 3 weeks later...
Posted

CAD USER,

 

You might experiment with something like this to get you started. You will need to change the directory to point to where your blocks are located and enter that at the setq for "blk".

 

(defun c:X2X (/ blk rows cols pt1 pt2 rmhgt rmwdth x y offxy)

(setq rows (getint "\nEnter Number of ROWS: ")
     cols (getint "\nEnter Number of COLUMNS: ")
     pt1 (getpoint "\nPick Lower Left Point: ")
     pt2 (getpoint pt1 "\nPick Upper Right Point: ")
     rmhgt (- (cadr pt2)(cadr pt1))
     rmwdth (-(car pt2)(car pt1))
     x (/ rmwdth cols)
     y (/ rmhgt rows)
     offxy (list (+ (car pt1) (/ x 2)) (+ (cadr pt1) (/ y 2)))
     blk (getfiled "Select Block to Insert" [color=red]"c:\\Users\\CAD\\"[color=black] "dwg"[/color][/color] 10)[color=red];; CHANGE AS NEEDED[/color]
)

(command "._insert" blk "_non" offxy "" "" "")

(command "._array" (entlast) "" "R" rows cols y x)

(princ)

)

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...