Sei sulla pagina 1di 11

Introduzione agli

Algoritmi Genetici

Università di Roma Tor Vergata

G. Marrocco L. Mattioni

Problema di Ottimizzazione
! = {!1 , !2 ,..., !K } Set dei parametri modificabili (geometrici, elettrici..)

!min
k " !k " !max
k Vincoli (spazio dei parametri)

g = {g1 , g2 ,..., g M } Set delle grandezze osservabili (ex. Zin, G)

Problema: determinare i valori del set di parametri della struttura, nei vincoli
specificati, in modo che sia massima ( o minima) una opportuna funzione obiettivo:

F [ g ( ! )]
Tipologie di Ottimizzazione

Metodi Locali:
fissato un valore di iniziale dei parametri, tali algoritmi convergono in maniera
deterministica ad un massimo (minimo) locale della funzione obiettivo
- sono rapidi
Gradiente coniugato - sono fortemente influenzati dalla scelta dei parametri iniziali
Metodi di Newton .. - richiedono che la funzione obiettivo abbia opportune proprietà matematiche
- problemi con un alto numero di parametri diventano intrattabili

Metodi Globali:
fissato un valore di iniziale dei parametri, convergono in maniera stocastica ad
un valore prossimo al massimo (minimo) assoluto della funzione obiettivo.
- dipendono molto poco dalla soluzione iniziale
- non richiedono particolari proprietà della funzione obiettivo
- producono un insieme di soluzioni sub-ottimali (oltre quella ottimale)
Genetic Algorithm - permettono di studiare problemi con un elevato numero di parametri
Random Walk - sono di lenta convergenza
- richiedono la taratura (in base all esperienza) di parecchi parametri di
simulazione

Ottimizzazione Genetica
(o Evolutiva)

Gli algoritmi genetici sono ottimizzatori iterativi di tipo stocastico basati sui
concetti Darwiniani di selezione naturale e di evoluzione.

In un algoritmo genetico, un insieme di potenziali soluzioni viene fatto


“evolvere” verso una soluzione globale ottimale.
- riproduzione tra individui
- mutazione del patrimonio genetico

L’evoluzione (ottimizzazione) è il risultato di un insieme di processi di


selezione che nel tempo tendono a scartare configurazioni meno adatte al
problema da risolvere.
Ottimizzazione Genetica (GA)
Terminologia
Individuo : costituisce una possibile
soluzione al problema di ottimizzazione
da risolvere.
Ciascun individuo è determinato da una

(!{2!),...,
Pn = [ B(!1 ),!B= 1 , !2B (!! )]}
combinazione dei valori dei parametri
reali da ottimizzare ,..., KK
B(!k )
Gene : codifica (ad esempio binaria)
di un parametro da ottimizzare
B(!k )
pn

Cromosoma : sequenza dei geni del singolo individuo. E’ costituito da una stringa di
numeri (1 e 0 nel caso più comune di codifica binaria) che rappresenta quindi la codifica di
una possibile soluzione del problema da risolvere

pn = {B(!1 ), B(!2 ),..., B(!K )}

Ottimizzazione Genetica (GA)


Terminologia - cont.
Popolazione : è costituita da un insieme di individui (alcune possibili
configurazioni nello spazio dei parametri) codificati sotto forma di cromosomi.

Nbit
Riga =>antenna

P = [ p1 , p2 ,..., pN ] colonne: Nbit


