├── .github └── workflows │ ├── python-publish.yml │ └── python-tests.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── images │ └── tracepy_logo.png ├── img │ └── favicon.ico └── index.md ├── examples ├── Newtonian_Telescope_Specify_Glass_Type.ipynb └── Simple_Spherical_Aberration_Example.ipynb ├── mkdocs.yml ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_geometry.py ├── test_hyperbolic.py ├── test_optimizer.py ├── test_parabolic.py ├── test_plotting.py └── test_transform.py └── tracepy ├── __init__.py ├── constants.py ├── exceptions.py ├── geometry.py ├── geoplot.py ├── glass ├── __init__.py ├── ami │ ├── AMTIR-1.yml │ ├── AMTIR-2.yml │ ├── AMTIR-3.yml │ └── AMTIR-6.yml ├── barberini │ ├── D0082.yml │ ├── D0191.yml │ ├── D0290.yml │ ├── D0391.yml │ ├── D0587.yml │ ├── D0687.yml │ ├── D0785.yml │ ├── D0888.yml │ ├── D0891.yml │ ├── D0991.yml │ ├── D1125.yml │ ├── D1214.yml │ ├── D1219.yml │ ├── D1230.yml │ ├── D1420_1.yml │ ├── D1426-D1526.yml │ ├── D1511.yml │ ├── D1520.yml │ ├── D1616.yml │ ├── D4150.yml │ ├── D5336_1.yml │ ├── D6117.yml │ ├── D6420.yml │ ├── D6526-D6626.yml │ ├── D6625.yml │ ├── D6726-D6826.yml │ └── D9148.yml ├── cdgm │ ├── BAF2.yml │ ├── BAF4.yml │ ├── BAF5.yml │ ├── BAF7.yml │ ├── D-FK61.yml │ ├── D-K59.yml │ ├── D-K9.yml │ ├── D-LAF050.yml │ ├── D-LAF50.yml │ ├── D-LAF53.yml │ ├── D-LAF79.yml │ ├── D-LAF82L.yml │ ├── D-LAK5.yml │ ├── D-LAK6.yml │ ├── D-LAK70.yml │ ├── D-PK3.yml │ ├── D-ZF10.yml │ ├── D-ZF93.yml │ ├── D-ZK2.yml │ ├── D-ZK3.yml │ ├── D-ZK79.yml │ ├── D-ZLAF50.yml │ ├── D-ZLAF52LA.yml │ ├── D-ZLAF61.yml │ ├── D-ZLAF67.yml │ ├── D-ZLAF81.yml │ ├── D-ZLAF85L.yml │ ├── D-ZPK1A.yml │ ├── F1.yml │ ├── F13.yml │ ├── F2.yml │ ├── F3.yml │ ├── F4.yml │ ├── F5.yml │ ├── F6.yml │ ├── F7.yml │ ├── H-BAF2.yml │ ├── H-BAF3.yml │ ├── H-BAF4.yml │ ├── H-BAF5.yml │ ├── H-BAF6.yml │ ├── H-BAF7.yml │ ├── H-BAF8.yml │ ├── H-BAK1.yml │ ├── H-BAK2.yml │ ├── H-BAK3.yml │ ├── H-BAK4.yml │ ├── H-BAK5.yml │ ├── H-BAK6.yml │ ├── H-BAK7.yml │ ├── H-BAK7GT.yml │ ├── H-BAK8.yml │ ├── H-F1.yml │ ├── H-F13.yml │ ├── H-F2.yml │ ├── H-F4.yml │ ├── H-F51.yml │ ├── H-FK61.yml │ ├── H-FK61B.yml │ ├── H-FK71.yml │ ├── H-K1.yml │ ├── H-K10.yml │ ├── H-K11.yml │ ├── H-K12.yml │ ├── H-K2.yml │ ├── H-K3.yml │ ├── H-K5.yml │ ├── H-K50.yml │ ├── H-K51.yml │ ├── H-K6.yml │ ├── H-K7.yml │ ├── H-K8.yml │ ├── H-K9L.yml │ ├── H-K9LGT.yml │ ├── H-K9Lstar.yml │ ├── H-KF6.yml │ ├── H-LAF1.yml │ ├── H-LAF10LA.yml │ ├── H-LAF2.yml │ ├── H-LAF3B.yml │ ├── H-LAF4.yml │ ├── H-LAF4GT.yml │ ├── H-LAF50B.yml │ ├── H-LAF51.yml │ ├── H-LAF52.yml │ ├── H-LAF53.yml │ ├── H-LAF54.yml │ ├── H-LAF55.yml │ ├── H-LAF62.yml │ ├── H-LAF6LA.yml │ ├── H-LAF7.yml │ ├── H-LAFL5.yml │ ├── H-LAK1.yml │ ├── H-LAK10.yml │ ├── H-LAK11.yml │ ├── H-LAK12.yml │ ├── H-LAK2A.yml │ ├── H-LAK3.yml │ ├── H-LAK4L.yml │ ├── H-LAK50A.yml │ ├── H-LAK51A.yml │ ├── H-LAK52.yml │ ├── H-LAK53A.yml │ ├── H-LAK53B.yml │ ├── H-LAK54.yml │ ├── H-LAK59A.yml │ ├── H-LAK5A.yml │ ├── H-LAK61.yml │ ├── H-LAK67.yml │ ├── H-LAK6A.yml │ ├── H-LAK7A.yml │ ├── H-LAK8A.yml │ ├── H-LAK8B.yml │ ├── H-QF1.yml │ ├── H-QF14.yml │ ├── H-QF3.yml │ ├── H-QF50A.yml │ ├── H-QF56.yml │ ├── H-QF6A.yml │ ├── H-QF8.yml │ ├── H-QK1.yml │ ├── H-QK3L.yml │ ├── H-TF3L.yml │ ├── H-TF5.yml │ ├── H-TF8.yml │ ├── H-ZBAF1.yml │ ├── H-ZBAF16.yml │ ├── H-ZBAF20.yml │ ├── H-ZBAF21.yml │ ├── H-ZBAF3.yml │ ├── H-ZBAF4.yml │ ├── H-ZBAF5.yml │ ├── H-ZBAF50.yml │ ├── H-ZBAF52.yml │ ├── H-ZF1.yml │ ├── H-ZF10.yml │ ├── H-ZF11.yml │ ├── H-ZF12.yml │ ├── H-ZF13.yml │ ├── H-ZF13GT.yml │ ├── H-ZF2.yml │ ├── H-ZF3.yml │ ├── H-ZF39.yml │ ├── H-ZF4A.yml │ ├── H-ZF4AGT.yml │ ├── H-ZF5.yml │ ├── H-ZF50.yml │ ├── H-ZF52.yml │ ├── H-ZF52A.yml │ ├── H-ZF52GT.yml │ ├── H-ZF52TT.yml │ ├── H-ZF6.yml │ ├── H-ZF62.yml │ ├── H-ZF71.yml │ ├── H-ZF72A.yml │ ├── H-ZF7LA.yml │ ├── H-ZF7LAGT.yml │ ├── H-ZF88.yml │ ├── H-ZK1.yml │ ├── H-ZK10.yml │ ├── H-ZK10L.yml │ ├── H-ZK11.yml │ ├── H-ZK14.yml │ ├── H-ZK2.yml │ ├── H-ZK20.yml │ ├── H-ZK21.yml │ ├── H-ZK3.yml │ ├── H-ZK3A.yml │ ├── H-ZK4.yml │ ├── H-ZK5.yml │ ├── H-ZK50.yml │ ├── H-ZK50GT.yml │ ├── H-ZK6.yml │ ├── H-ZK7.yml │ ├── H-ZK8.yml │ ├── H-ZK9A.yml │ ├── H-ZK9B.yml │ ├── H-ZLAF1.yml │ ├── H-ZLAF2A.yml │ ├── H-ZLAF3.yml │ ├── H-ZLAF4LA.yml │ ├── H-ZLAF50D.yml │ ├── H-ZLAF50E.yml │ ├── H-ZLAF51.yml │ ├── H-ZLAF52.yml │ ├── H-ZLAF52A.yml │ ├── H-ZLAF53B.yml │ ├── H-ZLAF53BGT.yml │ ├── H-ZLAF55C.yml │ ├── H-ZLAF55D.yml │ ├── H-ZLAF56B.yml │ ├── H-ZLAF66.yml │ ├── H-ZLAF66GT.yml │ ├── H-ZLAF68B.yml │ ├── H-ZLAF68C.yml │ ├── H-ZLAF68N.yml │ ├── H-ZLAF69.yml │ ├── H-ZLAF71.yml │ ├── H-ZLAF75A.yml │ ├── H-ZLAF75B.yml │ ├── H-ZLAF76.yml │ ├── H-ZLAF78B.yml │ ├── H-ZLAF89L.yml │ ├── H-ZLAF90.yml │ ├── H-ZLAF92.yml │ ├── H-ZPK1A.yml │ ├── H-ZPK2A.yml │ ├── H-ZPK3.yml │ ├── H-ZPK5.yml │ ├── K4A.yml │ ├── QF1.yml │ ├── QF3.yml │ ├── QF5.yml │ ├── QF50.yml │ ├── QF6.yml │ ├── QF8.yml │ ├── TF3.yml │ ├── ZBAF17.yml │ ├── ZBAF2.yml │ ├── ZBAF51.yml │ ├── ZF1.yml │ ├── ZF10.yml │ ├── ZF11.yml │ ├── ZF12.yml │ ├── ZF13.yml │ ├── ZF2.yml │ ├── ZF3.yml │ ├── ZF4.yml │ ├── ZF5.yml │ ├── ZF50.yml │ ├── ZF51.yml │ ├── ZF52.yml │ ├── ZF6.yml │ ├── ZF7.yml │ ├── ZF7L.yml │ ├── ZF7LGT.yml │ └── ZF8.yml ├── corning │ └── EagleXG.yml ├── glass_dict.json ├── hikari │ ├── BAF10.yml │ ├── BAF11.yml │ ├── BAF3.yml │ ├── BAF4.yml │ ├── BAF8.yml │ ├── BAK2.yml │ ├── BAK4.yml │ ├── BASF12.yml │ ├── BASF2.yml │ ├── BASF4.yml │ ├── BASF6.yml │ ├── BASF7.yml │ ├── BASF8.yml │ ├── CaF │ │ ├── NICF-A.yml │ │ ├── NICF-U.yml │ │ └── NICF-V.yml │ ├── E-BAF10.yml │ ├── E-BAF11.yml │ ├── E-BAF12.yml │ ├── E-BAF3.yml │ ├── E-BAF4.yml │ ├── E-BAF8.yml │ ├── E-BAK1.yml │ ├── E-BAK2.yml │ ├── E-BAK4.yml │ ├── E-BALF4.yml │ ├── E-BASF2.yml │ ├── E-BASF6.yml │ ├── E-BASF7.yml │ ├── E-BASF8.yml │ ├── E-BK7.yml │ ├── E-F1.yml │ ├── E-F16.yml │ ├── E-F2.yml │ ├── E-F3.yml │ ├── E-F5.yml │ ├── E-F8.yml │ ├── E-FK01.yml │ ├── E-FK5.yml │ ├── E-FKH1.yml │ ├── E-FKH2.yml │ ├── E-K3.yml │ ├── E-K5.yml │ ├── E-KF6.yml │ ├── E-KZFH1.yml │ ├── E-LAF01.yml │ ├── E-LAF010.yml │ ├── E-LAF016.yml │ ├── E-LAF02.yml │ ├── E-LAF04.yml │ ├── E-LAF05.yml │ ├── E-LAF09.yml │ ├── E-LAF11.yml │ ├── E-LAF2.yml │ ├── E-LAF3.yml │ ├── E-LAF7.yml │ ├── E-LAF9.yml │ ├── E-LAFH2.yml │ ├── E-LAFH3.yml │ ├── E-LAK01.yml │ ├── E-LAK011.yml │ ├── E-LAK02.yml │ ├── E-LAK04.yml │ ├── E-LAK06.yml │ ├── E-LAK09.yml │ ├── E-LAK10.yml │ ├── E-LAK12.yml │ ├── E-LAK13.yml │ ├── E-LAK14.yml │ ├── E-LAK18.yml │ ├── E-LAK7.yml │ ├── E-LAK8.yml │ ├── E-LAK9.yml │ ├── E-LAKH1.yml │ ├── E-LASF01.yml │ ├── E-LASF010.yml │ ├── E-LASF013.yml │ ├── E-LASF014.yml │ ├── E-LASF015.yml │ ├── E-LASF016.yml │ ├── E-LASF017.yml │ ├── E-LASF02.yml │ ├── E-LASF021.yml │ ├── E-LASF03.yml │ ├── E-LASF04.yml │ ├── E-LASF05.yml │ ├── E-LASF08.yml │ ├── E-LASF09.yml │ ├── E-LASFH13.yml │ ├── E-LASFH15.yml │ ├── E-LASFH17.yml │ ├── E-LASFH2.yml │ ├── E-LASFH6.yml │ ├── E-LASFH9.yml │ ├── E-LASKH2.yml │ ├── E-LF5.yml │ ├── E-LF6.yml │ ├── E-LF7.yml │ ├── E-LLF1.yml │ ├── E-LLF2.yml │ ├── E-LLF6.yml │ ├── E-PKH1.yml │ ├── E-PSK02.yml │ ├── E-PSK03.yml │ ├── E-PSKH1.yml │ ├── E-SF03.yml │ ├── E-SF1.yml │ ├── E-SF10.yml │ ├── E-SF11.yml │ ├── E-SF13.yml │ ├── E-SF14.yml │ ├── E-SF15.yml │ ├── E-SF2.yml │ ├── E-SF4.yml │ ├── E-SF5.yml │ ├── E-SF6.yml │ ├── E-SF7.yml │ ├── E-SF8.yml │ ├── E-SFH1.yml │ ├── E-SFH2.yml │ ├── E-SFS3.yml │ ├── E-SK10.yml │ ├── E-SK11.yml │ ├── E-SK12.yml │ ├── E-SK14.yml │ ├── E-SK15.yml │ ├── E-SK16.yml │ ├── E-SK18.yml │ ├── E-SK2.yml │ ├── E-SK4.yml │ ├── E-SK5.yml │ ├── E-SSK1.yml │ ├── E-SSK5.yml │ ├── E-SSK8.yml │ ├── F1.yml │ ├── F2.yml │ ├── F3.yml │ ├── F5.yml │ ├── F8.yml │ ├── J-BAF10.yml │ ├── J-BAF11.yml │ ├── J-BAF12.yml │ ├── J-BAF3.yml │ ├── J-BAF4.yml │ ├── J-BAF8.yml │ ├── J-BAK1.yml │ ├── J-BAK2.yml │ ├── J-BAK4.yml │ ├── J-BALF4.yml │ ├── J-BASF2.yml │ ├── J-BASF6.yml │ ├── J-BASF7.yml │ ├── J-BASF8.yml │ ├── J-BK7.yml │ ├── J-BK7A.yml │ ├── J-F1.yml │ ├── J-F16.yml │ ├── J-F2.yml │ ├── J-F3.yml │ ├── J-F5.yml │ ├── J-F8.yml │ ├── J-FK01.yml │ ├── J-FK01A.yml │ ├── J-FK5.yml │ ├── J-FKH1.yml │ ├── J-FKH2.yml │ ├── J-K3.yml │ ├── J-K5.yml │ ├── J-KF6.yml │ ├── J-KZFH1.yml │ ├── J-KZFH4.yml │ ├── J-LAF01.yml │ ├── J-LAF010.yml │ ├── J-LAF016.yml │ ├── J-LAF016HS.yml │ ├── J-LAF02.yml │ ├── J-LAF04.yml │ ├── J-LAF05.yml │ ├── J-LAF09.yml │ ├── J-LAF2.yml │ ├── J-LAF3.yml │ ├── J-LAF7.yml │ ├── J-LAFH3.yml │ ├── J-LAFH3HS.yml │ ├── J-LAK01.yml │ ├── J-LAK011.yml │ ├── J-LAK02.yml │ ├── J-LAK04.yml │ ├── J-LAK06.yml │ ├── J-LAK09.yml │ ├── J-LAK10.yml │ ├── J-LAK12.yml │ ├── J-LAK13.yml │ ├── J-LAK14.yml │ ├── J-LAK18.yml │ ├── J-LAK7.yml │ ├── J-LAK7R.yml │ ├── J-LAK8.yml │ ├── J-LAK9.yml │ ├── J-LASF01.yml │ ├── J-LASF010.yml │ ├── J-LASF013.yml │ ├── J-LASF014.yml │ ├── J-LASF015.yml │ ├── J-LASF016.yml │ ├── J-LASF017.yml │ ├── J-LASF02.yml │ ├── J-LASF021.yml │ ├── J-LASF021HS.yml │ ├── J-LASF03.yml │ ├── J-LASF05.yml │ ├── J-LASF05HS.yml │ ├── J-LASF08.yml │ ├── J-LASF08A.yml │ ├── J-LASF09.yml │ ├── J-LASF09A.yml │ ├── J-LASFH13.yml │ ├── J-LASFH13HS.yml │ ├── J-LASFH15.yml │ ├── J-LASFH16.yml │ ├── J-LASFH17.yml │ ├── J-LASFH17HS.yml │ ├── J-LASFH2.yml │ ├── J-LASFH21.yml │ ├── J-LASFH22.yml │ ├── J-LASFH23.yml │ ├── J-LASFH24.yml │ ├── J-LASFH24HS.yml │ ├── J-LASFH6.yml │ ├── J-LASFH9.yml │ ├── J-LASFH9A.yml │ ├── J-LASKH2.yml │ ├── J-LF5.yml │ ├── J-LF6.yml │ ├── J-LF7.yml │ ├── J-LLF1.yml │ ├── J-LLF2.yml │ ├── J-LLF6.yml │ ├── J-PKH1.yml │ ├── J-PSK02.yml │ ├── J-PSK03.yml │ ├── J-PSKH1.yml │ ├── J-PSKH4.yml │ ├── J-SF03.yml │ ├── J-SF03HS.yml │ ├── J-SF1.yml │ ├── J-SF10.yml │ ├── J-SF11.yml │ ├── J-SF13.yml │ ├── J-SF14.yml │ ├── J-SF15.yml │ ├── J-SF2.yml │ ├── J-SF4.yml │ ├── J-SF5.yml │ ├── J-SF6.yml │ ├── J-SF6HS.yml │ ├── J-SF7.yml │ ├── J-SF8.yml │ ├── J-SFH1.yml │ ├── J-SFH2.yml │ ├── J-SFS3.yml │ ├── J-SK10.yml │ ├── J-SK11.yml │ ├── J-SK12.yml │ ├── J-SK14.yml │ ├── J-SK15.yml │ ├── J-SK16.yml │ ├── J-SK18.yml │ ├── J-SK2.yml │ ├── J-SK4.yml │ ├── J-SK5.yml │ ├── J-SSK1.yml │ ├── J-SSK5.yml │ ├── J-SSK8.yml │ ├── K3.yml │ ├── K5.yml │ ├── KF6.yml │ ├── KZFH1.yml │ ├── KZFH2.yml │ ├── KZFS4.yml │ ├── LAF09.yml │ ├── LAF11.yml │ ├── LAF2.yml │ ├── LAF3.yml │ ├── LAF7.yml │ ├── LAF9.yml │ ├── LAK011.yml │ ├── LAK04.yml │ ├── LAK09.yml │ ├── LAK12.yml │ ├── LAK7.yml │ ├── LAK9.yml │ ├── LASF01.yml │ ├── LASF010.yml │ ├── LASF02.yml │ ├── LASFH6.yml │ ├── LF5.yml │ ├── LF6.yml │ ├── LF7.yml │ ├── LLF1.yml │ ├── LLF2.yml │ ├── LLF6.yml │ ├── P-FK01S.yml │ ├── P-FKH2S.yml │ ├── P-LAF010S.yml │ ├── P-LAK13S.yml │ ├── P-LASF03S.yml │ ├── P-LASFH11S.yml │ ├── P-LASFH12S.yml │ ├── P-LASFH18S.yml │ ├── P-LASFH19S.yml │ ├── P-PSKH1S.yml │ ├── P-SK12S.yml │ ├── P-SK5S.yml │ ├── PK1.yml │ ├── PK2.yml │ ├── Q-FK01S.yml │ ├── Q-FKH2S.yml │ ├── Q-LAF010S.yml │ ├── Q-LAFPH1S.yml │ ├── Q-LAK13S.yml │ ├── Q-LAK52S.yml │ ├── Q-LAK53S.yml │ ├── Q-LASF03S.yml │ ├── Q-LASFH11S.yml │ ├── Q-LASFH12S.yml │ ├── Q-LASFH18S.yml │ ├── Q-LASFH19S.yml │ ├── Q-LASFH58S.yml │ ├── Q-LASFH59S.yml │ ├── Q-LASFPH2S.yml │ ├── Q-LASFPH3S.yml │ ├── Q-PSKH1S.yml │ ├── Q-PSKH2S.yml │ ├── Q-PSKH4S.yml │ ├── Q-SF6S.yml │ ├── Q-SK12S.yml │ ├── Q-SK15S.yml │ ├── Q-SK52S.yml │ ├── Q-SK55S.yml │ ├── Q-SK5S.yml │ ├── SF03.yml │ ├── SF1.yml │ ├── SF10.yml │ ├── SF11.yml │ ├── SF12.yml │ ├── SF13.yml │ ├── SF14.yml │ ├── SF15.yml │ ├── SF2.yml │ ├── SF4.yml │ ├── SF5.yml │ ├── SF6.yml │ ├── SF7.yml │ ├── SF8.yml │ ├── SF9.yml │ ├── SFS3.yml │ ├── SK15.yml │ ├── SK16.yml │ ├── SK18.yml │ ├── SK2.yml │ ├── SK4.yml │ ├── SK9.yml │ ├── SSK1.yml │ ├── SSK2.yml │ ├── SSK8.yml │ ├── SiO2 │ │ ├── NIFS-A.yml │ │ ├── NIFS-S.yml │ │ ├── NIFS-U.yml │ │ └── NIFS-V.yml │ └── i-line │ │ ├── 4786.yml │ │ ├── 5165.yml │ │ ├── 5742.yml │ │ ├── 5859.yml │ │ └── 7054.yml ├── hoya │ ├── BAC4.yml │ ├── BACD11.yml │ ├── BACD14.yml │ ├── BACD15.yml │ ├── BACD16.yml │ ├── BACD18.yml │ ├── BACD2.yml │ ├── BACD4.yml │ ├── BACD5.yml │ ├── BACED5.yml │ ├── BAF10.yml │ ├── BAF11.yml │ ├── BAFD7.yml │ ├── BAFD8.yml │ ├── BSC7.yml │ ├── E-ADF10.yml │ ├── E-ADF50.yml │ ├── E-BACD10.yml │ ├── E-BACED20.yml │ ├── E-BAF8.yml │ ├── E-C3.yml │ ├── E-CF6.yml │ ├── E-F1.yml │ ├── E-F2.yml │ ├── E-F3.yml │ ├── E-F5.yml │ ├── E-F8.yml │ ├── E-FD1.yml │ ├── E-FD10.yml │ ├── E-FD13.yml │ ├── E-FD15.yml │ ├── E-FD2.yml │ ├── E-FD4.yml │ ├── E-FD5.yml │ ├── E-FD7.yml │ ├── E-FD8.yml │ ├── E-FDS1-W.yml │ ├── E-FDS1.yml │ ├── E-FDS2.yml │ ├── E-FDS3.yml │ ├── E-FEL1.yml │ ├── E-FEL2.yml │ ├── E-FEL6.yml │ ├── E-FL5.yml │ ├── E-FL6.yml │ ├── E-LAF7.yml │ ├── FC5.yml │ ├── FCD1.yml │ ├── FCD10.yml │ ├── FCD100.yml │ ├── FCD10A.yml │ ├── FCD1B.yml │ ├── FCD505.yml │ ├── FCD515.yml │ ├── FCD705.yml │ ├── FD110.yml │ ├── FD140.yml │ ├── FD225.yml │ ├── FD60-W.yml │ ├── FD60.yml │ ├── FDS16-W.yml │ ├── FDS18-W.yml │ ├── FDS18.yml │ ├── FDS24.yml │ ├── FDS90(P).yml │ ├── FDS90-SG.yml │ ├── FDS90.yml │ ├── FF5.yml │ ├── FF8.yml │ ├── LAC10.yml │ ├── LAC12.yml │ ├── LAC13.yml │ ├── LAC14.yml │ ├── LAC7.yml │ ├── LAC8.yml │ ├── LAC9.yml │ ├── LACL60.yml │ ├── LAF2.yml │ ├── LAF3.yml │ ├── LBC3N.yml │ ├── M-BACD12.yml │ ├── M-BACD15.yml │ ├── M-BACD5N.yml │ ├── M-FCD1.yml │ ├── M-FCD500.yml │ ├── M-FD80.yml │ ├── M-FDS1.yml │ ├── M-FDS2.yml │ ├── M-FDS910.yml │ ├── M-LAC130.yml │ ├── M-LAC14.yml │ ├── M-LAC8.yml │ ├── M-LAF81.yml │ ├── M-NBF1.yml │ ├── M-NBFD10.yml │ ├── M-NBFD130.yml │ ├── M-PCD4.yml │ ├── M-PCD51.yml │ ├── M-TAC60.yml │ ├── M-TAC80.yml │ ├── M-TAF1.yml │ ├── M-TAF101.yml │ ├── M-TAF105.yml │ ├── M-TAF31.yml │ ├── M-TAF401.yml │ ├── M-TAFD305.yml │ ├── M-TAFD307.yml │ ├── M-TAFD405.yml │ ├── M-TAFD51.yml │ ├── MC-BACD12.yml │ ├── MC-BACD5N.yml │ ├── MC-FCD1-M20.yml │ ├── MC-FCD500-20.yml │ ├── MC-FDS2.yml │ ├── MC-FDS910-50.yml │ ├── MC-LAC130.yml │ ├── MC-NBF1.yml │ ├── MC-NBFD135.yml │ ├── MC-PCD4-40.yml │ ├── MC-PCD51-70.yml │ ├── MC-TAF1.yml │ ├── MC-TAF101-100.yml │ ├── MC-TAF105.yml │ ├── MC-TAF31-15.yml │ ├── MC-TAF401.yml │ ├── MC-TAFD305.yml │ ├── MC-TAFD307.yml │ ├── MC-TAFD51-50.yml │ ├── MP-BACD12.yml │ ├── MP-BACD15.yml │ ├── MP-BACD5N.yml │ ├── MP-FCD1-M20.yml │ ├── MP-FCD500-20.yml │ ├── MP-FD80.yml │ ├── MP-FDS1.yml │ ├── MP-FDS2.yml │ ├── MP-FDS910-50.yml │ ├── MP-LAC130.yml │ ├── MP-LAC14-80.yml │ ├── MP-LAC8-30.yml │ ├── MP-LAF81.yml │ ├── MP-NBF1.yml │ ├── MP-NBFD10-20.yml │ ├── MP-NBFD130.yml │ ├── MP-PCD4-40.yml │ ├── MP-PCD51-70.yml │ ├── MP-TAC60-90.yml │ ├── MP-TAC80-60.yml │ ├── MP-TAF101-100.yml │ ├── MP-TAF105.yml │ ├── MP-TAF31-15.yml │ ├── MP-TAF401.yml │ ├── MP-TAFD305.yml │ ├── MP-TAFD307.yml │ ├── MP-TAFD405.yml │ ├── MP-TAFD51-50.yml │ ├── NBF1.yml │ ├── NBFD10.yml │ ├── NBFD11.yml │ ├── NBFD12.yml │ ├── NBFD13.yml │ ├── NBFD15-W.yml │ ├── NBFD15.yml │ ├── NBFD3.yml │ ├── PCD4.yml │ ├── PCD40.yml │ ├── PCD51.yml │ ├── TAC2.yml │ ├── TAC4.yml │ ├── TAC6.yml │ ├── TAC8.yml │ ├── TAF1.yml │ ├── TAF2.yml │ ├── TAF3.yml │ ├── TAF3D.yml │ ├── TAF4.yml │ ├── TAF5.yml │ ├── TAFD25.yml │ ├── TAFD30.yml │ ├── TAFD32.yml │ ├── TAFD33.yml │ ├── TAFD35.yml │ ├── TAFD37.yml │ ├── TAFD37A.yml │ ├── TAFD40.yml │ ├── TAFD45.yml │ ├── TAFD55.yml │ ├── TAFD5F.yml │ ├── TAFD5G.yml │ └── TAFD65.yml ├── lightpath │ ├── BD-2.yml │ └── BD6.yml ├── lzos │ ├── BF1.yml │ ├── BF11.yml │ ├── BF16.yml │ ├── BF21.yml │ ├── BF24.yml │ ├── BF25.yml │ ├── BF28.yml │ ├── BF8.yml │ ├── BK10.yml │ ├── BK4.yml │ ├── BK6.yml │ ├── BK8.yml │ ├── CTK12.yml │ ├── CTK19.yml │ ├── CTK3.yml │ ├── CTK8.yml │ ├── CTK9.yml │ ├── F1.yml │ ├── F13.yml │ ├── F4.yml │ ├── F6.yml │ ├── F8.yml │ ├── K8.yml │ ├── KF6.yml │ ├── KF7.yml │ ├── LF5.yml │ ├── LF7.yml │ ├── LF9.yml │ ├── LK3.yml │ ├── LK5.yml │ ├── LK6.yml │ ├── LK7.yml │ ├── OF1.yml │ ├── OK4.yml │ ├── TF1.yml │ ├── TF10.yml │ ├── TF2.yml │ ├── TF3.yml │ ├── TF4.yml │ ├── TF5.yml │ ├── TF7.yml │ ├── TF8.yml │ ├── TK12.yml │ ├── TK14.yml │ ├── TK16.yml │ ├── TK17.yml │ ├── TK2.yml │ ├── TK20.yml │ ├── TK21.yml │ ├── TK23.yml │ └── TK9.yml ├── misc │ └── soda-lime │ │ ├── Rubin-IR.yml │ │ ├── Rubin-bronze.yml │ │ ├── Rubin-clear.yml │ │ ├── Rubin-green.yml │ │ ├── Rubin-grey.yml │ │ ├── Rubin-lowiron.yml │ │ ├── Vogt-10ppm.yml │ │ ├── Vogt-5ppm.yml │ │ └── Vogt-703ppm.yml ├── nsg │ └── Pilkington-Optiwhite.yml ├── ohara │ ├── APL1.yml │ ├── BAH10.yml │ ├── BAH11.yml │ ├── BAH13.yml │ ├── BAH22.yml │ ├── BAH26.yml │ ├── BAH27.yml │ ├── BAH28.yml │ ├── BAH30.yml │ ├── BAH32.yml │ ├── BAH54.yml │ ├── BAH71.yml │ ├── BAH77.yml │ ├── BAH78.yml │ ├── BAL11.yml │ ├── BAL12.yml │ ├── BAL14.yml │ ├── BAL15.yml │ ├── BAL15Y.yml │ ├── BAL2.yml │ ├── BAL22.yml │ ├── BAL3.yml │ ├── BAL35.yml │ ├── BAL35Y.yml │ ├── BAL41.yml │ ├── BAL42.yml │ ├── BAL5.yml │ ├── BAL50.yml │ ├── BAL7.yml │ ├── BAM12.yml │ ├── BAM21.yml │ ├── BAM23.yml │ ├── BAM25.yml │ ├── BAM3.yml │ ├── BAM4.yml │ ├── BAM5.yml │ ├── BAM8.yml │ ├── BAM9.yml │ ├── BPH35.yml │ ├── BPH40.yml │ ├── BPH45.yml │ ├── BPH5.yml │ ├── BPH50.yml │ ├── BPH8.yml │ ├── BPM4.yml │ ├── BPM51.yml │ ├── BSL1.yml │ ├── BSL21.yml │ ├── BSL22.yml │ ├── BSL3.yml │ ├── BSL7.yml │ ├── BSL7Y.yml │ ├── BSM10.yml │ ├── BSM14.yml │ ├── BSM15.yml │ ├── BSM16.yml │ ├── BSM16C.yml │ ├── BSM18.yml │ ├── BSM2.yml │ ├── BSM21.yml │ ├── BSM22.yml │ ├── BSM23.yml │ ├── BSM24.yml │ ├── BSM25.yml │ ├── BSM28.yml │ ├── BSM36.yml │ ├── BSM4.yml │ ├── BSM51Y.yml │ ├── BSM6.yml │ ├── BSM7.yml │ ├── BSM71.yml │ ├── BSM81.yml │ ├── BSM9.yml │ ├── BSM93.yml │ ├── FPL51.yml │ ├── FPL52.yml │ ├── FPL53.yml │ ├── FSL3.yml │ ├── FSL5.yml │ ├── FTL10.yml │ ├── FTL8.yml │ ├── FTM16.yml │ ├── FTM8.yml │ ├── L-BAL35.yml │ ├── L-BAL35P.yml │ ├── L-BAL42.yml │ ├── L-BAL42P.yml │ ├── L-BAL43.yml │ ├── L-BBH1.yml │ ├── L-BBH2.yml │ ├── L-BSL7.yml │ ├── L-LAH53.yml │ ├── L-LAH81.yml │ ├── L-LAH83.yml │ ├── L-LAH84.yml │ ├── L-LAH84P.yml │ ├── L-LAH85.yml │ ├── L-LAH85V.yml │ ├── L-LAH86.yml │ ├── L-LAH87.yml │ ├── L-LAH90.yml │ ├── L-LAH91.yml │ ├── L-LAH94.yml │ ├── L-LAL12.yml │ ├── L-LAL13.yml │ ├── L-LAL15.yml │ ├── L-LAM60.yml │ ├── L-LAM69.yml │ ├── L-LAM72.yml │ ├── L-NBH54.yml │ ├── L-PHL1.yml │ ├── L-PHL2.yml │ ├── L-TIH53.yml │ ├── L-TIM28.yml │ ├── L-TIM28P.yml │ ├── LAH51.yml │ ├── LAH52.yml │ ├── LAH53.yml │ ├── LAH54.yml │ ├── LAH55.yml │ ├── LAH58.yml │ ├── LAH59.yml │ ├── LAH60.yml │ ├── LAH63.yml │ ├── LAH64.yml │ ├── LAH65.yml │ ├── LAH66.yml │ ├── LAH67.yml │ ├── LAH71.yml │ ├── LAH75.yml │ ├── LAH78.yml │ ├── LAH80.yml │ ├── LAL10.yml │ ├── LAL11.yml │ ├── LAL12.yml │ ├── LAL13.yml │ ├── LAL14.yml │ ├── LAL18.yml │ ├── LAL52.yml │ ├── LAL54.yml │ ├── LAL56.yml │ ├── LAL58.yml │ ├── LAL59.yml │ ├── LAL60.yml │ ├── LAL61.yml │ ├── LAL7.yml │ ├── LAL8.yml │ ├── LAL9.yml │ ├── LAM2.yml │ ├── LAM3.yml │ ├── LAM51.yml │ ├── LAM52.yml │ ├── LAM54.yml │ ├── LAM55.yml │ ├── LAM58.yml │ ├── LAM59.yml │ ├── LAM60.yml │ ├── LAM61.yml │ ├── LAM66.yml │ ├── LAM7.yml │ ├── NSL2.yml │ ├── NSL3.yml │ ├── NSL33.yml │ ├── NSL36.yml │ ├── NSL5.yml │ ├── NSL7.yml │ ├── PBH1.yml │ ├── PBH10.yml │ ├── PBH11.yml │ ├── PBH11W.yml │ ├── PBH13.yml │ ├── PBH13W.yml │ ├── PBH14.yml │ ├── PBH14W.yml │ ├── PBH18.yml │ ├── PBH21.yml │ ├── PBH23.yml │ ├── PBH23W.yml │ ├── PBH25.yml │ ├── PBH25W.yml │ ├── PBH3.yml │ ├── PBH3W.yml │ ├── PBH4.yml │ ├── PBH4W.yml │ ├── PBH53.yml │ ├── PBH53W.yml │ ├── PBH55.yml │ ├── PBH56.yml │ ├── PBH6.yml │ ├── PBH6W.yml │ ├── PBH71.yml │ ├── PBH72.yml │ ├── PBL1.yml │ ├── PBL1Y.yml │ ├── PBL2.yml │ ├── PBL21.yml │ ├── PBL22.yml │ ├── PBL25.yml │ ├── PBL25Y.yml │ ├── PBL26.yml │ ├── PBL26Y.yml │ ├── PBL27.yml │ ├── PBL35Y.yml │ ├── PBL6.yml │ ├── PBL6Y.yml │ ├── PBL7.yml │ ├── PBM1.yml │ ├── PBM11.yml │ ├── PBM18Y.yml │ ├── PBM2.yml │ ├── PBM22.yml │ ├── PBM25.yml │ ├── PBM27.yml │ ├── PBM28.yml │ ├── PBM28W.yml │ ├── PBM2Y.yml │ ├── PBM3.yml │ ├── PBM35.yml │ ├── PBM39.yml │ ├── PBM4.yml │ ├── PBM5.yml │ ├── PBM6.yml │ ├── PBM8.yml │ ├── PBM8Y.yml │ ├── PBM9.yml │ ├── PHM51.yml │ ├── PHM52.yml │ ├── PHM53.yml │ ├── S-APL.yml │ ├── S-APL1.yml │ ├── S-BAH10.yml │ ├── S-BAH11.yml │ ├── S-BAH27.yml │ ├── S-BAH28.yml │ ├── S-BAH32.yml │ ├── S-BAH54.yml │ ├── S-BAL11.yml │ ├── S-BAL12.yml │ ├── S-BAL14.yml │ ├── S-BAL2.yml │ ├── S-BAL22.yml │ ├── S-BAL3.yml │ ├── S-BAL35.yml │ ├── S-BAL41.yml │ ├── S-BAL42.yml │ ├── S-BAL50.yml │ ├── S-BAM12.yml │ ├── S-BAM3.yml │ ├── S-BAM4.yml │ ├── S-BSL7.yml │ ├── S-BSM10.yml │ ├── S-BSM14.yml │ ├── S-BSM15.yml │ ├── S-BSM16.yml │ ├── S-BSM18.yml │ ├── S-BSM2.yml │ ├── S-BSM21.yml │ ├── S-BSM22.yml │ ├── S-BSM25.yml │ ├── S-BSM28.yml │ ├── S-BSM36.yml │ ├── S-BSM4.yml │ ├── S-BSM71.yml │ ├── S-BSM81.yml │ ├── S-BSM9.yml │ ├── S-BSM93.yml │ ├── S-FPL51.yml │ ├── S-FPL51Y.yml │ ├── S-FPL52.yml │ ├── S-FPL53.yml │ ├── S-FPL55.yml │ ├── S-FPM2.yml │ ├── S-FPM3.yml │ ├── S-FSL5.yml │ ├── S-FSL5Y.yml │ ├── S-FTL10.yml │ ├── S-FTM16.yml │ ├── S-LAH51.yml │ ├── S-LAH52.yml │ ├── S-LAH52Q.yml │ ├── S-LAH53.yml │ ├── S-LAH53V.yml │ ├── S-LAH54.yml │ ├── S-LAH55.yml │ ├── S-LAH55V.yml │ ├── S-LAH55VS.yml │ ├── S-LAH58.yml │ ├── S-LAH59.yml │ ├── S-LAH60.yml │ ├── S-LAH60V.yml │ ├── S-LAH63.yml │ ├── S-LAH63Q.yml │ ├── S-LAH64.yml │ ├── S-LAH65.yml │ ├── S-LAH65V.yml │ ├── S-LAH65VS.yml │ ├── S-LAH66.yml │ ├── S-LAH67.yml │ ├── S-LAH71.yml │ ├── S-LAH75.yml │ ├── S-LAH79.yml │ ├── S-LAH88.yml │ ├── S-LAH89.yml │ ├── S-LAH92.yml │ ├── S-LAH93.yml │ ├── S-LAH95.yml │ ├── S-LAH96.yml │ ├── S-LAH97.yml │ ├── S-LAL10.yml │ ├── S-LAL11.yml │ ├── S-LAL12.yml │ ├── S-LAL13.yml │ ├── S-LAL14.yml │ ├── S-LAL18.yml │ ├── S-LAL19.yml │ ├── S-LAL20.yml │ ├── S-LAL52.yml │ ├── S-LAL54.yml │ ├── S-LAL54Q.yml │ ├── S-LAL56.yml │ ├── S-LAL58.yml │ ├── S-LAL59.yml │ ├── S-LAL60.yml │ ├── S-LAL61.yml │ ├── S-LAL7.yml │ ├── S-LAL8.yml │ ├── S-LAL9.yml │ ├── S-LAM2.yml │ ├── S-LAM3.yml │ ├── S-LAM51.yml │ ├── S-LAM52.yml │ ├── S-LAM54.yml │ ├── S-LAM55.yml │ ├── S-LAM58.yml │ ├── S-LAM59.yml │ ├── S-LAM60.yml │ ├── S-LAM61.yml │ ├── S-LAM66.yml │ ├── S-LAM7.yml │ ├── S-LAM73.yml │ ├── S-NBH5.yml │ ├── S-NBH51.yml │ ├── S-NBH52.yml │ ├── S-NBH52V.yml │ ├── S-NBH53.yml │ ├── S-NBH53V.yml │ ├── S-NBH55.yml │ ├── S-NBH56.yml │ ├── S-NBH57.yml │ ├── S-NBH8.yml │ ├── S-NBM51.yml │ ├── S-NPH1.yml │ ├── S-NPH1W.yml │ ├── S-NPH2.yml │ ├── S-NPH3.yml │ ├── S-NPH4.yml │ ├── S-NPH5.yml │ ├── S-NPH53.yml │ ├── S-NSL2.yml │ ├── S-NSL3.yml │ ├── S-NSL36.yml │ ├── S-NSL5.yml │ ├── S-PHM51.yml │ ├── S-PHM52.yml │ ├── S-PHM53.yml │ ├── S-TIH1.yml │ ├── S-TIH10.yml │ ├── S-TIH11.yml │ ├── S-TIH13.yml │ ├── S-TIH14.yml │ ├── S-TIH18.yml │ ├── S-TIH20.yml │ ├── S-TIH23.yml │ ├── S-TIH3.yml │ ├── S-TIH4.yml │ ├── S-TIH53.yml │ ├── S-TIH53W.yml │ ├── S-TIH57.yml │ ├── S-TIH6.yml │ ├── S-TIL1.yml │ ├── S-TIL2.yml │ ├── S-TIL25.yml │ ├── S-TIL26.yml │ ├── S-TIL27.yml │ ├── S-TIL6.yml │ ├── S-TIM1.yml │ ├── S-TIM2.yml │ ├── S-TIM22.yml │ ├── S-TIM25.yml │ ├── S-TIM27.yml │ ├── S-TIM28.yml │ ├── S-TIM3.yml │ ├── S-TIM35.yml │ ├── S-TIM39.yml │ ├── S-TIM5.yml │ ├── S-TIM6.yml │ ├── S-TIM8.yml │ ├── S-YGH51.yml │ ├── S-YGH52.yml │ ├── SSL2.yml │ ├── SSL5.yml │ ├── TIH11.yml │ ├── TIH14.yml │ ├── TIH23.yml │ ├── TIH53.yml │ ├── TIH6.yml │ ├── TIM11.yml │ ├── TPH55.yml │ ├── YGH51.yml │ └── YGH52.yml ├── schott │ ├── BAFN6.yml │ ├── BK7G18.yml │ ├── F2.yml │ ├── F2G12.yml │ ├── F2HT.yml │ ├── F5.yml │ ├── FK3.yml │ ├── FK5HTi.yml │ ├── K10.yml │ ├── K5G20.yml │ ├── K7.yml │ ├── KZFS12.yml │ ├── KZFSN4.yml │ ├── LAFN7.yml │ ├── LAK9G15.yml │ ├── LAKL12.yml │ ├── LASF35.yml │ ├── LASFN9.yml │ ├── LF5.yml │ ├── LF5G15.yml │ ├── LF5G19.yml │ ├── LF5HTi.yml │ ├── LITHOSIL-Q.yml │ ├── LITHOTEC-CAF2.yml │ ├── LLF1.yml │ ├── LLF1HTi.yml │ ├── N-BAF10.yml │ ├── N-BAF3.yml │ ├── N-BAF4.yml │ ├── N-BAF51.yml │ ├── N-BAF52.yml │ ├── N-BAK1.yml │ ├── N-BAK2.yml │ ├── N-BAK4.yml │ ├── N-BAK4HT.yml │ ├── N-BALF4.yml │ ├── N-BALF5.yml │ ├── N-BASF2.yml │ ├── N-BASF64.yml │ ├── N-BK10.yml │ ├── N-BK7.yml │ ├── N-BK7HT.yml │ ├── N-BK7HTi.yml │ ├── N-F2.yml │ ├── N-FK5.yml │ ├── N-FK51.yml │ ├── N-FK51A.yml │ ├── N-FK58.yml │ ├── N-K5.yml │ ├── N-KF9.yml │ ├── N-KZFS11.yml │ ├── N-KZFS2.yml │ ├── N-KZFS4.yml │ ├── N-KZFS4HT.yml │ ├── N-KZFS5.yml │ ├── N-KZFS8.yml │ ├── N-LAF2.yml │ ├── N-LAF21.yml │ ├── N-LAF3.yml │ ├── N-LAF32.yml │ ├── N-LAF33.yml │ ├── N-LAF34.yml │ ├── N-LAF35.yml │ ├── N-LAF36.yml │ ├── N-LAF7.yml │ ├── N-LAK10.yml │ ├── N-LAK12.yml │ ├── N-LAK14.yml │ ├── N-LAK21.yml │ ├── N-LAK22.yml │ ├── N-LAK33A.yml │ ├── N-LAK33B.yml │ ├── N-LAK34.yml │ ├── N-LAK7.yml │ ├── N-LAK8.yml │ ├── N-LAK9.yml │ ├── N-LASF31.yml │ ├── N-LASF31A.yml │ ├── N-LASF40.yml │ ├── N-LASF41.yml │ ├── N-LASF43.yml │ ├── N-LASF44.yml │ ├── N-LASF45.yml │ ├── N-LASF45HT.yml │ ├── N-LASF46.yml │ ├── N-LASF46A.yml │ ├── N-LASF46B.yml │ ├── N-LASF9.yml │ ├── N-LASF9HT.yml │ ├── N-PK51.yml │ ├── N-PK52A.yml │ ├── N-PSK3.yml │ ├── N-PSK53.yml │ ├── N-PSK53A.yml │ ├── N-SF1.yml │ ├── N-SF10.yml │ ├── N-SF11.yml │ ├── N-SF14.yml │ ├── N-SF15.yml │ ├── N-SF19.yml │ ├── N-SF2.yml │ ├── N-SF4.yml │ ├── N-SF5.yml │ ├── N-SF56.yml │ ├── N-SF57.yml │ ├── N-SF57HT.yml │ ├── N-SF57HTultra.yml │ ├── N-SF6.yml │ ├── N-SF64.yml │ ├── N-SF66.yml │ ├── N-SF6HT.yml │ ├── N-SF6HTultra.yml │ ├── N-SF8.yml │ ├── N-SK10.yml │ ├── N-SK11.yml │ ├── N-SK14.yml │ ├── N-SK15.yml │ ├── N-SK16.yml │ ├── N-SK2.yml │ ├── N-SK2HT.yml │ ├── N-SK4.yml │ ├── N-SK5.yml │ ├── N-SSK2.yml │ ├── N-SSK5.yml │ ├── N-SSK8.yml │ ├── N-ZK7.yml │ ├── N-ZK7A.yml │ ├── P-BK7.yml │ ├── P-LAF37.yml │ ├── P-LAK35.yml │ ├── P-LASF47.yml │ ├── P-LASF50.yml │ ├── P-LASF51.yml │ ├── P-PK53.yml │ ├── P-SF67.yml │ ├── P-SF68.yml │ ├── P-SF69.yml │ ├── P-SF8.yml │ ├── P-SK57.yml │ ├── P-SK57Q1.yml │ ├── P-SK58A.yml │ ├── P-SK60.yml │ ├── SF1.yml │ ├── SF10.yml │ ├── SF11.yml │ ├── SF14.yml │ ├── SF15.yml │ ├── SF2.yml │ ├── SF4.yml │ ├── SF5.yml │ ├── SF56A.yml │ ├── SF57.yml │ ├── SF57HTultra.yml │ ├── SF6.yml │ ├── SF66.yml │ ├── SF6G05.yml │ ├── SFL57.yml │ ├── SFL6.yml │ ├── infrared │ │ ├── IRG22.yml │ │ ├── IRG23.yml │ │ ├── IRG24.yml │ │ ├── IRG25.yml │ │ ├── IRG26.yml │ │ └── IRG27.yml │ ├── misc │ │ ├── AF32ECO.yml │ │ ├── B270.yml │ │ ├── BOROFLOAT33.yml │ │ ├── D263TECO.yml │ │ └── ZERODUR.yml │ └── obsolete │ │ └── LF7.yml ├── sumita │ ├── K-BK7.yml │ ├── K-BOC20.yml │ ├── K-BOC30.yml │ ├── K-BPG2.yml │ ├── K-BaF8.yml │ ├── K-BaF9.yml │ ├── K-BaFn1.yml │ ├── K-BaFn3.yml │ ├── K-BaSF4.yml │ ├── K-BaSF5.yml │ ├── K-CD120(M).yml │ ├── K-CD120.yml │ ├── K-CD45(M).yml │ ├── K-CD45.yml │ ├── K-CSK120(M).yml │ ├── K-CSK120.yml │ ├── K-CaFK95(M).yml │ ├── K-CaFK95.yml │ ├── K-FIR97UV.yml │ ├── K-FIR98UV.yml │ ├── K-FK5.yml │ ├── K-GFK68(M).yml │ ├── K-GFK68.yml │ ├── K-GFK70(M).yml │ ├── K-GFK70.yml │ ├── K-GIR140.yml │ ├── K-GIR79.yml │ ├── K-LCV93(M).yml │ ├── K-LCV93.yml │ ├── K-LaF2.yml │ ├── K-LaFK50(M).yml │ ├── K-LaFK50.yml │ ├── K-LaFK50T(M).yml │ ├── K-LaFK50T.yml │ ├── K-LaFK55(M).yml │ ├── K-LaFK55.yml │ ├── K-LaFK58(M).yml │ ├── K-LaFK58.yml │ ├── K-LaFK60(M).yml │ ├── K-LaFK60.yml │ ├── K-LaFK65(M).yml │ ├── K-LaFK65.yml │ ├── K-LaFn11.yml │ ├── K-LaFn3.yml │ ├── K-LaFn5.yml │ ├── K-LaK10.yml │ ├── K-LaK11.yml │ ├── K-LaK12.yml │ ├── K-LaK14.yml │ ├── K-LaK18.yml │ ├── K-LaK6.yml │ ├── K-LaK7.yml │ ├── K-LaK8.yml │ ├── K-LaK9.yml │ ├── K-LaKn11.yml │ ├── K-LaKn14.yml │ ├── K-LaKn2.yml │ ├── K-LaKn4.yml │ ├── K-LaKn5.yml │ ├── K-LaKn7.yml │ ├── K-LaSFn1.yml │ ├── K-LaSFn10.yml │ ├── K-LaSFn14.yml │ ├── K-LaSFn16.yml │ ├── K-LaSFn17.yml │ ├── K-LaSFn2.yml │ ├── K-LaSFn21.yml │ ├── K-LaSFn22.yml │ ├── K-LaSFn23.yml │ ├── K-LaSFn3.yml │ ├── K-LaSFn4.yml │ ├── K-LaSFn6.yml │ ├── K-LaSFn7.yml │ ├── K-LaSFn8.yml │ ├── K-LaSFn9.yml │ ├── K-LaSKn1.yml │ ├── K-PBK40(M).yml │ ├── K-PBK40.yml │ ├── K-PBK50(M).yml │ ├── K-PBK50.yml │ ├── K-PFK80(M).yml │ ├── K-PFK80.yml │ ├── K-PFK85(M).yml │ ├── K-PFK85.yml │ ├── K-PFK90(M).yml │ ├── K-PFK90.yml │ ├── K-PG325(M).yml │ ├── K-PG325.yml │ ├── K-PG375(M).yml │ ├── K-PG375.yml │ ├── K-PG395(M).yml │ ├── K-PG395.yml │ ├── K-PMK30(M).yml │ ├── K-PMK30.yml │ ├── K-PSFn1(M).yml │ ├── K-PSFn1.yml │ ├── K-PSFn173(M).yml │ ├── K-PSFn173.yml │ ├── K-PSFn2(M).yml │ ├── K-PSFn2.yml │ ├── K-PSFn202(M).yml │ ├── K-PSFn202.yml │ ├── K-PSFn203(M).yml │ ├── K-PSFn203.yml │ ├── K-PSFn214(M).yml │ ├── K-PSFn214.yml │ ├── K-PSFn215.yml │ ├── K-PSFn3(M).yml │ ├── K-PSFn3.yml │ ├── K-PSFn4(M).yml │ ├── K-PSFn4.yml │ ├── K-PSFn5(M).yml │ ├── K-PSFn5.yml │ ├── K-PSK100(M).yml │ ├── K-PSK100.yml │ ├── K-PSK11(M).yml │ ├── K-PSK11.yml │ ├── K-PSK200(M).yml │ ├── K-PSK200.yml │ ├── K-PSK300(M).yml │ ├── K-PSK300.yml │ ├── K-PSK400(M).yml │ ├── K-PSK400.yml │ ├── K-PSK500(M).yml │ ├── K-PSK500.yml │ ├── K-PSKn2.yml │ ├── K-SFLD1.yml │ ├── K-SFLD11.yml │ ├── K-SFLD14.yml │ ├── K-SFLD4.yml │ ├── K-SFLD6.yml │ ├── K-SFLD66.yml │ ├── K-SFLD8.yml │ ├── K-SFLDn3.yml │ ├── K-SK14.yml │ ├── K-SK15.yml │ ├── K-SK16RH.yml │ ├── K-SK18.yml │ ├── K-SK18RH.yml │ ├── K-SK4.yml │ ├── K-SK5.yml │ ├── K-SK7.yml │ ├── K-SKF6(M).yml │ ├── K-SKF6.yml │ ├── K-SKLD120(M).yml │ ├── K-SKLD120.yml │ ├── K-SSK1.yml │ ├── K-SSK3.yml │ ├── K-SSK4.yml │ ├── K-SSK9.yml │ ├── K-VC100(M).yml │ ├── K-VC100.yml │ ├── K-VC179(M).yml │ ├── K-VC179.yml │ ├── K-VC181(M).yml │ ├── K-VC181.yml │ ├── K-VC185(M).yml │ ├── K-VC185.yml │ ├── K-VC78(M).yml │ ├── K-VC78.yml │ ├── K-VC79(M).yml │ ├── K-VC79.yml │ ├── K-VC80(M).yml │ ├── K-VC80.yml │ ├── K-VC82(M).yml │ ├── K-VC82.yml │ ├── K-VC89(M).yml │ ├── K-VC89.yml │ ├── K-VC90(M).yml │ ├── K-VC90.yml │ ├── K-VC91(M).yml │ ├── K-VC91.yml │ ├── K-VC99(M).yml │ ├── K-VC99.yml │ ├── K-ZnSF8(M).yml │ └── K-ZnSF8.yml └── vitron │ ├── IG2.yml │ ├── IG3.yml │ ├── IG4.yml │ ├── IG5.yml │ └── IG6.yml ├── index.py ├── iotables.py ├── optimize.py ├── optplot.py ├── ray.py ├── raygroup.py ├── transforms.py └── utils.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- 1 | # This workflow will upload a Python Package using Twine when a release is created 2 | # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries 3 | 4 | # This workflow uses actions that are not certified by GitHub. 5 | # They are provided by a third-party and are governed by 6 | # separate terms of service, privacy policy, and support 7 | # documentation. 8 | 9 | name: Upload Python Package 10 | 11 | on: 12 | release: 13 | types: [published] 14 | 15 | permissions: 16 | contents: read 17 | 18 | jobs: 19 | deploy: 20 | 21 | runs-on: ubuntu-latest 22 | 23 | steps: 24 | - uses: actions/checkout@v4 25 | - name: Set up Python 26 | uses: actions/setup-python@v3 27 | with: 28 | python-version: '3.12' 29 | - name: Install dependencies 30 | run: | 31 | python -m pip install --upgrade pip 32 | pip install build 33 | - name: Build package 34 | run: python -m build 35 | - name: Publish package 36 | uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 37 | with: 38 | user: __token__ 39 | password: ${{ secrets.PYPI_API_TOKEN }} 40 | -------------------------------------------------------------------------------- /.github/workflows/python-tests.yml: -------------------------------------------------------------------------------- 1 | name: Python Tests 2 | on: 3 | pull_request: 4 | branches: [ master ] 5 | 6 | jobs: 7 | test-and-typecheck: 8 | runs-on: ubuntu-latest 9 | strategy: 10 | matrix: 11 | python-version: ['3.10', '3.11', '3.12'] 12 | 13 | steps: 14 | - uses: actions/checkout@v4 15 | 16 | - name: Set up Miniconda 17 | uses: conda-incubator/setup-miniconda@v3 18 | with: 19 | auto-update-conda: true 20 | python-version: ${{ matrix.python-version }} 21 | 22 | - name: Install dependencies 23 | shell: bash -l {0} 24 | run: | 25 | conda create -n tracepyci python=${{ matrix.python-version }} --yes 26 | conda activate tracepyci 27 | conda install --yes numpy scipy matplotlib scikit-learn pandas pytest pytest-cov 28 | pip install mypy types-PyYAML pandas-stubs 29 | pip install . 30 | 31 | - name: Run tests 32 | shell: bash -l {0} 33 | run: | 34 | conda activate tracepyci 35 | pytest tests/ 36 | 37 | - name: Run type checking 38 | shell: bash -l {0} 39 | run: | 40 | conda activate tracepyci 41 | mypy tracepy/ --ignore-missing-imports -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # Distribution / packaging 7 | .Python 8 | env/ 9 | build/ 10 | _build/ 11 | develop-eggs/ 12 | dist/ 13 | downloads/ 14 | eggs/ 15 | .eggs/ 16 | lib/ 17 | lib64/ 18 | parts/ 19 | sdist/ 20 | var/ 21 | *.egg-info/ 22 | .installed.cfg 23 | *.egg 24 | .pytest_cache 25 | 26 | # Installer logs 27 | pip-log.txt 28 | pip-delete-this-directory.txt 29 | 30 | # Sphinx documentation 31 | docs/_build/ 32 | 33 | # ipython 34 | .ipynb_checkpoints 35 | 36 | .DS_store 37 | 38 | #mkdocs 39 | site/ 40 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- 1 | # Read the Docs configuration file for MkDocs projects 2 | # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details 3 | 4 | # Required 5 | version: 2 6 | 7 | # Set the version of Python and other tools you might need 8 | build: 9 | os: ubuntu-22.04 10 | tools: 11 | python: "3.12" 12 | 13 | mkdocs: 14 | configuration: mkdocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Gavin Niendorf 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include tracepy/glass/glass_dict.json 2 | 3 | include tracepy/glass/ami/*.yml 4 | include tracepy/glass/barberini/*.yml 5 | include tracepy/glass/cdgm/*.yml 6 | include tracepy/glass/corning/*.yml 7 | include tracepy/glass/hikari/*.yml 8 | include tracepy/glass/hoya/*.yml 9 | include tracepy/glass/lightpath/*.yml 10 | include tracepy/glass/lzos/*.yml 11 | include tracepy/glass/misc/*.yml 12 | include tracepy/glass/nsg/*.yml 13 | include tracepy/glass/ohara/*.yml 14 | include tracepy/glass/schott/*.yml 15 | include tracepy/glass/sumita/*.yml 16 | include tracepy/glass/vitron/*.yml 17 | include tracepy/glass/barberini/*.yml 18 | 19 | include tracepy/glass/hikari/CaF/*.yml 20 | include tracepy/glass/hikari/i-line/*.yml 21 | include tracepy/glass/hikari/SiO2/*.yml 22 | 23 | include tracepy/glass/misc/soda-lime/*.yml 24 | 25 | include tracepy/glass/schott/infared/*.yml 26 | include tracepy/glass/schott/misc/*.yml 27 | include tracepy/glass/schott/obsolete/*.yml 28 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## TracePy 2 | 3 | [![Documentation Status](https://readthedocs.org/projects/tracepy/badge/?version=latest)](https://tracepy.readthedocs.io/en/latest/?badge=latest) 4 | [![PyPI version](https://badge.fury.io/py/tracepy.svg?refresh=true)](https://badge.fury.io/py/tracepy) 5 | 6 | Ray Tracing and Optical Design in Python 7 | 8 | ## Overview 9 | 10 | TracePy is a sequential ray tracing package written in Python 3 for designing optical systems in the geometric optics regime. It features lens optimization from Scipy. 11 | 12 | ## Installation 13 | 14 | To use TracePy you can either clone the repository and use the command "pip install ." in the download directory, or you can download TracePy directly through pypi with the command below. 15 | 16 | ``` 17 | pip install tracepy 18 | ``` 19 | 20 | ## Examples 21 | 22 | To get started using the software, you can look at the examples provided in the 'examples' folder. The UI for TracePy is most similar to BEAM4, and TracePy's ray tracing algorithm was recreated from Spencer and Murty's iconic paper, "General Ray-Tracing Procedure". 23 | -------------------------------------------------------------------------------- /docs/images/tracepy_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracePy-Org/tracepy/dcedacff0ba51e5ebc2b0ed4ac495c162c020e43/docs/images/tracepy_logo.png -------------------------------------------------------------------------------- /docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracePy-Org/tracepy/dcedacff0ba51e5ebc2b0ed4ac495c162c020e43/docs/img/favicon.ico -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | # TracePy - Optical Design in Python 2 | 3 | drawing 4 | 5 | # Overview 6 | 7 | TracePy is a sequential ray tracing package written in Python for designing optical systems in the geometric optics regime. TracePy features lens optimization from Scipy. TracePy is currently in active development and any collaborators would be welcome. 8 | 9 | ## Installation 10 | 11 | To use TracePy I suggest cloning the repository and using the command "pip install ." in the downloaded directory. You can also download TracePy directly through pypi with the command below. 12 | 13 | ``` 14 | pip install tracepy 15 | ``` 16 | 17 | ## Examples 18 | 19 | To get started using the software, I suggest looking at the examples provided in the examples folder. The UI for TracePy is most similar to BEAM4, and TracePy's ray tracing algorithm was recreated mostly from Spencer and Murty's iconic paper, "General Ray-Tracing Procedure". 20 | 21 | ## Contributing 22 | 23 | I would suggest reading Spencer and Murty's paper, ["General Ray-Tracing Procedure"](https://www.osapublishing.org/josa/viewmedia.cfm?uri=josa-52-6-672&seq=0) for an overview of TracePy's algorithm. If you have any questions feel free to contact me at gavinniendorf@gmail.com. -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: TracePy 2 | 3 | nav: 4 | - Home: index.md 5 | 6 | theme: readthedocs 7 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | name = tracepy 3 | author = Gavin Niendorf 4 | author-email = gavinniendorf@gmail.com 5 | home-page = http://tracepy.readthedocs.io 6 | description = Ray tracing and optical design in Python 7 | packages = tracepy 8 | long-description = file: README.md 9 | license = MIT 10 | platform = any 11 | 12 | keywords = 13 | optics 14 | ray-tracing 15 | optimization 16 | geometrical optics 17 | optical-design 18 | optical-engineering 19 | classifiers = 20 | Intended Audience :: Science/Research 21 | License :: OSI Approved :: MIT License 22 | Programming Language :: Python :: 3.10 23 | Programming Language :: Python :: 3.11 24 | Programming Language :: Python :: 3.12 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | from setuptools import setup 2 | 3 | # read the contents of your README file 4 | from os import path 5 | this_directory = path.abspath(path.dirname(__file__)) 6 | with open(path.join(this_directory, 'README.md')) as f: 7 | long_description = f.read() 8 | 9 | setup(name='tracepy', 10 | version='0.2.1', 11 | description='Optical design software for python.', 12 | url='http://github.com/GNiendorf/tracepy', 13 | long_description=long_description, 14 | long_description_content_type='text/markdown', 15 | author='Gavin Niendorf', 16 | author_email='gavinniendorf@gmail.com', 17 | license='MIT', 18 | packages=['tracepy'], 19 | install_requires=[ 20 | 'numpy', 21 | 'matplotlib', 22 | 'pandas', 23 | 'scipy', 24 | 'scikit-learn', 25 | 'PyYAML' 26 | ], 27 | include_package_data=True, 28 | ) 29 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracePy-Org/tracepy/dcedacff0ba51e5ebc2b0ed4ac495c162c020e43/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_hyperbolic.py: -------------------------------------------------------------------------------- 1 | import tracepy as tp 2 | 3 | lens = { 4 | 'action': 'refraction', 5 | 'P': 2., 6 | 'kappa': -1.25, 7 | 'c': -2, 8 | 'Diam': 2.2 9 | } 10 | 11 | back_lens = { 12 | 'action': 'refraction', 13 | 'P': 1., 14 | 'N': 1.5, 15 | 'Diam': 2.2 16 | } 17 | 18 | stop = { 19 | 'action': 'stop', 20 | 'P': 3., 21 | 'Diam': 2.2 22 | } 23 | 24 | def test_rms_hyperbolic(): 25 | geo = [back_lens, lens, stop] 26 | ray_group = tp.ray_plane(geo, [0., 0., 0.], 1.1, d=[0., 0., 1.], nrays=100) 27 | rms = tp.spot_rms(geo, ray_group) 28 | assert rms == 0. -------------------------------------------------------------------------------- /tests/test_parabolic.py: -------------------------------------------------------------------------------- 1 | import tracepy as tp 2 | 3 | mirror = { 4 | 'action': 'reflection', 5 | 'P': 1.5, 6 | 'kappa': 0., 7 | 'c': -0.5, 8 | 'Diam': 2.2, 9 | } 10 | 11 | stop = { 12 | 'action': 'stop', 13 | 'P': 0.5, 14 | 'Diam': 0.2 15 | } 16 | 17 | def test_rms_parabolic(): 18 | geo = [mirror, stop] 19 | ray_group = tp.ray_plane(geo, [0., 0., -1.5], 1.1, d=[0., 0., 1.], nrays=100) 20 | rms = tp.spot_rms(geo, ray_group) 21 | assert rms == 0. -------------------------------------------------------------------------------- /tests/test_transform.py: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | 3 | from tracepy import gen_rot 4 | 5 | def test_rot(): 6 | """ Simple rotation matrix cases. """ 7 | assert np.all(gen_rot([0., 0., 0.]) == np.identity(3)) -------------------------------------------------------------------------------- /tracepy/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Ray tracing and optical design module for Python 3 | ================================================ 4 | 5 | TracePy is a sequential ray tracing package written 6 | in Python for designing optical systems in the geometric 7 | optics regime. It features lens optimization from Scipy. 8 | TracePy is currently in active development and any collaborators 9 | would be welcome. 10 | """ 11 | 12 | from .ray import RayGroup 13 | from .geometry import geometry 14 | from .optimize import optimize 15 | from .geoplot import plotxz, plotyz, plot2d 16 | from .optplot import spotdiagram, plotobject, rayaberration, spot_rms 17 | from .iotables import save_optics 18 | from .raygroup import ray_plane 19 | from .index import cauchy_two_term, glass_index 20 | from .utils import gen_rot -------------------------------------------------------------------------------- /tracepy/constants.py: -------------------------------------------------------------------------------- 1 | # Constants used by optimizer 2 | SURV_CONST = 100 # Weight of failed propagation. 3 | MAX_RMS = 999 # Maximum RMS penalty for trace error. 4 | 5 | # Constants used for ray objects 6 | MAX_INTERSECTION_ITERATIONS = 1e4 # Max iter before failed intersection search. 7 | MAX_REFRACTION_ITERATIONS = 1e5 # Max iter before failed refraction. 8 | INTERSECTION_CONVERGENCE_TOLERANCE = 1e-6 # Tolerance for intersection search. 9 | REFRACTION_CONVERGENCE_TOLERANCE = 1e-15 # Tolerance for refraction. 10 | 11 | # Constants used for plotting 12 | PLOT_ROUNDING_ACC = 14 # Rounding accuracy for spot diagrams and plots. -------------------------------------------------------------------------------- /tracepy/exceptions.py: -------------------------------------------------------------------------------- 1 | class NormalizationError(Exception): 2 | """ Custom exception for unnormalized input. """ 3 | 4 | class NotOnSurfaceError(Exception): 5 | """ Error for rays that do not intersect with a surface. """ 6 | 7 | class TraceError(Exception): 8 | """ Custom error for lens systems where no rays survive being traced. """ 9 | 10 | class InvalidGeometry(Exception): 11 | """ Invalid parameters were given to define a geometry object. """ 12 | -------------------------------------------------------------------------------- /tracepy/glass/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracePy-Org/tracepy/dcedacff0ba51e5ebc2b0ed4ac495c162c020e43/tracepy/glass/__init__.py -------------------------------------------------------------------------------- /tracepy/glass/ami/AMTIR-1.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Amorphous Materials AMTIR-1 Information (2012) - downloaded 2014-01-11" 6 | DATA: 7 | - type: tabulated nk 8 | data: | 9 | 1.0 2.5977 5.4908E-07 10 | 1.064 2.5862 5.5882E-07 11 | 1.5 2.5466 3.5810E-07 12 | 2.0 2.5306 4.7746E-07 13 | 2.4 2.525 1.9099E-07 14 | 3.0 2.5192 2.3873E-07 15 | 4.0 2.5146 3.1831E-07 16 | 5.0 2.5117 7.9577E-07 17 | 6.0 2.5092 4.7746E-07 18 | 7.0 2.5068 5.5704E-07 19 | 8.0 2.5042 6.3662E-07 20 | 9.0 2.5013 7.1620E-07 21 | 10.0 2.4981 7.9577E-07 22 | 11.0 2.4946 2.6261E-06 23 | 12.0 2.4905 1.4324E-05 24 | 13.0 2.486 1.5518E-05 25 | 14.0 2.4825 1.4483E-05 26 | -------------------------------------------------------------------------------- /tracepy/glass/ami/AMTIR-2.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Amorphous Materials AMTIR-2 Information (2013) - downloaded 2014-01-11" 6 | DATA: 7 | - type: formula 1 8 | wavelength_range: 1 13 9 | coefficients: 0 4.9948719 0.24164 0.1207152 19 1.7123685 0.48328 10 | - type: tabulated k 11 | data: | 12 | 1.0 4.4563E-07 13 | 1.064 3.3868E-07 14 | 1.25 2.2879E-07 15 | 1.5 1.9099E-07 16 | 1.75 2.0889E-07 17 | 2.0 2.3873E-07 18 | 3.0 2.3873E-07 19 | 4.0 3.1831E-07 20 | 5.0 7.9577E-07 21 | 6.0 4.7746E-07 22 | 7.0 5.5704E-07 23 | 8.0 6.3662E-07 24 | 9.0 7.1620E-07 25 | 10.0 7.9577E-07 26 | 11.0 1.4006E-06 27 | 12.0 2.9603E-06 28 | 13.0 2.2759E-05 29 | -------------------------------------------------------------------------------- /tracepy/glass/ami/AMTIR-3.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Handbook of Optics, Vol. 2, 2nd edition. McGraw-Hill 1994" 6 | DATA: 7 | - type: formula 1 8 | wavelength_range: 3 14 9 | coefficients: 0 5.8505 0.29192 1.4536 42.714 10 | -------------------------------------------------------------------------------- /tracepy/glass/ami/AMTIR-6.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Amorphous Materials AMTIR-6 Information (2012) - downloaded 2014-01-11" 6 | DATA: 7 | - type: tabulated nk 8 | data: | 9 | 0.6439 2.5976 2.1521E-06 10 | 0.7065 2.5586 7.3088E-07 11 | 1.014 2.4757 8.0692E-08 12 | 1.530 2.4380 1.2175E-07 13 | 1.970 2.4268 1.5677E-07 14 | 3.0 2.4152 7.1620E-07 15 | 4.0 2.4116 9.5493E-07 16 | 5.0 2.4074 2.3873E-07 17 | 6.0 2.4034 2.3873E-07 18 | 7.0 2.3989 1.1141E-06 19 | 8.0 2.3937 2.2918E-06 20 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D0082.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D0082 glass specifications, 2010-08" 6 | COMMENTS: "20 °C
High Index Glass; Colour: clear; Application: High index light weight glass for corrective lenses with very high power" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.9238 11 | 0.47999 1.9083 12 | 0.48613 1.9066 13 | 0.54607 1.8929 14 | 0.58756 1.8860 15 | 0.58929 1.8858 16 | 0.64385 1.8789 17 | 0.65627 1.8776 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D0191.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D0191 glass specifications, 2010-06" 6 | COMMENTS: "20 °C
Mold Glass; Colour: clear; Application: Special glass, in particular suitable for a rapid chemical toughening without problems. The ideal material for moulds for the manufacture of plastic lenses." 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5338 11 | 0.47999 1.5296 12 | 0.48613 1.5291 13 | 0.54607 1.5251 14 | 0.58756 1.5230 15 | 0.58929 1.5229 16 | 0.64385 1.5208 17 | 0.65627 1.5204 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D0290.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D0290 glass specifications, 2010-06" 6 | COMMENTS: "20 °C
Normal Crown Glass (Uni/Bifocal); Colour: clear; Application: High index glass for corrective lenses" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.6181 11 | 0.47999 1.6111 12 | 0.48613 1.6103 13 | 0.54607 1.6040 14 | 0.58756 1.6008 15 | 0.58929 1.6007 16 | 0.64385 1.5974 17 | 0.65627 1.5967 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D0391.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D0391 glass specifications, 2010-06" 6 | COMMENTS: "20 °C
Normal Crown Glass (Uni/Bifocal); Colour: clear; Application: UV-absorbing glass for corrective lenses also suitable for technical applications" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5341 11 | 0.47999 1.5297 12 | 0.48613 1.5292 13 | 0.54607 1.5251 14 | 0.58756 1.5230 15 | 0.58929 1.5229 16 | 0.64385 1.5207 17 | 0.65627 1.5203 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D0587.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D0587 glass specifications, 2011-01" 6 | COMMENTS: "20 °C
Photochromic Glass; Colour: clear; Application: Lower segment glass for photochromic ophthalmic crown glass" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.6031 11 | 0.47999 1.5965 12 | 0.48613 1.5958 13 | 0.54607 1.5898 14 | 0.58756 1.5867 15 | 0.58929 1.5866 16 | 0.64385 1.5835 17 | 0.65627 1.5829 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D0687.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D0587 glass specifications, 2011-01" 6 | COMMENTS: "20 °C
Photochromic Glass; Colour: clear; Application: Lower segment glass for photochromic ophthalmic crown glass" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.6779 11 | 0.47999 1.6684 12 | 0.48613 1.6673 13 | 0.54607 1.6588 14 | 0.58756 1.6545 15 | 0.58929 1.6543 16 | 0.64385 1.6500 17 | 0.65627 1.6492 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D0785.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D0785 glass specifications, 2010-08" 6 | COMMENTS: "20 °C
High Index Glass; Colour: clear; Application: High index light weight glass for corrective lenses with very high power" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.8239 11 | 0.47999 1.8120 12 | 0.48613 1.8107 13 | 0.54607 1.8000 14 | 0.58756 1.7946 15 | 0.58929 1.7944 16 | 0.64385 1.7890 17 | 0.65627 1.7880 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D0888.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D0888 glass specifications, 2010-08" 6 | COMMENTS: "20 °C
High Index Glass; Colour: clear; Application: High index light weight glass for corrective lenses with high power" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.7237 11 | 0.47999 1.7145 12 | 0.48613 1.7135 13 | 0.54607 1.7052 14 | 0.58756 1.7010 15 | 0.58929 1.7008 16 | 0.64385 1.6965 17 | 0.65627 1.6957 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D0891.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D0891 glass specifications, 2010-06" 6 | COMMENTS: "20 °C
Normal Crown Glass (Uni/Bifocal); Colour: clear; Application: UV-absorbing glass for corrective lenses" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5340 11 | 0.47999 1.5297 12 | 0.48613 1.5292 13 | 0.54607 1.5251 14 | 0.58756 1.5230 15 | 0.58929 1.5229 16 | 0.64385 1.5207 17 | 0.65627 1.5203 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D0991.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D0991 glass specifications, 2010-06" 6 | COMMENTS: "20 °C
Mold Glass; Colour: clear; Application: Special glass for moulds, in particular suitable for a rapid chemical toughening without problems." 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5343 11 | 0.47999 1.5298 12 | 0.48613 1.5293 13 | 0.54607 1.5251 14 | 0.58756 1.5229 15 | 0.58929 1.5228 16 | 0.64385 1.5205 17 | 0.65627 1.5201 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D1125.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D1125 glass specifications, 2010-08" 6 | COMMENTS: "20 °C
Photochromic Glass; Colour: grey; Application: High index glass sensitive to light for corrective lenses and sun glare filter; luminous transmittance range 87% (τ0) / 25% (τ1) or filter categories 0 / 2 respectively" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.6185 11 | 0.47999 1.6113 12 | 0.48613 1.6104 13 | 0.54607 1.6040 14 | 0.58756 1.6007 15 | 0.58929 1.6006 16 | 0.64385 1.5972 17 | 0.65627 1.5965 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D1214.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D1214 glass specifications, 2010-05" 6 | COMMENTS: "20 °C
Sun Protection Glass; Colour: grey; Application: Dark tinted sunglare filter with with IR- and high UV- absorption filter category 3 acc. to DIN EN 1836" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5361 11 | 0.47999 1.5307 12 | 0.48613 1.5302 13 | 0.54607 1.5251 14 | 0.58756 1.5226 15 | 0.58929 1.5225 16 | 0.64385 1.5199 17 | 0.65627 1.5195 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D1219.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D1219 glass specifications, 2010-08" 6 | COMMENTS: "20 °C
Sun Protection Glass; Colour: grey; Application: medium tinted sunglare filter with high UV- absorption filter category 2 acc. to DIN EN 1836 (for τv < 18% filter category 3)" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5364 11 | 0.47999 1.5311 12 | 0.48613 1.5305 13 | 0.54607 1.5256 14 | 0.58756 1.5230 15 | 0.58929 1.5230 16 | 0.64385 1.5201 17 | 0.65627 1.5200 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D1230.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D1230 glass specifications, 2010-09" 6 | COMMENTS: "20 °C
Sun Protection Glass; Colour: grey; Application: medium tinted sunglare filter with UV-absorption filter category 2 acc. to DIN EN 1836" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5504 11 | 0.47999 1.5381 12 | 0.48613 1.5376 13 | 0.54607 1.5331 14 | 0.58756 1.5307 15 | 0.58929 1.5306 16 | 0.64385 1.5282 17 | 0.65627 1.5278 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D1420_1.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D1420 1 glass specifications, 2010-08" 6 | COMMENTS: "20 °C
Sun Protection Glass; Colour: grey; Application: Neutral Crown Shade C medium tinted sunglare filter with IR- and UV-absorption filter category 2 acc. to DIN EN 1836 (for τv < 18% filter category 3)" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5354 11 | 0.47999 1.5305 12 | 0.48613 1.5300 13 | 0.54607 1.5255 14 | 0.58756 1.5232 15 | 0.58929 1.5231 16 | 0.64385 1.5207 17 | 0.65627 1.5202 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D1426-D1526.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D1426/D1526 glass specifications, 2010-03" 6 | COMMENTS: "20 °C
Photochromic Glass; Colour: grey; Application: Glass sensitive to light for corrective lenses and sun glare filter; luminous transmittance range 91% (τ0) / 25% (τ1) or filter categories 0 / 2 respectively and UV-absorption" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5342 11 | 0.47999 1.5298 12 | 0.48613 1.5293 13 | 0.54607 1.5251 14 | 0.58756 1.5229 15 | 0.58929 1.5228 16 | 0.64385 1.5205 17 | 0.65627 1.5201 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D1511.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D1511 glass specifications, 2010-05" 6 | COMMENTS: "20 °C
Sun Protection Glass; Colour: grey; Application: dark tinted sunglare filter with IR- and high UV-absorption filter category 3 acc. to DIN EN 1836" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5360 11 | 0.47999 1.5306 12 | 0.48613 1.5302 13 | 0.54607 1.5251 14 | 0.58756 1.5225 15 | 0.58929 1.5224 16 | 0.64385 1.5199 17 | 0.65627 1.5196 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D1520.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D1520 glass specifications, 2010-06" 6 | COMMENTS: "20 °C
Sun Protection Glass; Colour: grey; Application: medium tinted sunglare filter with high UV-absorption filter category 2 acc. to DIN EN 1836 (for τv < 18% filter category 3)" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5380 11 | 0.47999 1.5330 12 | 0.48613 1.5324 13 | 0.54607 1.5278 14 | 0.58756 1.5255 15 | 0.58929 1.5254 16 | 0.64385 1.5230 17 | 0.65627 1.5225 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D1616.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D1616 glass specifications, 2010-05" 6 | COMMENTS: "20 °C
Sun Protection Glass; Colour: greyish-green; Application: dark tinted sunglare filter with high UV- absorption filter category 3 acc. to DIN EN 1836 (for τv > 18 % filter category 2)" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5355 11 | 0.47999 1.5304 12 | 0.48613 1.5298 13 | 0.54607 1.5251 14 | 0.58756 1.5227 15 | 0.58929 1.5226 16 | 0.64385 1.5201 17 | 0.65627 1.5196 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D4150.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D4150 glass specifications, 2010-11" 6 | COMMENTS: "20 °C
Sun Protection Glass; Colour: blue; Application: light tinted sunglare filter with contrast intensification and UV-absorption filter category 1 acc. to DIN EN 1836" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5624 11 | 0.47999 1.5569 12 | 0.54607 1.5512 13 | 0.58929 1.5485 14 | 0.64385 1.5458 15 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D5336_1.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D5336 1 glass specifications, 2010-08" 6 | COMMENTS: "20 °C
Sun Protection Glass; Colour: green; Application: Green Crown Shade C medium tinted sunglare filter with IR- and UV-absorption filter category 2 acc. to DIN EN 1836" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5357 11 | 0.47999 1.5308 12 | 0.48613 1.5302 13 | 0.54607 1.5256 14 | 0.58756 1.5232 15 | 0.58929 1.5231 16 | 0.64385 1.5206 17 | 0.65627 1.5201 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D6117.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D6117 glass specifications, 2010-06" 6 | COMMENTS: "20 °C
Sun Protection Glass; Colour: brown; Application: dark tinted sunglare filter with high UV- absorption filter category 3 acc. to DIN EN 1836 (for τv > 18% filter category 2)" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5194 11 | 0.47999 1.5153 12 | 0.48613 1.5147 13 | 0.54607 1.5110 14 | 0.58756 1.5090 15 | 0.58929 1.5089 16 | 0.64385 1.5069 17 | 0.65627 1.5063 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D6420.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D6420 glass specifications, 2010-08" 6 | COMMENTS: "20 °C
Sun Protection Glass; Colour: brown; Application: medium tinted sunglare filter with high UV- and IR- absorption filter category 2 acc. to DIN EN 1836 (for τv > 18% filter category 3)" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5356 11 | 0.47999 1.5305 12 | 0.48613 1.5298 13 | 0.54607 1.5251 14 | 0.58756 1.5226 15 | 0.58929 1.5225 16 | 0.64385 1.5200 17 | 0.65627 1.5195 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D6526-D6626.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D6526/D6626 glass specifications, 2010-11" 6 | COMMENTS: "20 °C
Photochromic Glass; Colour: brown; Application: Glass sensitive to light for corrective lenses and sun glare filter; luminous transmittance range 89% (τ0) / 27% (τ1) or filter categories 0 / 2 respectively and UV-absorption" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5342 11 | 0.47999 1.5298 12 | 0.48613 1.5293 13 | 0.54607 1.5251 14 | 0.58756 1.5229 15 | 0.58929 1.5228 16 | 0.64385 1.5205 17 | 0.65627 1.5201 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D6625.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D6625 glass specifications, 2011-03" 6 | COMMENTS: "20 °C
Photochromic Glass; Colour: darkbrown; Application: High index glass sensitive to light for corrective lenses and sun glare filter; luminous transmittance range 87% (τ0) / 25% (τ1) or filter categories 0 / 2 respectively and UV-absorption" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.6185 11 | 0.47999 1.6113 12 | 0.48613 1.6104 13 | 0.54607 1.6040 14 | 0.58756 1.6007 15 | 0.58929 1.6006 16 | 0.64385 1.5972 17 | 0.65627 1.5965 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D6726-D6826.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D6726/D6826 glass specifications, 2010-11" 6 | COMMENTS: "20 °C
Photochromic Glass; Colour: grey-brown; Application: Glass sensitive to light for corrective lenses and sun glare filter; luminous transmittance range 89% (τ0) / 26% (τ1) or filter categories 0 / 2 respectively and UV-absorption" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5343 11 | 0.47999 1.5298 12 | 0.48613 1.5293 13 | 0.54607 1.5251 14 | 0.58756 1.5229 15 | 0.58929 1.5228 16 | 0.64385 1.5205 17 | 0.65627 1.5201 18 | -------------------------------------------------------------------------------- /tracepy/glass/barberini/D9148.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Barberini D9148 glass specifications, 2010-08" 6 | COMMENTS: "20 °C
Sun Protection Glass; Colour: dark rose; Application: light tinted sunglare filter with contrast intensification red / yellow and high UV - absorption filter category 1 acc. to DIN EN 1836" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5602 11 | 0.47999 1.5547 12 | 0.48613 1.5541 13 | 0.54607 1.5490 14 | 0.58756 1.5464 15 | 0.58929 1.5464 16 | 0.64385 1.5437 17 | 0.65627 1.5432 18 | -------------------------------------------------------------------------------- /tracepy/glass/corning/EagleXG.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Corning Material Information (2006)" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.4358 1.5198 10 | 0.4678 1.5169 11 | 0.480 1.5160 12 | 0.5086 1.5141 13 | 0.5461 1.5119 14 | 0.5893 1.5099 15 | 0.6438 1.5078 16 | -------------------------------------------------------------------------------- /tracepy/glass/hikari/E-BASF6.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "NIKON Zemax catalog 2017-11 (obtained from http://www.nikon.com)
See also HIKARI glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.4 0.7 10 | coefficients: 2.71377616 -0.00941072521 2 0.0221914885 -2 0.000735180213 -4 -2.11522864e-05 -6 3.73099495e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.400 -0.0000E+00 14 | 0.700 -0.0000E+00 15 | SPECS: 16 | n_absolute: false 17 | wavelength_vacuum: false 18 | temperature: 23.0 °C 19 | nd: 1.667551 20 | Vd: 41.964323 21 | glass_status: preferred 22 | density: 3.2 g/cm3 23 | thermal_expansion: 24 | - temperature_range: -30 70 °C 25 | coefficient: 8e-06 K-1 26 | dPgF: 0.0003 27 | -------------------------------------------------------------------------------- /tracepy/glass/hikari/E-F1.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "NIKON Zemax catalog 2017-11 (obtained from http://www.nikon.com)
See also HIKARI glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.4 0.7 10 | coefficients: 2.56251919 -0.00314623487 2 0.0291600242 -2 -0.000870730012 -4 0.000226533195 -6 -8.61239946e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.400 -0.0000E+00 14 | 0.700 -0.0000E+00 15 | SPECS: 16 | n_absolute: false 17 | wavelength_vacuum: false 18 | temperature: 23.0 °C 19 | nd: 1.625882 20 | Vd: 35.649694 21 | glass_status: preferred 22 | density: 2.72 g/cm3 23 | thermal_expansion: 24 | - temperature_range: -30 70 °C 25 | coefficient: 8.3e-06 K-1 26 | dPgF: 0.0006 27 | -------------------------------------------------------------------------------- /tracepy/glass/hikari/E-F3.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "NIKON Zemax catalog 2017-11 (obtained from http://www.nikon.com)
See also HIKARI glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.4 0.7 10 | coefficients: 2.52228312 -0.00104823034 2 0.029395765 -2 -0.00139163033 -4 0.000289680505 -6 -1.26508887e-05 -8 11 | - type: tabulated k 12 | data: | 13 | 0.400 -0.0000E+00 14 | 0.700 -0.0000E+00 15 | SPECS: 16 | n_absolute: false 17 | wavelength_vacuum: false 18 | temperature: 23.0 °C 19 | nd: 1.612930 20 | Vd: 36.996203 21 | glass_status: preferred 22 | density: 2.67 g/cm3 23 | thermal_expansion: 24 | - temperature_range: -30 70 °C 25 | coefficient: 8.3e-06 K-1 26 | dPgF: -0.0004 27 | -------------------------------------------------------------------------------- /tracepy/glass/hikari/E-LAF09.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "NIKON Zemax catalog 2017-11 (obtained from http://www.nikon.com)
See also HIKARI glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.4 0.7 10 | coefficients: 2.82115249 -0.0128420041 2 0.0195742767 -2 0.000851971209 -4 -3.82046776e-05 -6 2.42425127e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.400 -0.0000E+00 14 | 0.700 -0.0000E+00 15 | SPECS: 16 | n_absolute: false 17 | wavelength_vacuum: false 18 | temperature: 23.0 °C 19 | nd: 1.697000 20 | Vd: 48.530590 21 | glass_status: preferred 22 | density: 3.67 g/cm3 23 | thermal_expansion: 24 | - temperature_range: -30 70 °C 25 | coefficient: 8.7e-06 K-1 26 | dPgF: -0.0018 27 | -------------------------------------------------------------------------------- /tracepy/glass/hikari/E-LAF3.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "NIKON Zemax catalog 2017-11 (obtained from http://www.nikon.com)
See also HIKARI glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.4 0.7 10 | coefficients: 2.88218387 -0.0106317724 2 0.0227527853 -2 0.000397667212 -4 1.25478223e-05 -6 5.87511175e-07 -8 11 | - type: tabulated k 12 | data: | 13 | 0.400 -0.0000E+00 14 | 0.700 -0.0000E+00 15 | SPECS: 16 | n_absolute: false 17 | wavelength_vacuum: false 18 | temperature: 23.0 °C 19 | nd: 1.717004 20 | Vd: 47.933096 21 | glass_code: 717479 22 | glass_status: preferred 23 | density: 3.89 g/cm3 24 | thermal_expansion: 25 | - temperature_range: -30 70 °C 26 | coefficient: 9.6e-06 K-1 27 | dPgF: -0.0033 28 | -------------------------------------------------------------------------------- /tracepy/glass/hikari/E-LAK04.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "NIKON Zemax catalog 2017-11 (obtained from http://www.nikon.com)
See also HIKARI glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.4 0.7 10 | coefficients: 2.6768086 -0.0102173269 2 0.0177389501 -2 2.82247162e-05 -4 4.32740016e-05 -6 -2.15847266e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.400 -0.0000E+00 14 | 0.700 -0.0000E+00 15 | SPECS: 16 | n_absolute: false 17 | wavelength_vacuum: false 18 | temperature: 23.0 °C 19 | nd: 1.651000 20 | Vd: 56.171366 21 | glass_status: preferred 22 | density: 3.26 g/cm3 23 | thermal_expansion: 24 | - temperature_range: -30 70 °C 25 | coefficient: 8.1e-06 K-1 26 | dPgF: -0.0012 27 | -------------------------------------------------------------------------------- /tracepy/glass/hikari/E-LAK06.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "NIKON Zemax catalog 2017-11 (obtained from http://www.nikon.com)
See also HIKARI glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.4 0.7 10 | coefficients: 2.77078533 -0.0176502071 2 0.011803041 -2 0.0027975002 -4 -0.000346617455 -6 2.01612172e-05 -8 11 | - type: tabulated k 12 | data: | 13 | 0.400 -0.0000E+00 14 | 0.700 -0.0000E+00 15 | SPECS: 16 | n_absolute: false 17 | wavelength_vacuum: false 18 | temperature: 23.0 °C 19 | nd: 1.677900 20 | Vd: 50.708792 21 | glass_status: preferred 22 | density: 3.86 g/cm3 23 | thermal_expansion: 24 | - temperature_range: -30 70 °C 25 | coefficient: 9.5e-06 K-1 26 | dPgF: -0.0027 27 | -------------------------------------------------------------------------------- /tracepy/glass/hikari/E-LAK9.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "NIKON Zemax catalog 2017-11 (obtained from http://www.nikon.com)
See also HIKARI glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.4 0.7 10 | coefficients: 2.78211953 0.00386988792 2 0.0322993842 -2 -0.00317915886 -4 0.000435836848 -6 -2.06224134e-05 -8 11 | - type: tabulated k 12 | data: | 13 | 0.400 -0.0000E+00 14 | 0.700 -0.0000E+00 15 | SPECS: 16 | n_absolute: false 17 | wavelength_vacuum: false 18 | temperature: 23.0 °C 19 | nd: 1.691000 20 | Vd: 54.814122 21 | glass_status: preferred 22 | density: 3.48 g/cm3 23 | thermal_expansion: 24 | - temperature_range: -30 70 °C 25 | coefficient: 7.5e-06 K-1 26 | dPgF: -0.0088 27 | -------------------------------------------------------------------------------- /tracepy/glass/hikari/E-LASF04.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "NIKON Zemax catalog 2017-11 (obtained from http://www.nikon.com)
See also HIKARI glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.4 0.7 10 | coefficients: 3.20360786 -0.00877554777 2 0.0332446054 -2 -0.000432887979 -4 0.000134715955 -6 -4.716471e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.400 -0.0000E+00 14 | 0.700 -0.0000E+00 15 | SPECS: 16 | n_absolute: false 17 | wavelength_vacuum: false 18 | temperature: 23.0 °C 19 | nd: 1.815540 20 | Vd: 44.342093 21 | glass_status: preferred 22 | density: 4.56 g/cm3 23 | thermal_expansion: 24 | - temperature_range: -30 70 °C 25 | coefficient: 7.6e-06 K-1 26 | dPgF: -0.009 27 | -------------------------------------------------------------------------------- /tracepy/glass/hikari/E-LASF09.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "NIKON Zemax catalog 2017-11 (obtained from http://www.nikon.com)
See also HIKARI glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.4 0.7 10 | coefficients: 3.21588388 -0.0133880786 2 0.0285023144 -2 0.000406364414 -4 2.70180277e-05 -6 -4.64955706e-07 -8 11 | - type: tabulated k 12 | data: | 13 | 0.400 -0.0000E+00 14 | 0.700 -0.0000E+00 15 | SPECS: 16 | n_absolute: false 17 | wavelength_vacuum: false 18 | temperature: 23.0 °C 19 | nd: 1.816000 20 | Vd: 46.623347 21 | glass_status: preferred 22 | density: 4.98 g/cm3 23 | thermal_expansion: 24 | - temperature_range: -30 70 °C 25 | coefficient: 7.7e-06 K-1 26 | dPgF: -0.0092 27 | -------------------------------------------------------------------------------- /tracepy/glass/hikari/E-LASFH9.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "NIKON Zemax catalog 2017-11 (obtained from http://www.nikon.com)
See also HIKARI glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.4 0.7 10 | coefficients: 3.49989132 -0.014925507 2 0.0384731987 -2 0.00184372906 -4 -9.49882953e-05 -6 1.04373643e-05 -8 11 | - type: tabulated k 12 | data: | 13 | 0.400 -0.0000E+00 14 | 0.700 -0.0000E+00 15 | SPECS: 16 | n_absolute: false 17 | wavelength_vacuum: false 18 | temperature: 23.0 °C 19 | nd: 1.902650 20 | Vd: 35.699754 21 | glass_status: preferred 22 | density: 5.52 g/cm3 23 | thermal_expansion: 24 | - temperature_range: -30 70 °C 25 | coefficient: 7.5e-06 K-1 26 | dPgF: -0.0046 27 | -------------------------------------------------------------------------------- /tracepy/glass/hikari/E-LF7.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "NIKON Zemax catalog 2017-11 (obtained from http://www.nikon.com)
See also HIKARI glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.4 0.7 10 | coefficients: 2.42793483 -0.0101841542 2 0.01737719 -2 0.000782340309 -4 -4.23035005e-05 -6 5.02350788e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.400 -0.0000E+00 14 | 0.700 -0.0000E+00 15 | SPECS: 16 | n_absolute: false 17 | wavelength_vacuum: false 18 | temperature: 23.0 °C 19 | nd: 1.575006 20 | Vd: 41.481733 21 | glass_status: preferred 22 | density: 2.54 g/cm3 23 | thermal_expansion: 24 | - temperature_range: -30 70 °C 25 | coefficient: 7.8e-06 K-1 26 | dPgF: 0.0014 27 | -------------------------------------------------------------------------------- /tracepy/glass/hikari/E-LLF2.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "NIKON Zemax catalog 2017-11 (obtained from http://www.nikon.com)
See also HIKARI glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.4 0.7 10 | coefficients: 2.31105643 0.00359211226 2 0.0263534925 -2 -0.0028618174 -4 0.000442961085 -6 -2.22792621e-05 -8 11 | - type: tabulated k 12 | data: | 13 | 0.400 -0.0000E+00 14 | 0.700 -0.0000E+00 15 | SPECS: 16 | n_absolute: false 17 | wavelength_vacuum: false 18 | temperature: 23.0 °C 19 | nd: 1.540720 20 | Vd: 47.224817 21 | glass_status: preferred 22 | density: 2.52 g/cm3 23 | thermal_expansion: 24 | - temperature_range: -30 70 °C 25 | coefficient: 8.1e-06 K-1 26 | -------------------------------------------------------------------------------- /tracepy/glass/hikari/E-SK10.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "NIKON Zemax catalog 2017-11 (obtained from http://www.nikon.com)
See also HIKARI glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.4 0.7 10 | coefficients: 2.58912326 -0.0100115186 2 0.0156165805 -2 0.000328758605 -4 -9.84858579e-06 -6 7.82877169e-07 -8 11 | - type: tabulated k 12 | data: | 13 | 0.400 -0.0000E+00 14 | 0.700 -0.0000E+00 15 | SPECS: 16 | n_absolute: false 17 | wavelength_vacuum: false 18 | temperature: 23.0 °C 19 | nd: 1.622799 20 | Vd: 57.035463 21 | glass_code: 623570 22 | glass_status: preferred 23 | density: 3.57 g/cm3 24 | thermal_expansion: 25 | - temperature_range: -30 70 °C 26 | coefficient: 7.8e-06 K-1 27 | dPgF: -0.0026 28 | -------------------------------------------------------------------------------- /tracepy/glass/hikari/E-SK12.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "NIKON Zemax catalog 2017-11 (obtained from http://www.nikon.com)
See also HIKARI glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.4 0.7 10 | coefficients: 2.46638796 -0.00865760981 2 0.0144628215 -2 7.9427451e-05 -4 1.55773822e-05 -6 -5.24586883e-07 -8 11 | - type: tabulated k 12 | data: | 13 | 0.400 -0.0000E+00 14 | 0.700 -0.0000E+00 15 | SPECS: 16 | n_absolute: false 17 | wavelength_vacuum: false 18 | temperature: 23.0 °C 19 | nd: 1.583130 20 | Vd: 59.387186 21 | glass_status: preferred 22 | density: 3.09 g/cm3 23 | thermal_expansion: 24 | - temperature_range: -30 70 °C 25 | coefficient: 7.7e-06 K-1 26 | dPgF: -0.0019 27 | -------------------------------------------------------------------------------- /tracepy/glass/hikari/E-SK18.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "NIKON Zemax catalog 2017-11 (obtained from http://www.nikon.com)
See also HIKARI glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.4 0.7 10 | coefficients: 2.65253732 -0.0207076891 2 0.00823565189 -2 0.00259890034 -4 -0.00030272324 -6 1.591967e-05 -8 11 | - type: tabulated k 12 | data: | 13 | 0.400 -0.0000E+00 14 | 0.700 -0.0000E+00 15 | SPECS: 16 | n_absolute: false 17 | wavelength_vacuum: false 18 | temperature: 23.0 °C 19 | nd: 1.638540 20 | Vd: 55.479598 21 | glass_status: preferred 22 | density: 3.67 g/cm3 23 | thermal_expansion: 24 | - temperature_range: -30 70 °C 25 | coefficient: 8.1e-06 K-1 26 | dPgF: -0.0021 27 | -------------------------------------------------------------------------------- /tracepy/glass/hikari/E-SSK1.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "NIKON Zemax catalog 2017-11 (obtained from http://www.nikon.com)
See also HIKARI glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.4 0.7 10 | coefficients: 2.56935287 -0.0103280973 2 0.0161803173 -2 0.000314456596 -4 -8.91235286e-08 -6 6.08967029e-07 -8 11 | - type: tabulated k 12 | data: | 13 | 0.400 -0.0000E+00 14 | 0.700 -0.0000E+00 15 | SPECS: 16 | n_absolute: false 17 | wavelength_vacuum: false 18 | temperature: 23.0 °C 19 | nd: 1.617200 20 | Vd: 54.009900 21 | glass_status: preferred 22 | density: 3.32 g/cm3 23 | thermal_expansion: 24 | - temperature_range: -30 70 °C 25 | coefficient: 6.9e-06 K-1 26 | dPgF: -0.0016 27 | -------------------------------------------------------------------------------- /tracepy/glass/hikari/J-LASFH9A.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "NIKON Zemax catalog 2017-11 (obtained from http://www.nikon.com)
See also HIKARI glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.365015 2.05809 10 | coefficients: 3.49725259 -0.0137767486 2 -0.000124635517 4 0.0410568814 -2 0.000721039098 -4 0.00013613414 -6 -1.24733129e-05 -8 9.2497468e-07 -10 11 | - type: tabulated k 12 | data: | 13 | 0.280 -0.0000E+00 14 | 0.290 -0.0000E+00 15 | SPECS: 16 | n_absolute: false 17 | wavelength_vacuum: false 18 | temperature: 23.0 °C 19 | thermal_dispersion: 20 | - type: "Schott formula" 21 | coefficients: 8.2131e-07 1.1982e-08 2.2062e-12 8.894e-07 1.0878e-09 0.23395 22 | nd: 1.902650 23 | Vd: 35.770703 24 | density: 4.91 g/cm3 25 | thermal_expansion: 26 | - temperature_range: -30 70 °C 27 | coefficient: 6.2e-06 K-1 28 | dPgF: -0.0028 29 | -------------------------------------------------------------------------------- /tracepy/glass/hikari/J-SF03HS.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "NIKON Zemax catalog 2017-11 (obtained from http://www.nikon.com)
See also HIKARI glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.388865 2.05809 10 | coefficients: 3.25089291 -0.013324411 2 0.0484040988 -2 0.0032638368 -4 -0.000401470701 -6 0.000116583198 -8 -1.27242455e-05 -10 6.96171808e-07 -12 11 | - type: tabulated k 12 | data: | 13 | 0.280 -0.0000E+00 14 | 0.290 -0.0000E+00 15 | SPECS: 16 | n_absolute: false 17 | wavelength_vacuum: false 18 | temperature: 23.0 °C 19 | thermal_dispersion: 20 | - type: "Schott formula" 21 | coefficients: -5.0562e-06 1.0335e-08 -1.28e-12 1.0873e-06 1.6241e-09 0.2939 22 | nd: 1.846660 23 | Vd: 23.796566 24 | density: 3.53 g/cm3 25 | thermal_expansion: 26 | - temperature_range: -30 70 °C 27 | coefficient: 8.1e-06 K-1 28 | dPgF: 0.0171 29 | -------------------------------------------------------------------------------- /tracepy/glass/lightpath/BD-2.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "BD-2 Glass Datasheet (revision 2013-05)" 6 | COMMENTS: "All values represent glass characteristics after molding" 7 | DATA: 8 | - type: tabulated nk 9 | data: | 10 | 3 2.6266 2.387E-7 11 | 4 2.6210 3.183E-7 12 | 5 2.6173 3.979E-7 13 | 6 2.6142 4.775E-7 14 | 7 2.6117 5.570E-7 15 | 8 2.6088 6.366E-7 16 | 9 2.6055 7.162E-7 17 | 10 2.6023 7.958E-7 18 | 11 2.5983 2.626E-6 19 | 12 2.5942 1.241E-5 20 | 13 2.5892 2.069E-5 21 | 14 2.5843 2.228E-5 22 | SPECS: 23 | n_absolute: false 24 | wavelength_vacuum: false 25 | density: 4.67 g/cm3 26 | Knoop_hardness: 150 kgf/mm2 27 | Youngs_modulus: 22.1 GPa 28 | thermal_expansion: 29 | coefficient: 14e-06 K-1 30 | thermal_dispersion: 31 | - type: "dn_rel/dT" 32 | value: 91e-6 K-1 33 | transition_temperature: 278 °C 34 | -------------------------------------------------------------------------------- /tracepy/glass/lightpath/BD6.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "BD6 Glass Datasheet (revision 2018-03-02)" 6 | DATA: 7 | - type: tabulated nk 8 | data: | 9 | 2 2.8230 4.775E-08 10 | 4 2.7978 6.366E-08 11 | 6 2.7914 9.549E-08 12 | 8 2.7867 1.273E-07 13 | 10 2.7816 2.387E-07 14 | 12 2.7755 3.820E-07 15 | 14 2.7683 7.576E-06 16 | SPECS: 17 | n_absolute: false 18 | wavelength_vacuum: false 19 | density: 4.63 g/cm3 20 | Vickers_hardness: 142 kgf/mm2 21 | Youngs_modulus: 19.8 GPa 22 | thermal_expansion: 23 | - temperature_range: 25 100 °C 24 | coefficient: 22.5e-06 K-1 25 | thermal_dispersion: 26 | - type: "dn_rel/dT" 27 | temperature_range: 0 40 °C 28 | wavelength: 10 µm 29 | value: 30.5e-6 K-1 30 | transition_temperature: 140 °C 31 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/BF1.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.54879 10 | 0.40466 1.54111 11 | 0.43583 1.536704 12 | 0.47999 1.531995 13 | 0.48613 1.531447 14 | 0.4880 1.53128 15 | 0.5140 1.52921 16 | 0.5208 1.52872 17 | 0.5300 1.52809 18 | 0.54607 1.527063 19 | 0.5682 1.52579 20 | 0.58756 1.524786 21 | 0.58929 1.524700 22 | 0.6328 1.52279 23 | 0.64385 1.522357 24 | 0.6471 1.52223 25 | 0.65627 1.521897 26 | 0.6943 1.52063 27 | 0.70652 1.52026 28 | 0.7682 1.51861 29 | 0.8521 1.51681 30 | 0.8900 1.51611 31 | 1.0139 1.51416 32 | 1.0600 1.51352 33 | 1.1286 1.51263 34 | 1.3951 1.50948 35 | 1.5296 1.50793 36 | 1.8131 1.50450 37 | 1.9701 1.50242 38 | 2.2493 1.49832 39 | 2.3254 1.49710 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/BF11.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.65181 10 | 0.40466 1.64242 11 | 0.43583 1.636984 12 | 0.47999 1.631167 13 | 0.48613 1.630491 14 | 0.4880 1.63029 15 | 0.5140 1.62774 16 | 0.5208 1.62713 17 | 0.5300 1.62635 18 | 0.54607 1.625092 19 | 0.5682 1.62353 20 | 0.58756 1.622305 21 | 0.58929 1.622200 22 | 0.6328 1.61986 23 | 0.64385 1.619339 24 | 0.6471 1.61919 25 | 0.65627 1.618781 26 | 0.6943 1.61724 27 | 0.70652 1.61680 28 | 0.7682 1.61483 29 | 0.8521 1.61270 30 | 0.8900 1.61189 31 | 1.0139 1.60967 32 | 1.0600 1.60896 33 | 1.1286 1.60797 34 | 1.3951 1.60466 35 | 1.5296 1.60310 36 | 1.8131 1.59977 37 | 1.9701 1.59783 38 | 2.2493 1.59411 39 | 2.3254 1.59302 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/BF16.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.70771 10 | 0.40466 1.69576 11 | 0.43583 1.688973 12 | 0.47999 1.681810 13 | 0.48613 1.680981 14 | 0.4880 1.68073 15 | 0.5140 1.67761 16 | 0.5208 1.67688 17 | 0.5300 1.67593 18 | 0.54607 1.674385 19 | 0.5682 1.67250 20 | 0.58756 1.671025 21 | 0.58929 1.670900 22 | 0.6328 1.66809 23 | 0.64385 1.667459 24 | 0.6471 1.66728 25 | 0.65627 1.666791 26 | 0.6943 1.66496 27 | 0.70652 1.66442 28 | 0.7682 1.66209 29 | 0.8521 1.65959 30 | 0.8900 1.65864 31 | 1.0139 1.65608 32 | 1.0600 1.65527 33 | 1.1286 1.65417 34 | 1.3951 1.65053 35 | 1.5296 1.64887 36 | 1.8131 1.64542 37 | 1.9701 1.64345 38 | 2.2493 1.63973 39 | 2.3254 1.63866 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/BF21.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.65512 10 | 0.40466 1.64142 11 | 0.43583 1.633797 12 | 0.47999 1.625854 13 | 0.48613 1.624944 14 | 0.4880 1.62467 15 | 0.5140 1.62126 16 | 0.5208 1.62046 17 | 0.5300 1.61943 18 | 0.54607 1.617772 19 | 0.5682 1.61573 20 | 0.58756 1.614132 21 | 0.5899 1.614000 22 | 0.6328 1.61098 23 | 0.64385 1.610316 24 | 0.6471 1.61013 25 | 0.65627 1.609604 26 | 0.6943 1.60766 27 | 0.70652 1.60709 28 | 0.7682 1.60463 29 | 0.8521 1.60203 30 | 0.8900 1.60105 31 | 1.0139 1.59843 32 | 1.0600 1.59761 33 | 1.1286 1.59650 34 | 1.3951 1.59290 35 | 1.5296 1.59128 36 | 1.8131 1.58791 37 | 1.9701 1.58596 38 | 2.2493 1.58223 39 | 2.3254 1.58115 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/BF24.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.68139 10 | 0.40466 1.66553 11 | 0.43583 1.656803 12 | 0.47999 1.647777 13 | 0.48613 1.646746 14 | 0.4880 1.64643 15 | 0.5140 1.64258 16 | 0.5208 1.64168 17 | 0.5300 1.64052 18 | 0.54607 1.638639 19 | 0.5682 1.63634 20 | 0.58756 1.634551 21 | 0.58929 1.634400 22 | 0.6328 1.63103 23 | 0.64385 1.630281 24 | 0.6471 1.63007 25 | 0.65627 1.629486 26 | 0.6943 1.62732 27 | 0.70652 1.62669 28 | 0.7682 1.62396 29 | 0.8521 1.62108 30 | 0.8900 1.62000 31 | 1.0139 1.61712 32 | 1.0600 1.61623 33 | 1.1286 1.61502 34 | 1.3951 1.61116 35 | 1.5296 1.60944 36 | 1.8131 1.60591 37 | 1.9701 1.60390 38 | 2.2493 1.60010 39 | 2.3254 1.59901 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/BF25.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.64195 10 | 0.40466 1.63077 11 | 0.43583 1.624428 12 | 0.47999 1.617746 13 | 0.48613 1.616974 14 | 0.4880 1.61675 15 | 0.5140 1.61384 16 | 0.5208 1.61316 17 | 0.5300 1.61228 18 | 0.54607 1.610853 19 | 0.5682 1.60909 20 | 0.58756 1.607716 21 | 0.58929 1.607600 22 | 0.6328 1.60499 23 | 0.64385 1.604413 24 | 0.6471 1.60425 25 | 0.65627 1.603794 26 | 0.6943 1.60209 27 | 0.70652 1.60160 28 | 0.7682 1.59944 29 | 0.8521 1.59713 30 | 0.8900 1.59625 31 | 1.0139 1.59388 32 | 1.0600 1.59313 33 | 1.1286 1.59211 34 | 1.3951 1.58872 35 | 1.5296 1.58717 36 | 1.8131 1.58390 37 | 1.9701 1.58202 38 | 2.2493 1.57844 39 | 2.3254 1.57740 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/BF28.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.71548 10 | 0.40466 1.69805 11 | 0.43583 1.688504 12 | 0.47999 1.678647 13 | 0.48613 1.677522 14 | 0.4880 1.67718 15 | 0.5140 1.67298 16 | 0.5208 1.67200 17 | 0.5300 1.67074 18 | 0.54607 1.668712 19 | 0.5682 1.66621 20 | 0.58756 1.664262 21 | 0.58929 1.664100 22 | 0.6328 1.66045 23 | 0.64385 1.659642 24 | 0.6471 1.65941 25 | 0.65627 1.658782 26 | 0.6943 1.65644 27 | 0.70652 1.65576 28 | 0.7682 1.65281 29 | 0.8521 1.64971 30 | 0.8900 1.64856 31 | 1.0139 1.64547 32 | 1.0600 1.64452 33 | 1.1286 1.64323 34 | 1.3951 1.63914 35 | 1.5296 1.63734 36 | 1.8131 1.63368 37 | 1.9701 1.63163 38 | 2.2493 1.62780 39 | 2.3254 1.62670 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/BF8.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.61535 10 | 0.40466 1.60468 11 | 0.43583 1.598623 12 | 0.47999 1.592244 13 | 0.48613 1.591509 14 | 0.4880 1.59130 15 | 0.5140 1.58853 16 | 0.5208 1.58788 17 | 0.5300 1.58704 18 | 0.54607 1.585690 19 | 0.5682 1.58401 20 | 0.58756 1.582713 21 | 0.58929 1.582600 22 | 0.6328 1.58011 23 | 0.64385 1.579558 24 | 0.6471 1.57940 25 | 0.65627 1.578969 26 | 0.6943 1.57736 27 | 0.70652 1.57689 28 | 0.7682 1.57483 29 | 0.8521 1.57263 30 | 0.8900 1.57180 31 | 1.0139 1.56953 32 | 1.0600 1.56882 33 | 1.1286 1.56784 34 | 1.3951 1.56459 35 | 1.5296 1.56308 36 | 1.8131 1.55991 37 | 1.9701 1.55808 38 | 2.2493 1.55455 39 | 2.3254 1.55355 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/BK10.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.59417 10 | 0.40466 1.58620 11 | 0.43583 1.581543 12 | 0.47999 1.576553 13 | 0.48613 1.575971 14 | 0.4880 1.57580 15 | 0.5140 1.57359 16 | 0.5208 1.57307 17 | 0.5300 1.57240 18 | 0.54607 1.571309 19 | 0.5682 1.56995 20 | 0.58756 1.568891 21 | 0.58929 1.568800 22 | 0.6328 1.56676 23 | 0.64385 1.566308 24 | 0.6471 1.56618 25 | 0.65627 1.565821 26 | 0.6943 1.56448 27 | 0.70652 1.56408 28 | 0.7682 1.56235 29 | 0.8521 1.56047 30 | 0.8900 1.55974 31 | 1.0139 1.55774 32 | 1.0600 1.55709 33 | 1.1286 1.55614 34 | 1.3951 1.55310 35 | 1.5296 1.55161 36 | 1.8131 1.54837 37 | 1.9701 1.54645 38 | 2.2493 1.54270 39 | 2.3254 1.54160 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/BK4.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.55180 10 | 0.40466 1.54508 11 | 0.43583 1.541128 12 | 0.47999 1.536877 13 | 0.48613 1.536378 14 | 0.4880 1.53622 15 | 0.5140 1.53433 16 | 0.5208 1.53389 17 | 0.5300 1.53331 18 | 0.54607 1.532367 19 | 0.5682 1.53120 20 | 0.58756 1.530279 21 | 0.58929 1.530200 22 | 0.6328 1.52843 23 | 0.64385 1.528034 24 | 0.6471 1.52792 25 | 0.65627 1.527608 26 | 0.6943 1.52643 27 | 0.70652 1.52609 28 | 0.7682 1.52455 29 | 0.8521 1.52287 30 | 0.8900 1.52222 31 | 1.0139 1.52038 32 | 1.0600 1.51978 33 | 1.1286 1.51894 34 | 1.3951 1.51596 35 | 1.5296 1.51450 36 | 1.8131 1.51127 37 | 1.9701 1.50934 38 | 2.2493 1.50555 39 | 2.3254 1.50443 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/BK6.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.56226 10 | 0.40466 1.55529 11 | 0.43583 1.551204 12 | 0.47999 1.546792 13 | 0.48613 1.546276 14 | 0.4880 1.54612 15 | 0.5140 1.54417 16 | 0.5208 1.54371 17 | 0.5300 1.54311 18 | 0.54607 1.542136 19 | 0.5682 1.54093 20 | 0.58756 1.539982 21 | 0.58929 1.539900 22 | 0.6328 1.53807 23 | 0.64385 1.537664 24 | 0.6471 1.53755 25 | 0.65627 1.537226 26 | 0.6943 1.5360 27 | 0.70652 1.5357 28 | 0.7682 1.5341 29 | 0.8521 1.5324 30 | 0.8900 1.5317 31 | 1.0139 1.5298 32 | 1.0600 1.5292 33 | 1.1286 1.5284 34 | 1.3951 1.5254 35 | 1.5296 1.5239 36 | 1.8131 1.5207 37 | 1.9701 1.5188 38 | 2.2493 1.5151 39 | 2.3254 1.5140 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/BK8.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.56796 10 | 0.40466 1.56137 11 | 0.43583 1.557504 12 | 0.47999 1.553312 13 | 0.48613 1.552821 14 | 0.4880 1.55268 15 | 0.5140 1.55081 16 | 0.5208 1.55037 17 | 0.5300 1.54979 18 | 0.54607 1.548861 19 | 0.5682 1.54770 20 | 0.58756 1.546779 21 | 0.58929 1.546700 22 | 0.6328 1.54494 23 | 0.64385 1.544538 24 | 0.6471 1.54442 25 | 0.65627 1.544111 26 | 0.6943 1.54292 27 | 0.70652 1.54258 28 | 0.7682 1.54102 29 | 0.8521 1.53929 30 | 0.8900 1.53861 31 | 1.0139 1.53668 32 | 1.0600 1.53604 33 | 1.1286 1.53513 34 | 1.3951 1.53184 35 | 1.5296 1.53019 36 | 1.8131 1.52647 37 | 1.9701 1.52421 38 | 2.2493 1.51972 39 | 2.3254 1.51839 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/CTK12.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.72292 10 | 0.40466 1.71328 11 | 0.43583 1.707590 12 | 0.47999 1.701471 13 | 0.48613 1.700756 14 | 0.4880 1.70054 15 | 0.5140 1.69783 16 | 0.5208 1.69719 17 | 0.5300 1.69636 18 | 0.54607 1.695010 19 | 0.5682 1.69333 20 | 0.58756 1.692012 21 | 0.58929 1.691900 22 | 0.6328 1.68936 23 | 0.64385 1.688788 24 | 0.6471 1.68862 25 | 0.65627 1.688176 26 | 0.6943 1.68648 27 | 0.70652 1.68599 28 | 0.7682 1.68378 29 | 0.8521 1.68134 30 | 0.8900 1.68040 31 | 1.0139 1.67772 32 | 1.0600 1.67684 33 | 1.1286 1.67560 34 | 1.3951 1.67119 35 | 1.5296 1.66900 36 | 1.8131 1.66415 37 | 1.9701 1.66122 38 | 2.2493 1.65547 39 | 2.3254 1.65377 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/CTK19.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.78115 10 | 0.40466 1.769291 11 | 0.43583 1.762531 12 | 0.47999 1.755269 13 | 0.48613 1.754423 14 | 0.4880 1.75417 15 | 0.5140 1.75097 16 | 0.5208 1.75021 17 | 0.5300 1.74924 18 | 0.54607 1.747647 19 | 0.5682 1.74568 20 | 0.58756 1.744132 21 | 0.58929 1.744000 22 | 0.6328 1.74104 23 | 0.64385 1.740377 24 | 0.6471 1.74019 25 | 0.65627 1.739667 26 | 0.6943 1.73771 27 | 0.70652 1.73714 28 | 0.7682 1.73461 29 | 0.8521 1.73185 30 | 0.8900 1.73079 31 | 1.0139 1.72784 32 | 1.0600 1.72688 33 | 1.1286 1.72555 34 | 1.3951 1.72092 35 | 1.5296 1.71868 36 | 1.8131 1.71379 37 | 1.9701 1.71086 38 | 2.2493 1.70512 39 | 2.3254 1.70342 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/CTK3.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.68789 10 | 0.40466 1.67896 11 | 0.43583 1.673767 12 | 0.47999 1.668159 13 | 0.48613 1.667504 14 | 0.4880 1.66731 15 | 0.5140 1.66482 16 | 0.5208 1.66424 17 | 0.5300 1.66348 18 | 0.54607 1.662237 19 | 0.5682 1.66071 20 | 0.58756 1.659502 21 | 0.58929 1.659400 22 | 0.6328 1.65708 23 | 0.64385 1.656560 24 | 0.6471 1.65642 25 | 0.65627 1.656004 26 | 0.6943 1.65447 27 | 0.70652 1.65403 28 | 0.7682 1.65204 29 | 0.8521 1.64987 30 | 0.8900 1.64903 31 | 1.0139 1.64670 32 | 1.0600 1.64594 33 | 1.1286 1.64488 34 | 1.3951 1.64120 35 | 1.5296 1.63942 36 | 1.8131 1.63553 37 | 1.9701 1.63321 38 | 2.2493 1.62867 39 | 2.3254 1.62734 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/CTK8.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.73908 10 | 0.40466 1.72755 11 | 0.43583 1.720921 12 | 0.47999 1.713847 13 | 0.48613 1.713027 14 | 0.4880 1.71279 15 | 0.5140 1.70969 16 | 0.5208 1.70896 17 | 0.5300 1.70802 18 | 0.54607 1.706497 19 | 0.5682 1.70460 20 | 0.58756 1.703125 21 | 0.58929 1.703000 22 | 0.6328 1.70018 23 | 0.64385 1.699549 24 | 0.6471 1.69937 25 | 0.65627 1.698877 26 | 0.6943 1.69703 27 | 0.70652 1.69649 28 | 0.7682 1.69412 29 | 0.8521 1.69158 30 | 0.8900 1.69062 31 | 1.0600 1.68715 32 | 1.0139 1.68798 33 | 1.1286 1.68599 34 | 1.3951 1.68215 35 | 1.5296 1.68236 36 | 1.8131 1.67657 37 | 1.9701 1.67436 38 | 2.2493 1.67013 39 | 2.3254 1.66890 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/CTK9.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.77938 10 | 0.40466 1.76772 11 | 0.43583 1.760954 12 | 0.47999 1.753681 13 | 0.48613 1.752833 14 | 0.4880 1.75258 15 | 0.5140 1.74937 16 | 0.5208 1.74862 17 | 0.5300 1.74764 18 | 0.54607 1.746046 19 | 0.5682 1.74407 20 | 0.58756 1.742530 21 | 0.58929 1.742400 22 | 0.6328 1.73943 23 | 0.64385 1.738763 24 | 0.6471 1.73857 25 | 0.65627 1.738053 26 | 0.6943 1.73609 27 | 0.70652 1.73552 28 | 0.7682 1.73299 29 | 0.852 1.73024 30 | 0.8900 1.72919 31 | 1.0139 1.72625 32 | 1.0600 1.72531 33 | 1.1286 1.72399 34 | 1.3951 1.71941 35 | 1.5296 1.71718 36 | 1.8131 1.71230 37 | 1.9701 1.70936 38 | 2.2493 1.70353 39 | 2.3254 1.70179 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/F1.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.65782 10 | 0.40466 1.64269 11 | 0.43583 1.634312 12 | 0.47999 1.625647 13 | 0.48613 1.624657 14 | 0.4880 1.62436 15 | 0.5140 1.62066 16 | 0.5208 1.61979 17 | 0.5300 1.61868 18 | 0.54607 1.616878 19 | 0.5682 1.61467 20 | 0.58756 1.612945 21 | 0.58929 1.612800 22 | 0.6328 1.60955 23 | 0.64385 1.608833 24 | 0.6471 1.60863 25 | 0.65627 1.608067 26 | 0.6943 1.60597 27 | 0.70652 1.60537 28 | 0.7682 1.60273 29 | 0.8521 1.59994 30 | 0.8900 1.59889 31 | 1.0139 1.59609 32 | 1.0600 1.59522 33 | 1.1286 1.59404 34 | 1.3951 1.59021 35 | 1.5296 1.58850 36 | 1.8131 1.58493 37 | 1.9701 1.58289 38 | 2.2493 1.57899 39 | 2.3254 1.57785 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/F13.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.666345 10 | 0.40466 1.65069 11 | 0.43583 1.642054 12 | 0.47999 1.633116 13 | 0.48613 1.632096 14 | 0.4880 1.63179 15 | 0.5140 1.62798 16 | 0.5208 1.62709 17 | 0.5300 1.62594 18 | 0.54607 1.624083 19 | 0.5682 1.62181 20 | 0.58756 1.620048 21 | 0.58929 1.619900 22 | 0.6328 1.61656 23 | 0.64385 1.615822 24 | 0.6471 1.61561 25 | 0.65627 1.615036 26 | 0.6943 1.61289 27 | 0.70652 1.612272 28 | 0.7682 1.60957 29 | 0.8521 1.60671 30 | 0.8900 1.60564 31 | 1.0139 1.60278 32 | 1.0600 1.60189 33 | 1.1286 1.60068 34 | 1.3951 1.59678 35 | 1.5296 1.59503 36 | 1.8131 1.59142 37 | 1.9701 1.58937 38 | 2.2493 1.58548 39 | 2.3254 1.58435 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/F4.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.67162 10 | 0.40466 1.65559 11 | 0.43583 1.646779 12 | 0.47999 1.637672 13 | 0.48613 1.636632 14 | 0.4880 1.63632 15 | 0.5140 1.63243 16 | 0.5208 1.63152 17 | 0.5300 1.63035 18 | 0.54607 1.628472 19 | 0.5682 1.62615 20 | 0.58756 1.624352 21 | 0.58929 1.624200 22 | 0.6328 1.62081 23 | 0.64385 1.620051 24 | 0.6471 1.61985 25 | 0.65627 1.619252 26 | 0.6943 1.61708 27 | 0.70652 1.61645 28 | 0.7682 1.61370 29 | 0.8521 1.61081 30 | 0.8900 1.60973 31 | 1.0139 1.60684 32 | 1.0600 1.60594 33 | 1.1286 1.60473 34 | 1.3951 1.60083 35 | 1.5296 1.59909 36 | 1.8131 1.59551 37 | 1.9701 1.59347 38 | 2.2493 1.58960 39 | 2.3254 1.58848 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/F6.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.64601 10 | 0.40466 1.63164 11 | 0.43583 1.623668 12 | 0.47999 1.615402 13 | 0.48613 1.614456 14 | 0.4880 1.61417 15 | 0.5140 1.61063 16 | 0.5208 1.60980 17 | 0.5300 1.60873 18 | 0.54607 1.607015 19 | 0.5682 1.60489 20 | 0.58756 1.603239 21 | 0.58929 1.603100 22 | 0.6328 1.59998 23 | 0.64385 1.599292 24 | 0.6471 1.59910 25 | 0.65627 1.598556 26 | 0.6943 1.59655 27 | 0.70652 1.59597 28 | 0.7682 1.59342 29 | 0.8521 1.59074 30 | 0.8900 1.58973 31 | 1.0139 1.58701 32 | 1.0600 1.58616 33 | 1.1286 1.58501 34 | 1.395 1.58127 35 | 1.5296 1.57957 36 | 1.8131 1.57603 37 | 1.9701 1.57399 38 | 2.2493 1.57008 39 | 2.3254 1.56894 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/F8.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.67288 10 | 0.40466 1.65661 11 | 0.43583 1.647660 12 | 0.47999 1.638430 13 | 0.48613 1.637377 14 | 0.4880 1.63715 15 | 0.5140 1.63354 16 | 0.5208 1.63260 17 | 0.5300 1.63133 18 | 0.54607 1.629113 19 | 0.5682 1.62689 20 | 0.58756 1.624953 21 | 0.58929 1.624800 22 | 0.6328 1.62140 23 | 0.64385 1.620614 24 | 0.6471 1.62040 25 | 0.65627 1.619807 26 | 0.6943 1.61762 27 | 0.70652 1.61697 28 | 0.7682 1.61434 29 | 0.8521 1.61130 30 | 0.8900 1.61019 31 | 1.0139 1.60730 32 | 1.0600 1.60642 33 | 1.1286 1.60519 34 | 1.3951 1.60132 35 | 1.5296 1.59964 36 | 1.8131 1.59614 37 | 1.9701 1.59419 38 | 2.2493 1.59051 39 | 2.3254 1.58944 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/K8.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.53582 10 | 0.40466 1.52982 11 | 0.43583 1.526266 12 | 0.47999 1.522408 13 | 0.48613 1.521955 14 | 0.4880 1.52181 15 | 0.5140 1.52009 16 | 0.5208 1.51968 17 | 0.5300 1.51916 18 | 0.54607 1.518294 19 | 0.5682 1.51722 20 | 0.58756 1.516373 21 | 0.58929 1.516300 22 | 0.6328 1.51466 23 | 0.64385 1.514292 24 | 0.6471 1.51419 25 | 0.65627 1.513895 26 | 0.6943 1.51279 27 | 0.70652 1.51246 28 | 0.7682 1.51100 29 | 0.8521 1.50937 30 | 0.8900 1.50872 31 | 1.0139 1.50687 32 | 1.0600 1.50625 33 | 1.1286 1.50536 34 | 1.3951 1.50210 35 | 1.5296 1.50045 36 | 1.8131 1.49674 37 | 1.9701 1.49449 38 | 2.2493 1.49008 39 | 2.3254 1.48878 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/KF6.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.52229 10 | 0.40466 1.51543 11 | 0.43583 1.511451 12 | 0.47999 1.507166 13 | 0.48613 1.506667 14 | 0.4880 1.50652 15 | 0.5140 1.50463 16 | 0.5208 1.50418 17 | 0.5300 1.50360 18 | 0.54607 1.502657 19 | 0.5682 1.50150 20 | 0.58756 1.500579 21 | 0.58929 1.500500 22 | 0.6328 1.49874 23 | 0.64385 1.498341 24 | 0.6471 1.49823 25 | 0.65627 1.497917 26 | 0.6943 1.49674 27 | 0.70652 1.49640 28 | 0.7682 1.49487 29 | 0.8521 1.49319 30 | 0.8900 1.49253 31 | 1.0139 1.49069 32 | 1.0600 1.49009 33 | 1.1286 1.48924 34 | 1.3951 1.48622 35 | 1.5296 1.48472 36 | 1.8131 1.48141 37 | 1.9701 1.47942 38 | 2.2493 1.47550 39 | 2.3254 1.47434 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/KF7.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.54363 10 | 0.40466 1.53512 11 | 0.43583 1.530324 12 | 0.47999 1.525256 13 | 0.48613 1.524670 14 | 0.4880 1.52449 15 | 0.5140 1.52228 16 | 0.5208 1.52176 17 | 0.5300 1.52109 18 | 0.54607 1.520005 19 | 0.5682 1.51865 20 | 0.58756 1.517590 21 | 0.58929 1.517500 22 | 0.6328 1.51549 23 | 0.64385 1.515033 24 | 0.6471 1.51491 25 | 0.65627 1.514550 26 | 0.6943 1.51322 27 | 0.70652 1.51283 28 | 0.7682 1.51111 29 | 0.8521 1.50923 30 | 0.8900 1.50850 31 | 1.0139 1.50647 32 | 1.0600 1.50581 33 | 1.1286 1.50488 34 | 1.3951 1.50163 35 | 1.5296 1.50005 36 | 1.8131 1.49656 37 | 1.9701 1.49447 38 | 2.2493 1.49039 39 | 2.3254 1.48918 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/LF5.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.61197 10 | 0.40466 1.59968 11 | 0.43583 1.592809 12 | 0.47999 1.585638 13 | 0.48613 1.584815 14 | 0.4880 1.58457 15 | 0.5140 1.58149 16 | 0.5208 1.58076 17 | 0.5300 1.57983 18 | 0.54607 1.578326 19 | 0.5682 1.57647 20 | 0.58756 1.575022 21 | 0.58929 1.574900 22 | 0.6328 1.57215 23 | 0.64385 1.571544 24 | 0.6471 1.57137 25 | 0.65627 1.570895 26 | 0.6943 1.56912 27 | 0.70652 1.56860 28 | 0.7682 1.56634 29 | 0.8521 1.56393 30 | 0.8900 1.56303 31 | 1.0139 1.56056 32 | 1.0600 1.55979 33 | 1.1286 1.55872 34 | 1.3951 1.55521 35 | 1.5296 1.55359 36 | 1.8131 1.55016 37 | 1.9701 1.54816 38 | 2.2493 1.54429 39 | 2.3254 1.54316 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/LF7.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.61581 10 | 0.40466 1.60336 11 | 0.43583 1.596409 12 | 0.47999 1.589157 13 | 0.48613 1.5883251 14 | 0.4880 1.58808 15 | 0.5140 1.58495 16 | 0.5208 1.58422 17 | 0.5300 1.58328 18 | 0.54607 1.581756 19 | 0.5682 1.57988 20 | 0.58756 1.578423 21 | 0.58929 1.578300 22 | 0.6328 1.57552 23 | 0.64385 1.574910 24 | 0.6471 1.57474 25 | 0.65627 1.574255 26 | 0.6943 1.57246 27 | 0.70652 1.57194 28 | 0.7682 1.56966 29 | 0.8521 1.56723 30 | 0.8900 1.56632 31 | 1.0139 1.56383 32 | 1.0600 1.56305 33 | 1.1286 1.56198 34 | 1.3951 1.55843 35 | 1.5296 1.55680 36 | 1.8131 1.55335 37 | 1.9701 1.55135 38 | 2.2493 1.54752 39 | 2.3254 1.5464 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/LF9.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.62237 10 | 0.40466 1.60773 11 | 0.43583 1.599855 12 | 0.47999 1.591823 13 | 0.48613 1.590908 14 | 0.4880 1.59064 15 | 0.5140 1.58722 16 | 0.5208 1.58642 17 | 0.5300 1.58540 18 | 0.54607 1.583742 19 | 0.5682 1.58171 20 | 0.58756 1.580134 21 | 0.58929 1.580000 22 | 0.6328 1.57701 23 | 0.64385 1.576352 24 | 0.6471 1.57616 25 | 0.65627 1.575648 26 | 0.6943 1.57372 27 | 0.70652 1.57316 28 | 0.7682 1.57072 29 | 0.8521 1.56813 30 | 0.8900 1.56715 31 | 1.0139 1.56448 32 | 1.0600 1.56364 33 | 1.1286 1.56249 34 | 1.3951 1.55866 35 | 1.5296 1.55688 36 | 1.8131 1.55311 37 | 1.9701 1.55091 38 | 2.2493 1.54667 39 | 2.3254 1.54542 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/LK3.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.36500 1.504140 10 | 0.40466 1.499000 11 | 0.43583 1.495963 12 | 0.47999 1.492655 13 | 0.48613 1.492267 14 | 0.48800 1.492160 15 | 0.51400 1.490680 16 | 0.52080 1.490330 17 | 0.53000 1.489870 18 | 0.54607 1.489118 19 | 0.56820 1.488200 20 | 0.58756 1.487464 21 | 0.58929 1.487400 22 | 0.63280 1.485980 23 | 0.64385 1.485654 24 | 0.64710 1.485560 25 | 0.65627 1.485307 26 | 0.69430 1.484340 27 | 0.70652 1.484060 28 | 0.76820 1.482770 29 | 0.85210 1.481320 30 | 0.89000 1.480750 31 | 1.01390 1.479090 32 | 1.06000 1.478520 33 | 1.12860 1.477720 34 | 1.39510 1.474740 35 | 1.52960 1.473210 36 | 1.81310 1.469740 37 | 1.97010 1.467630 38 | 2.24930 1.463460 39 | 2.32540 1.462230 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/LK5.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.36500 1.495610 10 | 0.40466 1.490240 11 | 0.43583 1.487065 12 | 0.47999 1.483601 13 | 0.48613 1.483194 14 | 0.48800 1.483070 15 | 0.51400 1.481520 16 | 0.52080 1.481160 17 | 0.53000 1.480680 18 | 0.54607 1.479902 19 | 0.56820 1.478930 20 | 0.58756 1.478166 21 | 0.58929 1.478100 22 | 0.63280 1.476600 23 | 0.64385 1.476267 24 | 0.64710 1.476170 25 | 0.65627 1.475904 26 | 0.69430 1.474890 27 | 0.70652 1.474590 28 | 0.76820 1.473240 29 | 0.85210 1.471710 30 | 0.89000 1.471110 31 | 1.01390 1.469330 32 | 1.06000 1.468730 33 | 1.12860 1.467860 34 | 1.39510 1.464630 35 | 1.52960 1.462960 36 | 1.81310 1.459180 37 | 1.97010 1.456870 38 | 2.24930 1.452330 39 | 2.32540 1.450980 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/LK6.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.36500 1.487360 10 | 0.40466 1.482150 11 | 0.43583 1.479071 12 | 0.47999 1.475722 13 | 0.48613 1.475328 14 | 0.48800 1.475210 15 | 0.51400 1.473710 16 | 0.52080 1.473360 17 | 0.53000 1.472900 18 | 0.54607 1.472142 19 | 0.56820 1.471210 20 | 0.58756 1.470465 21 | 0.58929 1.470400 22 | 0.63280 1.468970 23 | 0.64385 1.468637 24 | 0.64710 1.468550 25 | 0.65627 1.468288 26 | 0.69430 1.467320 27 | 0.70652 1.467030 28 | 0.76820 1.465740 29 | 0.85210 1.464280 30 | 0.89000 1.463710 31 | 1.01390 1.462030 32 | 1.06000 1.461460 33 | 1.12860 1.460650 34 | 1.39510 1.457630 35 | 1.52960 1.456090 36 | 1.81310 1.452590 37 | 1.97010 1.450470 38 | 2.24930 1.446300 39 | 2.32540 1.445070 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/LK7.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.50025 10 | 0.40466 1.49490 11 | 0.43583 1.491739 12 | 0.47999 1.488299 13 | 0.48613 1.487893 14 | 0.4880 1.48777 15 | 0.5140 1.48622 16 | 0.5208 1.48586 17 | 0.5300 1.48538 18 | 0.54607 1.484608 19 | 0.5682 1.48363 20 | 0.58756 1.482866 21 | 0.58929 1.482800 22 | 0.6328 1.48131 23 | 0.64385 1.480975 24 | 0.6471 1.48088 25 | 0.65627 1.480613 26 | 0.6943 1.47960 27 | 0.70652 1.47931 28 | 0.7682 1.47797 29 | 0.8521 1.47645 30 | 0.8900 1.47585 31 | 1.0139 1.47411 32 | 1.0600 1.47352 33 | 1.1286 1.47267 34 | 1.3951 1.46951 35 | 1.5296 1.46789 36 | 1.8131 1.46420 37 | 1.9701 1.46194 38 | 2.2493 1.45748 39 | 2.3254 1.45615 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/OF1.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.55515 10 | 0.40466 1.54698 11 | 0.43583 1.542251 12 | 0.47999 1.537207 13 | 0.48613 1.536620 14 | 0.4880 1.53644 15 | 0.5140 1.53422 16 | 0.5208 1.53370 17 | 0.5300 1.53302 18 | 0.54607 1.531924 19 | 0.58756 1.529492 20 | 0.58929 1.529400 21 | 0.6328 1.52735 22 | 0.64385 1.526892 23 | 0.6471 1.52676 24 | 0.65627 1.526400 25 | 0.5682 1.53056 26 | 0.6943 1.52504 27 | 0.70652 1.52464 28 | 0.7682 1.52287 29 | 0.8521 1.52093 30 | 0.8900 1.52018 31 | 1.0139 1.51805 32 | 1.0600 1.51735 33 | 1.1286 1.51636 34 | 1.3951 1.51285 35 | 1.5296 1.51110 36 | 1.8131 1.50723 37 | 1.9701 1.50489 38 | 2.2493 1.50029 39 | 2.3254 1.49893 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/OK4.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.45900 10 | 0.40466 1.45544 11 | 0.43583 1.453310 12 | 0.47999 1.450984 13 | 0.48613 1.450709 14 | 0.54607 1.448500 15 | 0.58756 1.447341 16 | 0.58929 1.447303 17 | 0.64385 1.446084 18 | 0.65627 1.445849 19 | 0.70652 1.444984 20 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/TF1.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.70022 10 | 0.40466 1.68229 11 | 0.43583 1.672451 12 | 0.47999 1.662347 13 | 0.48613 1.661196 14 | 0.4880 1.66085 15 | 0.5140 1.65656 16 | 0.5208 1.65555 17 | 0.5300 1.65427 18 | 0.54607 1.652188 19 | 0.5682 1.64964 20 | 0.58756 1.647665 21 | 0.58929 1.647500 22 | 0.6328 1.64378 23 | 0.64385 1.642950 24 | 0.6471 1.64272 25 | 0.65627 1.642076 26 | 0.6943 1.63970 27 | 0.70652 1.63901 28 | 0.7682 1.63602 29 | 0.8521 1.63289 30 | 0.8900 1.63172 31 | 1.0139 1.62862 32 | 1.0600 1.62767 33 | 1.1286 1.62638 34 | 1.3951 1.62232 35 | 1.5296 1.62054 36 | 1.8131 1.61691 37 | 1.9701 1.61487 38 | 2.2493 1.61102 39 | 2.3254 1.60991 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/TF10.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.89876 10 | 0.40466 1.86571 11 | 0.43583 1.848338 12 | 0.47999 1.830897 13 | 0.48613 1.828936 14 | 0.4880 1.82836 15 | 0.5140 1.82109 16 | 0.5208 1.81940 17 | 0.5300 1.81724 18 | 0.54607 1.813767 19 | 0.5682 1.80953 20 | 0.58756 1.806274 21 | 0.58929 1.806000 22 | 0.6328 1.79991 23 | 0.64385 1.798572 24 | 0.6471 1.79819 25 | 0.65627 1.797156 26 | 0.6943 1.79332 27 | 0.70652 1.79222 28 | 0.7682 1.78749 29 | 0.8521 1.78263 30 | 0.8900 1.78085 31 | 1.0139 1.77626 32 | 1.0600 1.77490 33 | 1.1286 1.77310 34 | 1.3951 1.76780 35 | 1.5296 1.76566 36 | 1.8131 1.76159 37 | 1.9701 1.75941 38 | 2.2493 1.75540 39 | 2.3254 1.75425 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/TF2.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.73062 10 | 0.40466 1.71068 11 | 0.43583 1.699831 12 | 0.47999 1.688733 13 | 0.48613 1.687472 14 | 0.4880 1.68710 15 | 0.5140 1.68239 16 | 0.5208 1.68130 17 | 0.5300 1.67989 18 | 0.54607 1.677617 19 | 0.5682 1.67484 20 | 0.58756 1.672680 21 | 0.58929 1.672500 22 | 0.6328 1.66844 23 | 0.64385 1.667553 24 | 0.6471 1.66730 25 | 0.65627 1.666602 26 | 0.6943 1.66401 27 | 0.70652 1.66327 28 | 0.7682 1.66003 29 | 0.8521 1.65665 30 | 0.8900 1.65539 31 | 1.0139 1.65208 32 | 1.0600 1.65106 33 | 1.1286 1.64970 34 | 1.3951 1.64546 35 | 1.5296 1.64362 36 | 1.8131 1.63993 37 | 1.9701 1.63785 38 | 2.2493 1.63394 39 | 2.3254 1.63281 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/TF3.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.78612 10 | 0.40466 1.76214 11 | 0.43583 1.749258 12 | 0.47999 1.736162 13 | 0.48613 1.734681 14 | 0.4880 1.73425 15 | 0.5140 1.72874 16 | 0.5208 1.72745 17 | 0.5300 1.72581 18 | 0.54607 1.723166 19 | 0.5682 1.71992 20 | 0.58756 1.717412 21 | 0.58929 1.717200 22 | 0.6328 1.71250 23 | 0.64385 1.711470 24 | 0.6471 1.71117 25 | 0.65627 1.710371 26 | 0.6943 1.70738 27 | 0.70652 1.70652 28 | 0.7682 1.70280 29 | 0.8521 1.69893 30 | 0.8900 1.69751 31 | 1.0139 1.69376 32 | 1.0600 1.69263 33 | 1.1286 1.69112 34 | 1.3951 1.68649 35 | 1.5296 1.68453 36 | 1.8131 1.68067 37 | 1.9701 1.67854 38 | 2.2493 1.67457 39 | 2.3254 1.67343 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/TF4.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.81477 10 | 0.40466 1.78860 11 | 0.43583 1.774548 12 | 0.47999 1.760321 13 | 0.48613 1.758714 14 | 0.4880 1.75823 15 | 0.5140 1.75226 16 | 0.5208 1.75087 17 | 0.5300 1.74909 18 | 0.54607 1.746231 19 | 0.5682 1.74273 20 | 0.58756 1.740024 21 | 0.58929 1.739800 22 | 0.6328 1.73473 23 | 0.64385 1.733616 24 | 0.6471 1.73330 25 | 0.65627 1.732434 26 | 0.6943 1.72923 27 | 0.70652 1.72831 28 | 0.7682 1.72432 29 | 0.8521 1.72019 30 | 0.8900 1.71868 31 | 1.0139 1.71470 32 | 1.0600 1.71350 33 | 1.1286 1.71191 34 | 1.3951 1.70708 35 | 1.5296 1.70506 36 | 1.8131 1.70113 37 | 1.9701 1.69899 38 | 2.2493 1.69507 39 | 2.3254 1.69396 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/TF5.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.83360 10 | 0.40466 1.80608 11 | 0.43583 1.791346 12 | 0.47999 1.776436 13 | 0.48613 1.774755 14 | 0.4880 1.77426 15 | 0.5140 1.76802 16 | 0.5208 1.76657 17 | 0.5300 1.76470 18 | 0.54607 1.761712 19 | 0.5682 1.75806 20 | 0.58756 1.755234 21 | 0.58929 1.755000 22 | 0.6328 1.74971 23 | 0.64385 1.748557 24 | 0.6471 1.74822 25 | 0.65627 1.747325 26 | 0.6943 1.74397 27 | 0.70652 1.74301 28 | 0.7682 1.73886 29 | 0.8521 1.73457 30 | 0.8900 1.73299 31 | 1.0139 1.72888 32 | 1.0600 1.72765 33 | 1.1286 1.72601 34 | 1.3951 1.72107 35 | 1.5296 1.71903 36 | 1.8131 1.71508 37 | 1.9701 1.71294 38 | 2.2493 1.70903 39 | 2.3254 1.70792 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/TF7.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.80126 10 | 0.40466 1.77566 11 | 0.43583 1.761954 12 | 0.47999 1.748060 13 | 0.48613 1.746491 14 | 0.4880 1.74603 15 | 0.5140 1.74019 16 | 0.5208 1.73884 17 | 0.5300 1.73709 18 | 0.54607 1.734294 19 | 0.5682 1.73087 20 | 0.58756 1.728222 21 | 0.58929 1.728000 22 | 0.6328 1.72304 23 | 0.64385 1.72194 24 | 0.6471 1.72164 25 | 0.65627 1.72079 26 | 0.6943 1.71764 27 | 0.70652 1.71674 28 | 0.7682 1.71283 29 | 0.8521 1.70878 30 | 0.8900 1.70729 31 | 1.0139 1.70339 32 | 1.0600 1.70222 33 | 1.1286 1.70066 34 | 1.3951 1.69594 35 | 1.5296 1.69397 36 | 1.8131 1.69015 37 | 1.9701 1.68807 38 | 2.2493 1.68426 39 | 2.3254 1.68318 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/TF8.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.75119 10 | 0.40466 1.72992 11 | 0.43583 1.718363 12 | 0.47999 1.706541 13 | 0.48613 1.705199 14 | 0.4880 1.70480 15 | 0.5140 1.69980 16 | 0.5208 1.69864 17 | 0.5300 1.69714 18 | 0.54607 1.694729 19 | 0.5682 1.69178 20 | 0.58756 1.689492 21 | 0.58929 1.689300 22 | 0.6328 1.68500 23 | 0.64385 1.684055 24 | 0.6471 1.68379 25 | 0.65627 1.683049 26 | 0.6943 1.68031 27 | 0.70652 1.67952 28 | 0.7682 1.67610 29 | 0.8521 1.67252 30 | 0.8900 1.67120 31 | 1.0139 1.66770 32 | 1.0600 1.66663 33 | 1.1286 1.66519 34 | 1.3951 1.66072 35 | 1.5296 1.65880 36 | 1.8131 1.65497 37 | 1.9701 1.65286 38 | 2.2493 1.64895 39 | 2.3254 1.64784 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/TK12.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.59084 10 | 0.40466 1.58402 11 | 0.43583 1.580001 12 | 0.47999 1.575661 13 | 0.48613 1.575151 14 | 0.4880 1.57499 15 | 0.5140 1.57306 16 | 0.5208 1.57260 17 | 0.5300 1.57201 18 | 0.54607 1.571039 19 | 0.5682 1.56983 20 | 0.58756 1.568881 21 | 0.58929 1.568800 22 | 0.6328 1.56697 23 | 0.64385 1.566555 24 | 0.6471 1.56644 25 | 0.65627 1.566111 26 | 0.6943 1.56488 27 | 0.70652 1.56452 28 | 0.7682 1.56290 29 | 0.8521 1.56110 30 | 0.8900 1.56039 31 | 1.0139 1.55838 32 | 1.0600 1.55771 33 | 1.1286 1.55676 34 | 1.3951 1.55331 35 | 1.5296 1.55158 36 | 1.8131 1.54770 37 | 1.9701 1.54535 38 | 2.2493 1.54072 39 | 2.3254 1.53935 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/TK14.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.63791 10 | 0.40466 1.63016 11 | 0.43583 1.625606 12 | 0.47999 1.620702 13 | 0.48613 1.620127 14 | 0.4880 1.61996 15 | 0.5140 1.61778 16 | 0.5208 1.61726 17 | 0.5300 1.61659 18 | 0.54607 1.615506 19 | 0.5682 1.61416 20 | 0.58756 1.613091 21 | 0.58929 1.613000 22 | 0.6328 1.61096 23 | 0.64385 1.610499 24 | 0.6471 1.61037 25 | 0.65627 1.610007 26 | 0.6943 1.60864 27 | 0.70652 1.60825 28 | 0.7682 1.60647 29 | 0.8521 1.60451 30 | 0.8900 1.60375 31 | 1.0139 1.60161 32 | 1.0600 1.60090 33 | 1.1286 1.59991 34 | 1.3951 1.59638 35 | 1.5296 1.59464 36 | 1.8131 1.59080 37 | 1.9701 1.58851 38 | 2.2493 1.58403 39 | 2.3254 1.58271 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/TK16.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.63862 10 | 0.40466 1.63049 11 | 0.43583 1.625734 12 | 0.47999 1.620598 13 | 0.48613 1.619999 14 | 0.4880 1.61983 15 | 0.5140 1.61756 16 | 0.5208 1.61702 17 | 0.5300 1.61633 18 | 0.54607 1.615192 19 | 0.5682 1.61379 20 | 0.58756 1.612694 21 | 0.58929 1.612600 22 | 0.6328 1.61048 23 | 0.64385 1.610007 24 | 0.6471 1.60987 25 | 0.65627 1.609499 26 | 0.6943 1.60810 27 | 0.70652 1.60769 28 | 0.7682 1.60587 29 | 0.8521 1.60389 30 | 0.8900 1.60313 31 | 1.0139 1.60101 32 | 1.0600 1.60032 33 | 1.1286 1.59937 34 | 1.3951 1.59605 35 | 1.5296 1.59445 36 | 1.8131 1.59097 37 | 1.9701 1.58890 38 | 2.2493 1.58485 39 | 2.3254 1.58366 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/TK17.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.65401 10 | 0.40466 1.64587 11 | 0.43583 1.641100 12 | 0.47999 1.635953 13 | 0.48613 1.635351 14 | 0.4880 1.63517 15 | 0.5140 1.63289 16 | 0.5208 1.63235 17 | 0.5300 1.63165 18 | 0.54607 1.630513 19 | 0.5682 1.62910 20 | 0.58756 1.627995 21 | 0.58929 1.627900 22 | 0.6328 1.62576 23 | 0.64385 1.625284 24 | 0.6471 1.62515 25 | 0.65627 1.624771 26 | 0.6943 1.62335 27 | 0.70652 1.62294 28 | 0.7682 1.62109 29 | 0.8521 1.61907 30 | 0.8900 1.61829 31 | 1.0139 1.61609 32 | 1.0600 1.61538 33 | 1.1286 1.61437 34 | 1.3951 1.61082 35 | 1.5296 1.60907 36 | 1.8131 1.60523 37 | 1.9701 1.60292 38 | 2.2493 1.59840 39 | 2.3254 1.59707 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/TK2.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.59716 10 | 0.40466 1.58941 11 | 0.43583 1.584874 12 | 0.47999 1.579998 13 | 0.48613 1.579428 14 | 0.4880 1.57926 15 | 0.5140 1.57710 16 | 0.5208 1.57659 17 | 0.5300 1.57593 18 | 0.54607 1.574860 19 | 0.5682 1.57353 20 | 0.58756 1.572489 21 | 0.58929 1.572400 22 | 0.6328 1.57040 23 | 0.64385 1.569948 24 | 0.6471 1.56982 25 | 0.65627 1.569468 26 | 0.6943 1.56814 27 | 0.70652 1.56776 28 | 0.7682 1.56604 29 | 0.8521 1.56418 30 | 0.8900 1.56346 31 | 1.0139 1.56146 32 | 1.0600 1.56081 33 | 1.1286 1.55991 34 | 1.3951 1.55678 35 | 1.5296 1.55527 36 | 1.8131 1.55198 37 | 1.9701 1.55003 38 | 2.2493 1.54623 39 | 2.3254 1.54512 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/TK20.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.64930 10 | 0.40466 1.64074 11 | 0.43583 1.635746 12 | 0.47999 1.630367 13 | 0.48613 1.629739 14 | 0.4880 1.62955 15 | 0.5140 1.62717 16 | 0.5208 1.62661 17 | 0.5300 1.62589 18 | 0.54607 1.624702 19 | 0.5682 1.62324 20 | 0.58756 1.622097 21 | 0.58929 1.622000 22 | 0.6328 1.61979 23 | 0.64385 1.619296 24 | 0.6471 1.61916 25 | 0.65627 1.618769 26 | 0.6943 1.61732 27 | 0.70652 1.61689 28 | 0.7682 1.61501 29 | 0.8521 1.61297 30 | 0.8900 1.61219 31 | 1.0139 1.61002 32 | 1.0600 1.60932 33 | 1.1286 1.60835 34 | 1.3951 1.60501 35 | 1.5296 1.60342 36 | 1.8131 1.59998 37 | 1.9701 1.59797 38 | 2.2493 1.59409 39 | 2.3254 1.59296 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/TK21.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.68949 10 | 0.40466 1.67908 11 | 0.43583 1.673064 12 | 0.47999 1.666653 13 | 0.48613 1.665908 14 | 0.4880 1.66569 15 | 0.5140 1.66288 16 | 0.5208 1.66221 17 | 0.5300 1.66136 18 | 0.54607 1.659961 19 | 0.5682 1.65825 20 | 0.58756 1.656914 21 | 0.58929 1.656800 22 | 0.6328 1.65424 23 | 0.64385 1.653667 24 | 0.6471 1.65351 25 | 0.65627 1.653058 26 | 0.6943 1.65139 27 | 0.70652 1.65090 28 | 0.7682 1.64876 29 | 0.8521 1.64648 30 | 0.8900 1.64561 31 | 1.0139 1.64326 32 | 1.0600 1.64251 33 | 1.1286 1.64150 34 | 1.3951 1.63814 35 | 1.5296 1.63660 36 | 1.8131 1.63336 37 | 1.9701 1.63149 38 | 2.2493 1.62793 39 | 2.3254 1.62690 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/TK23.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.61262 10 | 0.40466 1.60532 11 | 0.43583 1.601042 12 | 0.47999 1.596406 13 | 0.48613 1.595862 14 | 0.4880 1.59570 15 | 0.5140 1.59363 16 | 0.5208 1.59314 17 | 0.5300 1.59251 18 | 0.54607 1.591471 19 | 0.5682 1.59019 20 | 0.58756 1.589188 21 | 0.58929 1.589100 22 | 0.6328 1.58715 23 | 0.64385 1.586711 24 | 0.6471 1.58659 25 | 0.65627 1.586242 26 | 0.6943 1.58495 27 | 0.70652 1.58457 28 | 0.7682 1.58287 29 | 0.8521 1.58100 30 | 0.8900 1.58027 31 | 1.0139 1.57821 32 | 1.0600 1.57753 33 | 1.1286 1.57657 34 | 1.3951 1.57316 35 | 1.5296 1.57145 36 | 1.8131 1.56765 37 | 1.9701 1.56533 38 | 2.2493 1.56074 39 | 2.3254 1.55937 40 | -------------------------------------------------------------------------------- /tracepy/glass/lzos/TK9.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "LZOS Clear optical glass catalogue" 6 | DATA: 7 | - type: tabulated n 8 | data: | 9 | 0.3650 1.64583 10 | 0.40466 1.63675 11 | 0.43583 1.631483 12 | 0.47999 1.625838 13 | 0.48613 1.625181 14 | 0.4880 1.62499 15 | 0.5140 1.62250 16 | 0.5208 1.62191 17 | 0.5300 1.62116 18 | 0.54607 1.619926 19 | 0.5682 1.61840 20 | 0.58756 1.617202 21 | 0.58929 1.617100 22 | 0.6328 1.61482 23 | 0.64385 1.614307 24 | 0.6471 1.61416 25 | 0.65627 1.613761 26 | 0.6943 1.61226 27 | 0.70652 1.61182 28 | 0.7682 1.60989 29 | 0.8521 1.60720 30 | 0.8900 1.60701 31 | 1.0139 1.60482 32 | 1.0600 1.60412 33 | 1.1286 1.60316 34 | 1.3951 1.59990 35 | 1.5296 1.59836 36 | 1.8131 1.59505 37 | 1.9701 1.59310 38 | 2.2493 1.58932 39 | 2.3254 1.58821 40 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/APL1.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.2762403 -0.0096874647 2 0.0092330378 -2 0.00038940853 -4 -3.8018733e-05 -6 2.0693225e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.517277 32 | Vd: 69.563209 33 | glass_code: 517696 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/BAH54.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.802774 -0.011441428 2 0.023830231 -2 0.00057322688 -4 1.1516047e-05 -6 1.2065896e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.695000 32 | Vd: 42.167111 33 | glass_code: 695422 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/BAL42.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.4686122 -0.0099937773 2 0.013115756 -2 0.00045052253 -4 -3.1570294e-05 -6 1.7307442e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.583126 32 | Vd: 59.373789 33 | glass_code: 583594 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/BAL50.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.3982661 -0.010222781 2 0.012110445 -2 0.00037767581 -4 -2.7339021e-05 -6 1.5701891e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.559625 32 | Vd: 61.172671 33 | glass_code: 560612 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/BSM18.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.6385199 -0.010968446 2 0.01597395 -2 0.00053519299 -4 -3.5705726e-05 -6 2.6035403e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.638539 32 | Vd: 55.384768 33 | glass_code: 639554 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/BSM36.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.6546711 -0.012819365 2 0.015197193 -2 0.00050420821 -4 -3.4995634e-05 -6 2.0492682e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.642495 32 | Vd: 58.369399 33 | glass_code: 643584 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/BSM71.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.6654566 -0.0093666483 2 0.018458132 -2 0.00016162509 -4 2.0907914e-05 -6 -1.3617346e-07 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.648497 32 | Vd: 53.035185 33 | glass_code: 649530 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/BSM81.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.6493149 -0.014491012 2 0.014390568 -2 0.0005294553 -4 -4.134593e-05 -6 2.2951175e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.639999 32 | Vd: 60.091709 33 | glass_code: 640601 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/BSM93.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.6481267 -0.011553471 2 0.015517531 -2 0.00053211731 -4 -3.390687e-05 -6 2.099346e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.640998 32 | Vd: 56.927542 33 | glass_code: 641569 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/FPL51.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.2184385 -0.0059347504 2 0.0080764899 -2 0.00016581036 -4 -8.0553319e-06 -6 3.5839492e-07 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.496999 32 | Vd: 81.614660 33 | glass_code: 497816 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/FPL52.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.1024886 -0.0053455182 2 0.0060469928 -2 0.00028496405 -4 -2.987651e-05 -6 1.539752e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.455999 32 | Vd: 90.318880 33 | glass_code: 456903 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/FPL53.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.0531286 -0.0043190085 2 0.0062752442 -2 -9.8512972e-06 -4 1.364971e-05 -6 -8.9037944e-07 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.438750 32 | Vd: 94.960437 33 | glass_code: 439950 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/FSL5.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.189801 -0.0098715424 2 0.0081379561 -2 0.00042431698 -4 -4.3722026e-05 -6 2.3005833e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.487490 32 | Vd: 70.210260 33 | glass_code: 487702 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/FTM16.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.4732588 -0.010524934 2 0.019876763 -2 0.0013151817 -4 -9.4064852e-05 -6 1.0616142e-05 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.592701 32 | Vd: 35.296315 33 | glass_code: 593353 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAH51.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 3.110662 -0.014462677 2 0.026457698 -2 0.00091877798 -4 -3.3951573e-05 -6 3.325784e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.785896 32 | Vd: 44.186159 33 | glass_code: 786442 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAH52.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 3.153652 -0.015630638 2 0.028741717 -2 0.00080868084 -4 -1.0164635e-05 -6 2.9615511e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.799516 32 | Vd: 42.241337 33 | glass_code: 800422 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAH53.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 3.1735908 -0.014865209 2 0.02954021 -2 0.00098366596 -4 -2.2979104e-05 -6 3.8043975e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.806098 32 | Vd: 40.948508 33 | glass_code: 806410 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAH54.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 3.2126997 -0.01535137 2 0.028440374 -2 0.00079180171 -4 -1.7032771e-05 -6 2.6219094e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.815543 32 | Vd: 44.361146 33 | glass_code: 816444 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAH55.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 3.2764855 -0.015309073 2 0.030415926 -2 0.00088670657 -4 -1.718301e-05 -6 2.7050718e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.834807 32 | Vd: 42.723720 33 | glass_code: 835427 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAH58.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 3.4415721 -0.014237538 2 0.03473123 -2 0.0010264409 -4 -1.6386952e-05 -6 2.8714098e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.882997 32 | Vd: 40.778667 33 | glass_code: 883408 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAH59.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 3.2178118 -0.014296789 2 0.027199504 -2 0.00079036567 -4 -2.3850632e-05 -6 2.0013066e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.816000 32 | Vd: 46.626446 33 | glass_code: 816466 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAH60.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 3.2618526 -0.015375794 2 0.033152898 -2 0.0014090033 -4 -5.5295605e-05 -6 7.1360367e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.834000 32 | Vd: 37.166863 33 | glass_code: 834372 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAH63.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 3.1647389 -0.014742454 2 0.030279435 -2 0.0010475442 -4 -2.4957393e-05 -6 4.4251949e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.804398 32 | Vd: 39.581254 33 | glass_code: 804396 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAH64.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 3.122744 -0.015173059 2 0.025766499 -2 0.00055121032 -4 6.0710815e-06 -6 4.8871364e-07 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.788001 32 | Vd: 47.385275 33 | glass_code: 788474 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAH65.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 3.1767027 -0.015350032 2 0.026690666 -2 0.00070784089 -4 -1.5485093e-05 -6 1.9530666e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.804000 32 | Vd: 46.575911 33 | glass_code: 804466 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAH66.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 3.0731081 -0.015043205 2 0.023933518 -2 0.00055696651 -4 -1.0082346e-05 -6 1.1873265e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.772499 32 | Vd: 49.601340 33 | glass_code: 773496 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAH67.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 3.1439609 -0.015541721 2 0.026648169 -2 0.00077813143 -4 -1.9462248e-05 -6 2.4668548e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.794997 32 | Vd: 45.293967 33 | glass_code: 795453 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAH75.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 3.3972115 -0.015825501 2 0.036818916 -2 0.0017596445 -4 -8.4041673e-05 -6 1.0522807e-05 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.873996 32 | Vd: 35.258591 33 | glass_code: 874353 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAL10.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.8967406 -0.01222188 2 0.021099546 -2 0.00063090904 -4 -2.8901915e-05 -6 2.1652922e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.719995 32 | Vd: 50.254429 33 | glass_code: 720503 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAL11.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.7037498 -0.011741892 2 0.0158996 -2 0.00061265364 -4 -4.6676845e-05 -6 2.6544952e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.658296 32 | Vd: 57.332589 33 | glass_code: 658573 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAL12.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.7589457 -0.0087787656 2 0.021173055 -2 -0.00047262367 -4 9.6870749e-05 -6 -4.0576545e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.677900 32 | Vd: 55.337587 33 | glass_code: 678553 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAL13.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.814252 -0.013645728 2 0.018724991 -2 0.00056380326 -4 -2.852714e-05 -6 1.8227195e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.693501 32 | Vd: 53.231566 33 | glass_code: 694532 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAL14.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.8274666 -0.014568462 2 0.018525487 -2 0.0003748582 -4 -7.1291749e-06 -6 6.7781934e-07 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.696796 32 | Vd: 55.528037 33 | glass_code: 697555 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAL18.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.934239 -0.015232638 2 0.01968169 -2 0.00052343197 -4 -1.9855288e-05 -6 1.1787472e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.729157 32 | Vd: 54.683134 33 | glass_code: 729547 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAL52.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.7418702 -0.012719153 2 0.016306977 -2 0.00061414226 -4 -4.8242632e-05 -6 2.8875864e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.669999 32 | Vd: 57.327972 33 | glass_code: 670573 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAL54.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.6786604 -0.011137943 2 0.016391023 -2 0.00047317724 -4 -2.4508283e-05 -6 1.7003664e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.650996 32 | Vd: 56.154774 33 | glass_code: 651562 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAL56.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.7596566 -0.010659546 2 0.018646689 -2 0.00076127484 -4 -5.3585332e-05 -6 3.7820929e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.677898 32 | Vd: 50.723364 33 | glass_code: 678507 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAL59.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.9466133 -0.014813612 2 0.020753291 -2 0.00071087608 -4 -4.178079e-05 -6 2.5896668e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.733997 32 | Vd: 51.488026 33 | glass_code: 734515 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAL60.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.9223334 -0.015268924 2 0.020070735 -2 0.00049690538 -4 -1.5326299e-05 -6 1.0772354e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.725999 32 | Vd: 53.565698 33 | glass_code: 726536 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAL61.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.9706808 -0.015058733 2 0.021490548 -2 0.00038566151 -4 4.1252602e-06 -6 1.0912892e-07 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.740999 32 | Vd: 52.648747 33 | glass_code: 741527 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAL8.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.8795551 -0.01462241 2 0.019128502 -2 0.00061342737 -4 -3.5439045e-05 -6 2.1550362e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.712995 32 | Vd: 53.845848 33 | glass_code: 713538 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAL9.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.8062228 -0.01325307 2 0.019370701 -2 0.00013885534 -4 2.596583e-05 -6 -9.3551589e-07 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.691002 32 | Vd: 54.843220 33 | glass_code: 691548 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAM2.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.967968 -0.011312544 2 0.024812309 -2 0.00067776202 -4 -1.0278339e-05 -6 2.1968703e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.743997 32 | Vd: 44.787528 33 | glass_code: 744448 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/LAM3.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.8826295 -0.01060676 2 0.022303134 -2 0.00055786284 -4 -1.1488225e-05 -6 1.8527798e-06 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.717004 32 | Vd: 47.942632 33 | glass_code: 717479 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/PBM11.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 2.5613591 -0.01200739 2 0.020780357 -2 0.001425606 -4 -0.00011027477 -6 1.1477786e-05 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.620955 32 | Vd: 35.880852 33 | glass_code: 621359 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/ohara/TIH6.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "OHARA Zemax catalog 2017-11-30 (obtained from http://www.ohara-inc.co.jp)
See also OHARA glass data sheets" 6 | COMMENTS: "" 7 | DATA: 8 | - type: formula 3 9 | wavelength_range: 0.334 2.325 10 | coefficients: 3.1200483 -0.012774901 2 0.042416181 -2 0.0025526467 -4 -0.00011907015 -6 2.3448425e-05 -8 11 | - type: tabulated k 12 | data: | 13 | 0.334 -0.0000E+00 14 | 0.350 -0.0000E+00 15 | 0.365 -0.0000E+00 16 | 0.370 -0.0000E+00 17 | 0.380 -0.0000E+00 18 | 0.390 -0.0000E+00 19 | 0.400 -0.0000E+00 20 | 0.420 -0.0000E+00 21 | 0.460 -0.0000E+00 22 | 0.500 -0.0000E+00 23 | 0.660 -0.0000E+00 24 | 1.060 -0.0000E+00 25 | 1.529 -0.0000E+00 26 | 2.325 -0.0000E+00 27 | SPECS: 28 | n_absolute: false 29 | wavelength_vacuum: false 30 | temperature: 25.0 °C 31 | nd: 1.805181 32 | Vd: 25.432057 33 | glass_code: 805254 34 | glass_status: preferred 35 | -------------------------------------------------------------------------------- /tracepy/glass/schott/infrared/IRG23.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "SCHOTT Infrared Chalcogenide Glasses - IRG 23 Product flyer (Version May 2013)" 6 | COMMENTS: "20 °C" 7 | DATA: 8 | - type: formula 1 9 | wavelength_range: 1.0 12 10 | coefficients: 3.74971 3.07065 0.498392 0.953206 40.7557 11 | -------------------------------------------------------------------------------- /tracepy/glass/schott/misc/B270.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "B 270 datasheet, August 1993" 6 | COMMENTS: "20 °C. Clear high transmission crown glass (modified soda-lime glass) available in form of sheets, profile rods strips and blanks" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.43583 1.5341 11 | 0.47999 1.5297 12 | 0.48613 1.5292 13 | 0.54607 1.5251 14 | 0.58756 1.5230 15 | 0.58929 1.5229 16 | 0.64385 1.5207 17 | 0.65627 1.5203 18 | -------------------------------------------------------------------------------- /tracepy/glass/schott/misc/BOROFLOAT33.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "Datasheet \"BOROFLOAT® 33 glass - Optical Properties\", SCHOTT North America Inc. (2014)
(Courtesy of SCHOTT North America)" 6 | COMMENTS: "Room temperature. ORIENTATION VALUES ONLY!" 7 | DATA: 8 | - type: tabulated n 9 | data: | 10 | 0.36501 1.48856 11 | 0.40466 1.48330 12 | 0.43583 1.48019 13 | 0.47999 1.47679 14 | 0.48613 1.47639 15 | 0.54607 1.47315 16 | 0.58756 1.47144 17 | 0.64385 1.46957 18 | 0.65627 1.46922 19 | 0.70652 1.46792 20 | 0.85211 1.46508 21 | 1.01398 1.46273 22 | 1.30000 1.45920 23 | 1.55000 1.45613 24 | -------------------------------------------------------------------------------- /tracepy/glass/schott/misc/ZERODUR.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "SCHOTT Technical Information: Optical Properties of ZERODUR, November 2007" 6 | DATA: 7 | - type: formula 2 8 | wavelength_range: 0.365 2.325 9 | coefficients: 0 1.3182408 0.00879 0.0244 0.0609 1.08915181 110 10 | -------------------------------------------------------------------------------- /tracepy/glass/schott/obsolete/LF7.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "SCHOTT LF7 glass data sheet (2006)" 6 | COMMENTS: "obsolete" 7 | DATA: 8 | - type: formula 2 9 | wavelength_range: 0.334 0.700 10 | coefficients: 0 1.26879731 0.00919553925 0.156697051 0.0447256764 0.887676301 106.8203610 11 | - type: tabulated k 12 | data: | 13 | 0.334 6.2652E-07 14 | 0.350 1.4286E-07 15 | 0.365 4.3899E-08 16 | 0.370 2.9592E-08 17 | 0.380 1.8198E-08 18 | 0.390 1.2439E-08 19 | 0.400 1.2758E-08 20 | 0.420 6.6912E-09 21 | 0.460 7.3285E-09 22 | 0.500 7.9657E-09 23 | 0.580 9.2402E-09 24 | 0.660 1.5780E-08 25 | 0.700 2.2326E-08 26 | -------------------------------------------------------------------------------- /tracepy/glass/vitron/IG2.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "1) VITRON datasheet IG-2 June 2014
2) Dr. Rolf Henkel (VITRON Spezialwerkstoffe GmbH) - private communications" 6 | COMMENTS: "Room temperature. Refractive index is relative to air at standard conditions; Wavelength in dispersion formula is as measured in air and expressed in micrometers." 7 | DATA: 8 | - type: formula 1 9 | wavelength_range: 1.0 12.0 10 | coefficients: 2.341388 2.962098 0.360017 0.831035 35.023342 11 | - type: tabulated k 12 | data: | 13 | 1.0 7.6434E-07 14 | 1.5 4.4239E-07 15 | 2.0 4.5765E-07 16 | 3.0 8.8443E-07 17 | 4.0 7.8088E-07 18 | 5.0 9.6615E-07 19 | 6.0 4.8549E-07 20 | 7.0 5.9146E-07 21 | 8.0 1.5079E-06 22 | 9.0 2.0710E-07 23 | 10.0 3.7970E-07 24 | 11.0 4.3306E-06 25 | 12.0 5.1546E-05 26 | 13.0 9.2932E-05 27 | 14.0 3.6857E-05 28 | -------------------------------------------------------------------------------- /tracepy/glass/vitron/IG3.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "1) VITRON datasheet IG-3 June 2014
2) Dr. Rolf Henkel (VITRON Spezialwerkstoffe GmbH) - private communications" 6 | COMMENTS: "Room temperature. Refractive index is relative to air at standard conditions; Wavelength in dispersion formula is as measured in air and expressed in micrometers." 7 | DATA: 8 | - type: formula 1 9 | wavelength_range: 1.0 12.0 10 | coefficients: 3.885429 2.934475 0.508386 0.573772 32.406166 11 | - type: tabulated k 12 | data: | 13 | 1.0 1.0000E-03 14 | 1.5 1.2419E-06 15 | 2.0 1.0003E-06 16 | 3.0 1.2925E-06 17 | 4.0 1.1877E-06 18 | 5.0 2.1506E-06 19 | 6.0 1.0243E-06 20 | 7.0 1.1946E-06 21 | 8.0 3.0023E-06 22 | 9.0 4.5033E-07 23 | 10.0 5.3779E-07 24 | 11.0 5.8146E-06 25 | 12.0 4.8806E-05 26 | 13.0 1.7298E-04 27 | 14.0 5.3684E-05 28 | -------------------------------------------------------------------------------- /tracepy/glass/vitron/IG4.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "1) VITRON datasheet IG-4 June 2014
2) Dr. Rolf Henkel (VITRON Spezialwerkstoffe GmbH) - private communications" 6 | COMMENTS: "Room temperature. Refractive index is relative to air at standard conditions; Wavelength in dispersion formula is as measured in air and expressed in micrometers." 7 | DATA: 8 | - type: formula 1 9 | wavelength_range: 1.0 12.0 10 | coefficients: 2.810961 3.041642 0.398128 0.863445 42.516520 11 | - type: tabulated k 12 | data: | 13 | 1.0 4.5189E-07 14 | 1.5 3.4852E-07 15 | 2.0 4.1109E-07 16 | 3.0 8.1875E-07 17 | 4.0 7.8380E-07 18 | 5.0 9.6403E-07 19 | 6.0 1.1697E-06 20 | 7.0 1.3401E-06 21 | 8.0 3.6640E-06 22 | 9.0 5.9186E-07 23 | 10.0 1.0293E-06 24 | 11.0 4.9023E-06 25 | 12.0 5.6255E-05 26 | 13.0 1.5434E-04 27 | 14.0 5.7641E-05 28 | -------------------------------------------------------------------------------- /tracepy/glass/vitron/IG5.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "1) VITRON datasheet IG-5 June 2014
2) Dr. Rolf Henkel (VITRON Spezialwerkstoffe GmbH) - private communications" 6 | COMMENTS: "Room temperature. Refractive index is relative to air at standard conditions; Wavelength in dispersion formula is as measured in air and expressed in micrometers." 7 | DATA: 8 | - type: formula 1 9 | wavelength_range: 1.0 12.0 10 | coefficients: 2.810945 3.046894 0.402147 1.793191 46.757008 11 | - type: tabulated k 12 | data: | 13 | 1.0 1.6167E-06 14 | 1.5 7.1222E-07 15 | 2.0 9.1812E-07 16 | 3.0 1.3646E-06 17 | 4.0 1.4429E-06 18 | 5.0 1.7754E-06 19 | 6.0 1.4909E-06 20 | 7.0 1.4914E-06 21 | 8.0 2.1907E-06 22 | 9.0 6.8308E-07 23 | 10.0 9.4902E-07 24 | 11.0 4.6058E-06 25 | 12.0 4.3045E-05 26 | 13.0 1.0304E-04 27 | 14.0 3.8519E-05 28 | -------------------------------------------------------------------------------- /tracepy/glass/vitron/IG6.yml: -------------------------------------------------------------------------------- 1 | # this file is part of refractiveindex.info database 2 | # refractiveindex.info database is in the public domain 3 | # copyright and related rights waived via CC0 1.0 4 | 5 | REFERENCES: "1) VITRON datasheet IG-6 June 2014
2) Dr. Rolf Henkel (VITRON Spezialwerkstoffe GmbH) - private communications" 6 | COMMENTS: "Room temperature. Refractive index is relative to air at standard conditions; Wavelength in dispersion formula is as measured in air and expressed in micrometers." 7 | DATA: 8 | - type: formula 1 9 | wavelength_range: 1.0 12.0 10 | coefficients: 3.110014 3.669697 0.426372 2.358954 59.555103 11 | - type: tabulated k 12 | data: | 13 | 1.0 9.9503E-07 14 | 1.5 5.3877E-07 15 | 2.0 4.2951E-07 16 | 3.0 1.0636E-06 17 | 4.0 9.5938E-07 18 | 5.0 8.9935E-07 19 | 6.0 9.2298E-07 20 | 7.0 5.9146E-07 21 | 8.0 1.2363E-07 22 | 9.0 1.0618E-06 23 | 10.0 3.2719E-07 24 | 11.0 1.2674E-06 25 | 12.0 2.6299E-06 26 | 13.0 2.5220E-05 27 | 14.0 7.4877E-05 28 | -------------------------------------------------------------------------------- /tracepy/iotables.py: -------------------------------------------------------------------------------- 1 | import pandas as pd 2 | 3 | # TODO: Rewrite save_optics to iterate over geo_params to handle edge 4 | # cases, and convert to dataframe at end before exporting to csv. 5 | def save_optics(geo_params, filename: str): 6 | """Save geometry to an optics table in csv format. 7 | 8 | Note 9 | ---- 10 | Directly saves the csv file rather than returning something. 11 | 12 | Parameters 13 | ---------- 14 | geo_params : list of dictionaries 15 | Dictionaries correspond to surfaces. 16 | filename : str 17 | Output filename. 18 | 19 | """ 20 | 21 | table = pd.DataFrame.from_dict(geo_params) 22 | table[['X', 'Y', 'Z']] = pd.DataFrame(table.P.values.tolist(), index= table.index) 23 | table[['Alpha', 'Beta', 'Gamma']] = pd.DataFrame(table.D.values.tolist(), index= table.index) 24 | del[table['P']]; del[table['D']] 25 | pd.DataFrame.to_csv(table, filename) 26 | -------------------------------------------------------------------------------- /tracepy/utils.py: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | 3 | def gen_rot(ang: np.ndarray) -> np.ndarray: 4 | """Returns a rotation matrix from 3 rotation angles. 5 | 6 | Parameters 7 | ---------- 8 | ang : np.array of length 3 9 | Euler angles alpha, beta, gamma in the lab frame. 10 | 11 | Returns 12 | ------- 13 | np.array((3,3)) 14 | Returns the rotation matrix. 15 | 16 | """ 17 | 18 | alpha, beta, gamma = ang 19 | R_11 = np.cos(alpha)*np.cos(gamma)+np.sin(alpha)*np.sin(beta)*np.sin(gamma) 20 | R_12 = -np.cos(beta)*np.sin(gamma) 21 | R_13 = -np.sin(alpha)*np.cos(gamma)+np.cos(alpha)*np.sin(beta)*np.sin(gamma) 22 | R_21 = np.cos(alpha)*np.sin(gamma)-np.sin(alpha)*np.sin(beta)*np.cos(gamma) 23 | R_22 = np.cos(beta)*np.cos(gamma) 24 | R_23 = -np.sin(alpha)*np.sin(gamma)-np.cos(alpha)*np.sin(beta)*np.cos(gamma) 25 | R_31 = np.sin(alpha)*np.cos(beta) 26 | R_32 = np.sin(beta) 27 | R_33 = np.cos(alpha)*np.cos(beta) 28 | R = np.array([[R_11, R_12, R_13],\ 29 | [R_21, R_22, R_23],\ 30 | [R_31, R_32, R_33]]) 31 | return R 32 | --------------------------------------------------------------------------------