0% found this document useful (0 votes)
42 views16 pages

Tarea #10

This document describes the use of matrix methods to analyze the Tessar lens system. The indices of refraction, lens radii and spacings are defined. Refraction matrices and transfer matrices are constructed for each lens element. These are multiplied together to obtain the overall system matrix, from which the effective focal length, front and back principal planes are calculated using Matlab code. The code is run and the results are displayed, confirming the matrix analysis of the Tessar lens.

Uploaded by

Nori Fuentes
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
42 views16 pages

Tarea #10

This document describes the use of matrix methods to analyze the Tessar lens system. The indices of refraction, lens radii and spacings are defined. Refraction matrices and transfer matrices are constructed for each lens element. These are multiplied together to obtain the overall system matrix, from which the effective focal length, front and back principal planes are calculated using Matlab code. The code is run and the results are displayed, confirming the matrix analysis of the Tessar lens.

Uploaded by

Nori Fuentes
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 16

Posgrado en Ciencias en la Especialidad de Óptica

Materia:
Óptica Geométrica e Instrumental I

Tarea #10:
Métodos Matriciales

Presenta:
Leonardi Hernández Sánchez

Profesores:
Dr. Alejandro Cornejo Rodríguez &
Dr. Jorge Castro Ramos

Calificación:

____________________

Santa María Tonanzintla, San Andrés Cholula, Puebla; a 08 de octubre de 2020.


Lente de Tessar
A continuación, comprobamos mediante un script de Matlab estos resultados:
8/10/20 03:14 PM C:\Users\pcnue\Desktop...\LenteTessar.m 1 of 2

%%%%Lente de Tessar%%%

%Indices de refracción
nt1= 1.6116; ni1= 1;
nt2= 1; ni2= nt1;
nt3= 1.6053; ni3= nt2;
nt4= 1; ni4= nt3;
nt5= 1.5123; ni5= nt4;
nt6= 1.6116; ni6= nt5;
nt7=1; ni7=nt6;
%Distancias entre lentes
d21= 0.357;
d32= 0.189;
d43= 0.081;
d54= 0.325;
d65= 0.217;
d76= 0.396;

%Radios focales
R1= 1.628;
R2= -27.57;
R3= -3.457;
R4= 1.582;
R5= Inf;
R6= 1.920;
R7=-2.400;

%Potencia Dióptrica
D1= (nt1-ni1)/R1
D2= (nt2-ni2)/R2
D3= (nt3-ni3)/R3
D4= (nt4-ni4)/R4
D5= (nt5-ni5)/R5
D6= (nt6-ni6)/R6
D7= (nt7-ni7)/R7

%Matrices de Refracción

RR1= [1 -D1 ; 0 1]
RR2= [1 -D2 ; 0 1]
RR3= [1 -D3 ; 0 1]
RR4= [1 -D4 ; 0 1]
RR5= [1 -D5 ; 0 1]
RR6= [1 -D6 ; 0 1]
RR7= [1 -D7 ; 0 1]

%Matrices de Transferencia
T21= [1 0 ; d21/nt1 1]
T32= [1 0 ; d32/nt2 1]
T43= [1 0 ; d43/nt3 1]
T54= [1 0 ; d54/nt4 1]
T65= [1 0 ; d65/nt5 1]
T76= [1 0 ; d76/nt6 1]

%El sistema de matrices tiene la forma


8/10/20 03:14 PM C:\Users\pcnue\Desktop...\LenteTessar.m 2 of 2

A71=RR7*T76*RR6*T65*RR5*T54*RR4*T43*RR3*T32*RR2*T21*RR1

%Distancia Focal efectiva (f_i = 1/-a_12) dada por la ecuación 6.39


fi=1/-A71(1,2)

%Los planos principales [v_1 H_1 = (1-a_11)/-1_12 y v_2 H_2 = (a_22-1)/-1_12]


V1H1=(1-A71(1,1))/(-A71(1,2))
V2H2=(A71(2,2) - 1)/(-A71(1,2))
8/10/20 03:15 PM MATLAB Command Window 1 of 3

D1 =

0.3757

D2 =

0.0222

D3 =

-0.1751

D4 =

-0.3826

D5 =

D6 =

0.0517

D7 =

0.2548

RR1 =

1.0000 -0.3757
0 1.0000

RR2 =

1.0000 -0.0222
0 1.0000

RR3 =

1.0000 0.1751
0 1.0000

RR4 =
8/10/20 03:15 PM MATLAB Command Window 2 of 3

1.0000 0.3826
0 1.0000

RR5 =

1 0
0 1

RR6 =

1.0000 -0.0517
0 1.0000

RR7 =

1.0000 -0.2548
0 1.0000

T21 =

1.0000 0
0.2215 1.0000

T32 =

1.0000 0
0.1890 1.0000

T43 =

1.0000 0
0.0505 1.0000

T54 =

1.0000 0
0.3250 1.0000

T65 =

1.0000 0
0.1435 1.0000

T76 =
8/10/20 03:15 PM MATLAB Command Window 3 of 3

1.0000 0
0.2457 1.0000

A71 =

0.8489 -0.1969
1.3387 0.8675

fi =

5.0789

V1H1 =

0.7676

V2H2 =

-0.6728

>>

You might also like