righe: N (# individui)

Evoluzione : iterazione del processo di ottimizzazione che permette, tramite


una sequenza di operatori, di modificare il patrimonio genetico degli individui
della popolazione

P ( i ) ! P ( i +1)
Ottimizzazione Genetica (GA)
Terminologia - cont.
Fitness : indicatore associato a ciascun
individuo (set di parametri) in base alla bontà
con cui è soluzione del problema.
Dipende dai valori reali dei parametri che
costituiscono il singolo individuo

E’ la parte più delicata dell’algoritmo.


Usualmente la Fitness totale è scritta come
una media pesata delle fitness associate alle
varie grandezze osservabili
Set dei parametri dell individuo n-mo
J
Fp = F ( pn ) = ! w j Fj [ g j ( !n )] j-ma grandezza osservabile
dell individuo n-mo
j =1
E l unica grandezza che dipende
dalla fisica del problema.
J
Nel caso della antenne potrebbe
Pesi !w
j =1
j =1 essere un misura o un calcolo
elettromagnetico

Operatori Genetici
Selezione
Selezione : Os
implementa il “principio di sopravvivenza” dei migliori che parteciperanno alla
riproduzione. Viene costruita una nuova popolazione PS costituita da NS <N individui
della popolazione P(i)
P (i )
N N sel < N

PS( i ) = Os ! P ( i )
NS NS N

Vi sono diversi criteri di selezione normalmente basati sul valore


della fitness di ciascun individuo.
Tra i più usati: il metodo della roulette

- detta FT la somma dei fitness dei singoli individui.


- si estrae un numero 0<s<1.
- partendo dal primo individuo, si sommano le fitness relative
Fp/FT finchè s< Fp/FT
- l ultimo individuo considerato è quello selezionato
Operatori Genetici
Cross-Over
Cross-Over : OC
E’ l’operatore di base per la creazione di due nuovi inividui a partire da una coppia
di “genitori” della popolazione selezionata. Viene quindi creata una nuova
popolazione PC
P C =O !P
(i )
C S
(i )

NS NS NS
1. Si scelgono a caso coppie di cromosomi genitori e si estrae a caso un
numero 0<s<1. Se è minore della probabilita di cross-over (circa 0.8) si
copia nei figli il DNA dei genitori. Diversamente:

2. Si scelgono a caso una o più posizioni nel cormosoma a partire dalle quali
scambiare i bit dei genitori

Operatori Genetici
Mutazione
Mutazione : OM
Introduce aleatoriamente nuovo materiale genetico in alcuni cromosomi, originando
individui con caratteristiche del tutto diverse.
Permette di migliorare l’esplorazione dello spazio dei parametri

PM( i ) = OM ! PC( i )
NS NS NS
1. Vengono scelti a caso dei cromosomi (in base alla probabilità di mutazione (0 - 0.5)

2. Nei cromosomi prescelti vengono cambiati a caso uno o piu bit

Elevate probabilità di mutazione rallentano la convergenza ma


permettono di ottenere individui migliori
Nuova Popolazione
Viene costruita la popolazione (i+1)-ma aggiungendo alla popolazione
mutata i migliori elementi della popolazione precedente

Popolazione mutata

PM(i )
Ns<N individui Popolazione evoluta

!
Popolazione iniziale
Solo i migliori & #
P (i ) (N-NS) individui P ( i +1) = PM( i ) " % OS ! P ( i ) "
N NS $N 'NS NS !
N individui

Riepilogo

(Calcolo
elettromagnetico)

Parametri da scegliere:

•  numero di bit per la codifica


•  probabilità di cross-over
•  probabilità di mutazione
•  fitness function: pesi wj
•  numero di individui della popolazione
(comunemente non inferiore al
numero complessivo di bit del
cromosoma)

E richiesta una attenta calibrazione dell ottimizzatore


Criteri di arresto

Nel progredire dell evoluzione, la fitness dell individuo migliore tende


ad aumentare e gli individui della popolazione tendono a diventare tutti
uguali.

L evoluzione viene arrestata quando accade uno dei seguenti eventi:

a) viene raggiunto il massimo numero di iterazioni prefissato

b) l individuo migliore continua a rimanere lo stesso ( o il suo fittness


non migliora) per piu di Nx iterazioni

c) gli individui sono tutti uguali o hanno tutti lo stesso fitness


302 IEEE ANTENNAS AND WIRELESS PROPAGATION LETTERS, VOL. 2, 2003

Gain-Optimized Self-Resonant Meander Line


Antennas for RFID Applications
Gaetano Marrocco

Abstract—New meander line antennas with improved gain are


proposed as low-profile self-resonant tags for application in passive
radio frequency identification. Antenna shape and size is optimized
by genetic algorithm taking into account the conductor losses. Ex-
amples are presented for application at 869 MHz with antennas of
different materials and sizes.
Index Terms—Genetic algorithms, miniaturized antenna, small
antenna, transponders.

