| tags | hide | render_macros | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
true |
This tutorial demonstrates the process of creating a gold nanoparticle structures based on the work presented in the following manuscript.
!!!note "Manuscript" > A. H. Larsen, J. Kleis, K. S. Thygesen, J. K. Nørskov, and K. W. Jacobsen, > "Electronic shell structure and chemisorption on gold nanoparticles", > Phys. Rev. B 84, 245429 (2011), > DOI: 10.1103/PhysRevB.84.245429{:target='_blank'}. [@Larsen2011]
We use the Materials Designer to create gold nanoparticle structures of cuboctahedral and icosahedral shapes as shown in the image below.
First, we navigate to Materials Designer and import the Gold material from the Standata.
Then we will use the JupyterLite environment to create gold nanoparticle structures.
Select the "Advanced > JupyterLite Transformation" menu item to launch the JupyterLite environment.
Next, edit create_cluster_ase.ipynb notebook to modify the parameters by changing values:
shape = ASENanoparticleShapesEnum.OCTAHEDRON- the shape of the nanoclusterparameters = {"length": 5, "cutoff": 2}- the parameters of the nanocluster according to ASE Cluster Octahedron documentation.
Cuboctahedron shape is achieved by setting parameters of the octahedron to be in relationship: length = 2 * cutoff + 1
Copy the content below and adjust the "1.1. Set up slab parameters" cell in the notebook:
from mat3ra.made.tools.build.pristine_structures.zero_dimensional.nanoparticle import NanoparticleShapesEnum
shape = NanoparticleShapesEnum.OCTAHEDRON
parameters = {
"length": 5,
"cutoff": 2
}Run the notebook by selecting "Run > Run All Cells" from the menu.
After running the notebook, the octahedral gold nanoparticle structure will be created.
The user will be able to visualize the created structure and download the corresponding files.
For better view of the solid symmetry rotation of image might be needed like "rotation": "45y,45x" for the cuboctahedron.
After reviewing the results, the user can pass the material to Materials Designer for further analysis.
Or the user can save or download the material in Material JSON format or POSCAR format.
Repeat the steps above to create gold nanoparticle structures with other shapes and sizes.
To create the rest of the structures set the shape and other parameters accordingly:
For Cuboctahedron with 147 atoms:
shape = NanoparticleShapesEnum.OCTAHEDRON
parameters = {
"length": 7,
"cutoff": 3
}For Cuboctahedron with 309 atoms:
shape = NanoparticleShapesEnum.OCTAHEDRON
parameters = {
"length": 9,
"cutoff": 4
}For Icosahedron with 55 atoms:
shape = ASENanoparticleShapesEnum.ICOSAHEDRON
parameters = {
"noshells": 3
}For Icosahedron with 147 atoms:
shape = ASENanoparticleShapesEnum.ICOSAHEDRON
parameters = {
"noshells": 4
}For Icosahedron with 309 atoms:
shape = ASENanoparticleShapesEnum.ICOSAHEDRON
parameters = {
"noshells": 5
}The interactive JupyterLite notebook for creating Gold Nanoclusters can be accessed below. To run the notebook, click on the "Run All" button.
{% with origin_url=config.extra.jupyterlite.origin_url %} {% with notebooks_path_root=config.extra.jupyterlite.notebooks_path_root %} {% with notebook_name='specific_examples/nanocluster_gold.ipynb' %} {% include 'jupyterlite_embed.html' %} {% endwith %} {% endwith %} {% endwith %}











