How to Draw a Downward Spiral in Autocad 2d
Welcome to EDAboard.com
Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.
- Analog Design
- RF, Microwave, Antennas and Optics
You should upgrade or use an alternative browser.
help in drawing log spiral antenna
- Thread starter elmo558
- Start date
- Status
- Not open for further replies.
- #1
- Joined
- Aug 29, 2005
- Messages
- 2
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,311
Hi,
I am having difficulties in trying to draw out the geometry of the log spiral antenna. I wanted to produce a mask for the log spiral antenna geometry, so the gemetry needs to be in .dwg format. Can I use those typical drawing software like AutoCad to draw out the geometry.
Thks
- #2
vfone
Advanced Member level 5
- Joined
- Oct 10, 2001
- Messages
- 5,446
- Helped
- 1,569
- Reputation
- 3,141
- Reaction score
- 1,178
- Trophy points
- 1,393
- Activity points
- 34,542
You can use AutoCAD because this program knows .dwg format. Also probably you can use .dxf format that a lot of EM software's can recognize.
- #3
- Joined
- Aug 29, 2005
- Messages
- 2
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,311
Can I just enter the spiral equation and get Autocad to draw the log spiral geometry for me. If not, is there any special software for this purpose?
Added after 6 minutes:
Attached is the .jpg format of the log spiral drawing I am trying to draw. Can anyone teach me how do I generate this gepmetry in *.dwg or *.dfx format.
thks in advance.
- #4
- Joined
- Feb 21, 2004
- Messages
- 44
- Helped
- 5
- Reputation
- 10
- Reaction score
- 3
- Trophy points
- 1,288
- Activity points
- 402
you must write a program by youself.
or plot the spiral points one by one.....
- #5
- Joined
- Aug 3, 2005
- Messages
- 810
- Helped
- 241
- Reputation
- 482
- Reaction score
- 123
- Trophy points
- 1,323
- Location
- INDIA
- Activity points
- 8,689
You have lot of options...
Use autocad or any good layout editors then export it as DXF file..
Then Simulate using Electromagnetic Simulators like Sonnet, IE3d, etc...
or Completely draw the log spiral layout & simulate in a single tool like AWR Microwave Office (Laout+EM Simulator)....
I attached typical Log spiral DXF file in compressed zip file for you...
- #6
SAJ25
Full Member level 4
- Joined
- Mar 13, 2007
- Messages
- 197
- Helped
- 22
- Reputation
- 44
- Reaction score
- 16
- Trophy points
- 1,298
- Activity points
- 2,121
do you have the autolisp program of log spiral antenna?
- #7
- Joined
- Mar 16, 2006
- Messages
- 26
- Helped
- 9
- Reputation
- 18
- Reaction score
- 4
- Trophy points
- 1,283
- Activity points
- 1,413
The following routine will draw you a 100-segment Archimedean spiral given by the polar equation
r=A*ang^(1/nn)
where the polar angle "ang" sweeps 0 rad to 3*pi rad.
When you draw the spiral simply select the curve, use "_pedit" command and then "w" to assign a track width.
;This code draws an Archimedean Spiral (defun c:spiral (/ seg ang cnt rad x y z point) (setq seg 100) (setq nn 0.6) (setq AA 0.1) (setq ang (/ (* 3 pi) seg)) (setq cnt 0) (command "_pline") (repeat (1+ seg) (setq x (* AA (expt (* cnt ang) (/ 1 nn)) (cos (* cnt ang)))) (setq y (* AA (expt (* cnt ang) (/ 1 nn)) (sin (* cnt ang)))) (setq point (list x y)) (command point) (setq cnt (1+ cnt)) ) (command "") (princ) (command "._zoom" "E") )
- #8
SAJ25
Full Member level 4
- Joined
- Mar 13, 2007
- Messages
- 197
- Helped
- 22
- Reputation
- 44
- Reaction score
- 16
- Trophy points
- 1,298
- Activity points
- 2,121
hi ozgur_io
thanks much!
if this code make a planner or linear spiral ?
if we want that this code automatically make a dxf code what should we do?
- #9
- Joined
- Mar 16, 2006
- Messages
- 26
- Helped
- 9
- Reputation
- 18
- Reaction score
- 4
- Trophy points
- 1,283
- Activity points
- 1,413
Above code gives you a 1D spiral curve. However by defining the width you can make it a 2D planar spiral strip.if this code make a planner or linear spiral ?
I'm not an expert on AutoCAD lisp routines so I don't know. I always do it manually...if we want that this code automatically make a dxf code what should we do?
- #10
SAJ25
Full Member level 4
- Joined
- Mar 13, 2007
- Messages
- 197
- Helped
- 22
- Reputation
- 44
- Reaction score
- 16
- Trophy points
- 1,298
- Activity points
- 2,121
hi ozgur_io
thanks for your help!
if we can change any arameter in exported object in hfss or not? any way exist?
- #11
- Joined
- Mar 16, 2006
- Messages
- 26
- Helped
- 9
- Reputation
- 18
- Reaction score
- 4
- Trophy points
- 1,283
- Activity points
- 1,413
Once imported, you cannot change any parameter in the layout. You can modify the objects by adding or substracting other objects but you cannot change the spiral parameters.
- #12
SAJ25
Full Member level 4
- Joined
- Mar 13, 2007
- Messages
- 197
- Helped
- 22
- Reputation
- 44
- Reaction score
- 16
- Trophy points
- 1,298
- Activity points
- 2,121
then i thinks that we should write a parametric Autolisp Code in Autocad in order to have Semi-parametric Simulation in HFSS!!!!!
- #13
- Joined
- Feb 9, 2009
- Messages
- 1
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,285
Hi,
I am having difficulties in trying to draw out the geometry of the log spiral antenna. I wanted to produce a mask for the log spiral antenna geometry using matlab program. Can somebody help to write a code.
Thanks!
- #14
SAJ25
Full Member level 4
- Joined
- Mar 13, 2007
- Messages
- 197
- Helped
- 22
- Reputation
- 44
- Reaction score
- 16
- Trophy points
- 1,298
- Activity points
- 2,121
Linas8
you should only use the method which ozgur_io suggest above!!
- Status
- Not open for further replies.
Similar threads
- log spiral antenna in CST
- Started by bikrader
- Replies: 8
- log spiral antenna in AUTOCAD
- Started by bacurrie45
- Replies: 0
- antenna log-spiral at HFSS
- Started by abdoula
- Replies: 0
- Log-periodic and spiral antennas
- Started by Vasis
- Replies: 2
- Analog Design
- RF, Microwave, Antennas and Optics
- This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.
Source: https://www.edaboard.com/threads/help-in-drawing-log-spiral-antenna.44824/
0 Response to "How to Draw a Downward Spiral in Autocad 2d"
Post a Comment