I. INTRODUCTION

R ADIO frequency identification (RFID) of objects and


people and remote control of devices has become very
popular in logistics, inventory management and bio-engi-
neering applications [1]. Data are contactless transferred to
Fig. 1. Scheme for nonuniform with indication of parameters to be
a local querying system (reader) from a remote transponder optimized. Only half antenna is visible.
(tag) including the antenna and a microchip transmitter. A
suitable antenna for the tag must have low cost, low profile,
and especially small size, whereas the bandwidth requirement does not exhibit the optimum gain especially when the con-
(a few kilohertz) is less critical. In passive tag systems, the ductor losses can not be neglected and that the GA-optimized
querying signal coming from the reader must have enough shapes with lossless wires are greatly different from the opti-
power to activate the tag microchip, perform data processing mized antenna involving real conductors. It will be also proved
and transmit back a modulated string up to the required reading that the optimized MLA shape converges to a top-loaded dipole
range (typically 0.3–1 m). Since the maximum effective as the available height increases.
isotropic radiated power (EIRP) of the reader is constrained to
local regulations, high-gain tags are required to increase the II. EVOLUTIONARY DESIGN OF MLAS
reading range. Additionally, to simplify the matching network With reference to Fig. 1, the parameters of a symmetric rect-
and obtain low-cost tags, the antenna should be self resonant. angular are: the number of turns, the length of the
In the ultra-high frequency (UHF) band, especially below horizontal ( and ) and vertical ( and ) segments
1 GHz, meander line antennas (MLA) are an attractive choice of the th turn and the length of the central segments and
for the purpose of reducing the tag sizes. As proposed in [2], . The commonly used configuration is the uniform MLA
folding the elements in a meander produces a wire configura- (U-MLA), which is a particular geometry described by only
tion with both capacitive and inductive reactance, which mutu- three parameters— , , and —hereafter
ally cancel. Resonances are therefore produced at much lower denoted as U- . The most general symmetrical
frequencies than in the case of straight wire antenna of the same nonuniform is singled out by param-
height at the expense of narrow bandwidth and low gain, espe- eters.
cially when the antenna surface needs to be contained in a few Design curves for self-resonant U- can be easily ob-
centimeter-side square (less than to label small ob- tained by setting the height and then iteratively tuning the
jects). width to have the antenna at resonance. For example,
This paper discusses the design of gain-optimized MLA by Fig. 2 shows the tuning curves for copper wire U-MLAs where
means of genetic algorithms (GA) and investigates on the in- the method of moments [4] has been used for antenna modeling.
fluence of the wire conductivity on the optimized shape of the As expected, higher order antennas (N 1) have a smaller res-
antenna. Following preliminary results in [3], it will be shown onant width since the wire is folded along a greater number of
that, for a fixed height, a standard MLA with regular meanders turns within a small area. Moreover, the gain becomes lower for
increasing but approaches the gain of a straight dipole as the
Manuscript received September 15, 2003; revised October 20, 2003. height increases.
G. Marrocco is with the Dipartimento di Informatica, Sistemi e Produzione, Up to the first antenna resonance, the currents on the adjacent
University of Roma “Tor Vergata,” Rome, Italy (e-mail: marrocco@disp.
uniroma2.it). horizontal segments of the MLA have opposite phase. These
Digital Object Identifier 10.1109/LAWP.2003.822198 transmission line currents do not give valuable contribution
1536-1225/03$17.00 © 2003 IEEE
MARROCCO: GAIN-OPTIMIZED SELF-RESONANT MEANDER LINE ANTENNAS FOR RFID APPLICATIONS 303

Fig. 2. (a) Design curve for small copper U-MLA. (b) Maximum gain for
resonant U-MLA versus the height H for different meanders.
Fig. 3. Optimization results at 869 MHz, for , with sizes (in cm) not
exceeding . Copper U-MLA in the first column. The
to the radiated power, but they nevertheless produce losses. circles indicate the source points.
In particular, a lot of power is wasted close to the antenna
center, where the current reaches highest values. The radiation
resistance is therefore mainly affected by the vertical segments
and, hence, as shown in [5], by the antenna total vertical height
relative to the resonant wavelength. On the contrary, the loss
resistance is primarily determined by the wire diameter and
by the total wire length. For a fixed maximum available area
, the optimum gain is therefore expected to be
achieved with that antenna design having the highest radiation
resistance and the smallest total wire length. The above opti-
mization problem, involving a tradeoff between miniaturization Fig. 4. Optimization results (sizes in cm) at 869 MHz for .
with self resonance (long wire length) and loss minimization
(short wire length), requires all the vertical and horizontal (highest value allowed by European regulations) and chip input
segments to be independently designed and can be efficiently power [1].
handled by the GA approach that has been widely used as an Optimization results, with weight , ,
electromagnetic design tool [6]. For the actual problem, the , are shown in Fig. 3 for antennas and in
length of each segment of the MLA is encoded into 7 bits and Fig. 4 for antennas. The copper U-MLAs obtained
each antenna is solved by the method of moment, provided that by curves of Fig. 2 are also reported for reference. It can be
the minimum segment length is , which still noted that the optimum usage of the wire current and the space
permits to perform stable electromagnetic analysis. For each occupation is different and it is strongly related to the wire
th antenna of the GA population at the th generation, the conductivity as it is visible from the different shapes. Loss-
following fitness function is then evaluated: less-wire antennas are the shortest ones and exhibit nearly the
same gain as a half wavelength dipole, with size reduction factor
(1) of about 23%. Lossy conductor
MLAs tend to fill all the available area and their horizontal seg-
ments originating transmission line stubs are shorter close to
where , , are the th antenna height, maximum gain
the source in order to minimize the transmission line current,
and input reactance, respectively. Parameters have been chosen
which does not contribute to radiation. In comparison with the
as: , (maximum gain of half-
U-MLA of the same order, the optimized copper antennas show
wavelength perfect conductor dipole), . The fitness
a gain enhancement of 0.3 dB and 1 dB
function converges to as the antenna gain equals ,
and consequently the reading range has been improved by about
the height equals and the antenna is at resonance.
3 cm and 5 cm , respectively. The total wire
length is similar for NU-MLA of the same order and ranges
III. MLA FOR 869-MHz APPLICATIONS between 0.6 and 0.67 . The input impedance is
Some numerical experiments are reported at 869 MHz (a for the copper-wire antenna and it is close to the load impedance
typical European frequency for RFID devices) for 0.1 mm of commonly used microchip transmitters [1]. Although not an
wire MLA. A first optimized design set refers to antennas optimization parameter, the bandwidth has been improved by
with maximum allowed size , , about 10% in moving from copper U- to the optimized
typical of book barcodes. The following wire conductivities NU- since the latter tends to occupy more space.
have been considered: (perfect electric conductor), To discuss the performances of optimized self-resonant
(good conductor: copper) and copper MLAs of a same size, two new design sets have been
(poor conductor: a metallo-organic conducting ink [7]). A rel- produced (Fig. 5) having fixed the available size to that of two
evant parameter for these antennas is the activation range U- with and
, which is the distance from the , respectively. The following optimization
reader where the tag collects enough power to activate the mi- weights in (1) favor gain maximization: , ,
crochip transmitter. has been computed for an . A top-loaded dipole (“C” antenna) tuned by
304 IEEE ANTENNAS AND WIRELESS PROPAGATION LETTERS, VOL. 2, 2003

Fig. 5. Optimized antennas with the same size (W,H in cm) of two U- . A top loaded dipole is also shown for comparison. and are radiation and
loss resistances, respectively. The gain of the two U- are 0.30 dB and 0.81 dB .

Fig. 6. Copper-wire GA-optimized NU-MLA antennas for different maximum available areas (dashed shapes). The gain of the corresponding
U-MLA antennas are also reported.

