File:Gaas inas quantum dot.jpg

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Original file(1,400 × 484 pixels, file size: 550 KB, MIME type: image/jpeg)

Captions

Captions

Atomic resolution scanning transmission electron microscopy image of indium gallium arsenide quantum dot in gallium arsenide.

Summary

[edit]
Description
English: An atomic resolution image of a indium gallium arsenide (InGaAs) quantum dot embedded within gallium arsenide (GaAs). Image acquired using scanning transmission electron microscopy.
Date
Source Own work
Author Magnunor

Licensing

[edit]
I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.

Code

[edit]
from scipy.ndimage import rotate
import matplotlib.pyplot as plt
import matplotlib.patheffects as patheffects
import matplotlib.font_manager as fm
from mpl_toolkits.axes_grid1.anchored_artists import AnchoredSizeBar
import hyperspy.api as hs

# Load, rotate and crop data
s_adf = hs.load("gaas_inas_quantum_dot.dm3")
s_adf.data = rotate(s_adf.data, angle=90, reshape=False)
s_adf_crop = s_adf.isig[2.3:38.1, 10.6:23.]

aspect_ratio = s_adf_crop.data.shape[0] / s_adf_crop.data.shape[1]

# Making figure
fig, ax = plt.subplots(figsize=(7, 7 * aspect_ratio))

cax = ax.imshow(s_adf_crop, extent=s_adf_crop.axes_manager.signal_extent, vmin=29000, vmax=50000)

# Annotations
path_effects = [patheffects.withStroke(linewidth=3, foreground='black', capstyle="round")]
text_kwargs = {'fontsize': 25, 'color': 'white', 'path_effects': path_effects,
               'transform': ax.transAxes}
ax.text(0.02, 0.03, "GaAs", ha="left", va="bottom", **text_kwargs)
ax.text(0.02, 0.32, "InGaAs", ha="left", va="bottom", **text_kwargs)
ax.text(0.02, 0.75, "GaAs", ha="left", va="bottom", **text_kwargs)

ax.text(0.75, 0.72, "Quantum\ndot", multialignment='right', **text_kwargs)
ax.arrow(34., 20.5, -3.5, -1.5, color='white', path_effects=path_effects,
         width=0.2)

# Scalebar
fontprops = fm.FontProperties(size=30)
kwargs_sizebar = {'loc': 4, 'frameon': False, 'color': 'white', 'label_top': False}
scalebar = AnchoredSizeBar(transform=ax.transData, size=10, label=u'10 nm',
                           size_vertical=0.45, fontproperties=fontprops, **kwargs_sizebar)
ax.add_artist(scalebar)
scalebar.txt_label._text.set_path_effects(path_effects)

ax.set_axis_off()

fig.subplots_adjust(0, 0, 1, 1)
fig.savefig("gaas_inas_quantum_dot.jpg", dpi=200)

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current09:26, 22 October 2019Thumbnail for version as of 09:26, 22 October 20191,400 × 484 (550 KB)Magnunor (talk | contribs)User created page with UploadWizard

The following page uses this file:

File usage on other wikis

The following other wikis use this file: