Continue to Site

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.

help in drawing log spiral antenna

Status
Not open for further replies.

elmo558

Newbie level 2
Joined
Aug 29, 2005
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,311
how to draw a spiral in autocad

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
 

log spiral antenna

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.
 

logarithmic spiral antenna

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.
 

spiral antenna

you must write a program by youself.

or plot the spiral points one by one.....
 

log spiral

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

    elmo558

    Points: 2
    Helpful Answer Positive Rating
spiral drawing

do you have the autolisp program of log spiral antenna?
 

draw spiral autocad

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.

Code:
;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")
)
 

archimedean spiral autocad

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?
 

log spiral

jafargholi said:
if this code make a planner or linear spiral ?
Above code gives you a 1D spiral curve. However by defining the width you can make it a 2D planar spiral strip.

jafargholi said:
if we want that this code automatically make a dxf code what should we do?
I'm not an expert on AutoCAD lisp routines so I don't know. I always do it manually...
 

draw a spiral

hi ozgur_io
thanks for your help!

if we can change any arameter in exported object in hfss or not? any way exist?
 

2d spiral dxf

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.
 

draw spiral in autocad

then i thinks that we should write a parametric Autolisp Code in Autocad in order to have Semi-parametric Simulation in HFSS!!!!!
 

log-spiral antenna

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!
 

antenna drawings .dwg

Linas8
you should only use the method which ozgur_io suggest above!!
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top