some foldings, which is a simple way to miniaturize a dipole, Nevertheless, no information about the antenna horizontal size
has been also considered for reference. While no sensible is given in that paper.
improvement over the U- has been appreciated in Finally, to further investigate on the ability of the GA opti-
optimized NU- , better performances have been obtained mization to enhance MLA gain, some more designs have been
with NU- . It is possible to verify that the antenna loss performed for different maximum size ranging
increases with the wire length while the radiation resistance is from to . As depicted in Fig. 6, the GA-op-
higher in those designs with prevalent vertical shape near the timization is as much effective over the uniform MLA as the
voltage source, where the current peaks (e.g. the NU- maximum available area decreases. For sizes smaller that
and the top-loaded dipole). Therefore, having fixed the antenna a antenna has been considered to obtain self
height, the radiation resistance depends on “how effective” resonance. As the available space increases, the antenna tuning
is the current usage in the wire path. The highest radiation requires shorter horizontal segments, mainly localized at the
resistance is that of the top-loaded dipole whose central vertical wire’s ends to minimize losses. The MLAs therefore converge
segment has the longest length which is permitted in the to a single-fold top-loaded dipole which, as discussed above,
available space. However, the wire length of this antenna and, has the best current utilization.
hence, the loss resistance are the highest. Accordingly, the gain
is lower than that of the U- . The best antennas, in the
IV. CONCLUSION
sense of (1), are the NU- which show the best tradeoff
between wire length minimization and best current utilization. Miniaturized self-resonant meander-line antennas have been
The gain improvement over the two U- has been of about designed by GA optimization. It has been numerically experi-
0.2 dB in both the considered sizes. It is interesting to note that enced that: 1) the optimum usage of the wire current is strongly
above results partially disagree with what stated in [5], e.g., that related to the wire loss strength; 2) for a fixed maximum
the radiation resistances of shaped dipoles of fixed height are available space, optimized NU-MLAs perform better than
similar, independent of antenna geometry and total wire length. same-order U-MLAs (up to 1-dB gain improvement for copper
MARROCCO: GAIN-OPTIMIZED SELF-RESONANT MEANDER LINE ANTENNAS FOR RFID APPLICATIONS 305

wire); 3) same order MLAs (uniform and optimized) of same REFERENCES


size exhibit similar performances, while gain enhancement is [1] K. Finkenzeller, RFID Handbook. London, U.K.: Wiley, 1999.
possible by adding further degrees of freedom, e.g. by higher [2] T. J. Warnagiris and T. J. Minardo, “Performance of a meandered line
as electrically small transmitting antenna,” IEEE Trans. Antennas Prop-
order NU-MLAs; and 4) in all the considered cases, optimized agat., vol. 46, pp. 1797–1876, Dec. 1998.
MLAs perform better than top-loaded dipoles having the same [3] G. Marrocco, A. Fonte, and F. Bardati, “Evolutionary design of minia-
size. This class of antennas may be useful as an extremely small turized meander-line antennas for RFID applications,” in Proc. IEEE
tag for radiofrequency identification applications involving a AP-S Int. Symp., vol. 2, San Antonio, TX, 2002, pp. 362–365.
[4] G. J. Burke and A. J. Poggio, “Numerical Electromagnetic Code (NEC)
reading range of about 0.5 m and with a bandwidth of a few Method of Moments,” Naval Ocean Syst. Ctr., CA, Tech. Doc. 116, pt.
megahertz. I and II, 1980.
[5] S. Best, “On the resonant properties of the Koch fractal and other wire
monopole antennas,” IEEE Trans. Antennas Wireless Propagat. Lett.,
ACKNOWLEDGMENT vol. 1, pp. 74–76, 2002.
[6] D. S. Weile and E. Michielsen, “Genetic algorithm optimization applied
The author would like to thank the reviewers for suggestions to electromagnetics: a review,” IEEE Trans. Antennas Propagat., vol.
45, pp. 343–353, Mar. 1997.
and A. Fonte, Prof. F. Bardati, and M. Sabbadini, for support [7] Inks for RFID Antennae. Parmod VLT Tech. Rep. [Online]. Available:
and helpful discussions. www.parelecusa.com/parelec3/product/images/RFID.pfd

Potrebbero piacerti anche