Está en la página 1de 7

UNIVERSIDAD CATÓLICA DE SANTA MARÍA

FACULTAD DE CIENCIAS E INGENIERÍAS FÍSICAS Y FORMALES


ESCUELA PROFESIONAL DE INGENIERÍA ELECTRÓNICA

HOJA PORTADA

DATOS

ASIGNATURA: LINEAS DE TRANSMISION Y ANTENAS


SEMESTRE: VIII
GUÍA N°: 03 FECHA: 24/09/2023
TÍTULO: CARTA DE SMITH CON EL COMANDO SMITHCHART O SMITH PLOT DE MATLAB

DOCENTE: ING. RAUL R. SULLA TORRES


INTEGRANTE(S): STALYN ANDRE VIZCARRA GUTIERREZ
RICARDO DANIEL LLAVE ZÚÑIGA

OBSERVACIONES:
1. Marco Teórico:

En las versiones anteriores al Matlab 2023a funciona la función smithchart pero en la versiones de
la 2023 a las superiores usar la función smithplot

smithchart dibujar datos a partir del coeficiente de reflexión complejo en un gráfico smith

[HLINES, HSM] = smithchart(GAMMA)

traza el coeficiente de reflexión complejo datos GAMMA en un gráfico de Smith.

HSM = smithchart dibuja un gráfico de Smith.

HLINES es un vector de columna de identificadores a objetos de lineseries,


un identificador por línea trazada.
HSM es el identificador del objeto de gráfico Smith.

Las propiedades del gráfico de Smith incluyen,

Descripción del nombre de la propiedad


-----------------------------------------------------------------------
Name: nombre del objeto. (sólo lectura)
Type - Tipo de gráfico smith. Las opciones son: 'Z', 'Y', 'ZY' o 'YZ'
Values - 2*N matriz para los círculos
Color - Color para el gráfico principal
LineWidth: ancho de línea para el gráfico principal
LineType - Tipo de línea para el gráfico principal
SubColor - Color para el subgráfico
SubLineWidth - Ancho de línea para el subgráfico
SubLineType - Tipo de línea para el subgráfico
LabelVisible - Visibilidad de las etiquetas de línea.
Las opciones son: 'On' o 'Off'
LabelSize - Tamaño de la etiqueta
LabelColor - Color de la etiqueta

2
1.1. smithplot
Plot measurement data on Smith chart
collapse all in page
Syntax
smithplot(data)
smithplot(frequency,data)
smithplot(ax,___)
smithplot(hnet)
smithplot(hnet,i,j)
smithplot(hnet,[i1,j1;i2,j2;....,in,jn])
smithplot(rfbudgetobj,i,i)
s = smithplot(___)
s = smithplot('gco')
smithplot(___,Name,Value)
Description
smithplot(data) creates a Smith chart based on input data values.
Note
The Smith chart is commonly used to display the relationship between a reflection coefficient, typically given as S11 or S22, and
a normalized impedance.
smithplot(frequency,data) creates a Smith chart based on frequency and data values.
smithplot(ax,___) creates a Smith chart with a user defined axes handle, ax, instead of the current axes
handle. Axes handles are not supported for network parameter objects. This parameter can be used with
either of the two previous syntaxes.

smithplot(hnet) plots all the network parameter objects in hnet.

smithplot(hnet,i,j) plots the (i,j)th parameter of hnet. hnet can be a network parameter, an rfckt, an
rfdata,or an nport object.
smithplot(hnet,[i1,j1;i2,j2;....,in,jn]) plots multiple parameters (i1, j1, i2, j2, …, in, jn) of hnet. hnet can be
a network parameter, an rfckt, an rfdata, or an nport object.
smithplot(rfbudgetobj,i,i) plots the reflection coefficient of an rfbudget object.
Note
For rfbudget objects, smith plot is restricted to reflection coefficients.
s = smithplot(___) returns a Smith chart object handle so you can customize the plot and add
measurements.
s = smithplot('gco') returns a Smith chart object handle of the current plot. This syntax is useful when the
function handle, p was not returned or retained.
smithplot(___,Name,Value) creates a Smith chart with additional properties specified by one or more name-
value pair arguments. Name is the property name and Value is the corresponding property value. You can
specify several name-value pair arguments in any order as Name1, Value1, ..., NameN, ValueN. Properties not
specified retain their default values.
For list of properties, see SmithPlot Properties.
Note
The property 'Parent' might be used to control the location where Smith chart gets plotted. Target can be figure, UI figure, UI
panel, etc.
Examples
collapse all
Smith Plot of S-Parameter from n-Port Circuit Object with Interactive Menu
Try This ExampleCopy Code Copy Command

3
Use the Smith plot interactive menu to change grid type of the Smith plot.
Plot the Smith plot of S-parameters data file, default.s2p.
---------------------------
data = nport('default.s2p');
smithplot(data)

4
2. PRACTICA CON SMITHCHART
2.1. Graficar la carta de Smith vacia en Matlab con el comando Smithchart

2.2. Graficar dentro de la carta de Smith la carta de Smith, impedancia baja

Ingresando el valor del coeficiente de reflexión (gamma)


Con el comando z2gamma(z) Para:
z = 15 + j · (0 : 2)

5
2.3. Graficar dentro de la carta de Smith la carta de Smith, impedancia alta

Ingresando el valor del coeficiente de reflexión (gamma)


Con el comando z2gamma(z) Para:
z = 0,1 · 50 + 1j · (0 : 2)

6
2.4. Graficar dentro de la carta de smith la carta de Smith, impedancia muy alta

Ingresando el valor del coeficiente de reflexion (gamma)


Con el comando z2gamma(z) Para:
z = 15 + j(0 : 2) y z0 = 100ohms
Entonces la función z2gamma(z) seria: z2gamma(z,100)

3. INDICACIONES

Entrega de la practica: en el campus virtual


Subir: en una carpeta comprimida
Archivo Word con el código fuente y las capturas de pantalla de Matlab, así como los resultados y
comentarios.

También podría gustarte