Vyshnevyy-o

Data for Main / Ws2 / Vyshnevyy-o

import os
import matplotlib.pyplot as plt
import numpy as np
import refidx as ri

plt.style.use("../../doc/refidx.mplstyle")
db = ri.DataBase()
matid = ['main', 'WS2', 'Vyshnevyy-o']
mat = db.get_item(matid)
wr = mat.wavelength_range
lamb = np.linspace(*wr, 1000)
index = mat.get_index(lamb)
fig, ax = plt.subplots(2, 1, figsize=(3, 3))
ax[0].plot(lamb, index.real, "-", color="#aa0044")
ax[1].plot(lamb, index.imag, "-", color="#6886b3")
ax[0].set_xlabel(r"Wavelength ($\rm μm$)")
ax[1].set_xlabel(r"Wavelength ($\rm μm$)")
ax[0].set_ylabel(r"$n^{\prime}$")
ax[1].set_ylabel(r"$n^{\prime\prime}$")
plt.suptitle(mat)
mat.print_info(
    html=True,
    tmp_dir=os.path.join("..","..", "doc", "auto_gallery","WS2"),
    filename="out_main_WS2_Vyshnevyy_o.html",
)
Material main WS2 Vyshnevyy-o
Comments

Bulk WS2. Ordinary ray (o).

References

A. A. Vyshnevyy, G. A. Ermolaev, D. V. Grudinin, K. V. Voronin, I. Kharichkin, A. Mazitov, I. A. Kruglov, D. I. Yakubovky, P. Mishra, R. V. Kirtaev, A. V. Arsenin, K. S. Novoselov, L. Martin-Moreno, V. S. Volkov. Van der Waals Materials for overcoming fundamental limitations in photonic integrated circuitry, Nano Lett., 23, 8057–8064 (2023) (Numerical data kindly provided by Georgy Ermolaev)

Total running time of the script: (0 minutes 0.403 seconds)

Estimated memory usage: 225 MB

Gallery generated by Sphinx-Gallery