6. Selecting candidate materials¶
If we had unlimited computational resources, we would simply screen the whole database. From a tutorial perspective, however, there is not much difference between screening 5 or screening 500 structures, except for the longer wait time.
Instead, you will now use what you’ve learned about extracting information from the AiiDA database in order to select 3 good candidate materials, whose deliverable capacities you are going to compute.
6.1. What makes a good material for methane storage?¶
You’ve already learned this morning about some key descriptors that can be used to guess whether a nanoporous material can be suitable for methane storage. You may want to consult the SLIDES in order to refresh your memory, and have a look at a brief description of some important geometrical properties computed by zeo++.
6.1.1. Exercise¶
Pick two geometric descriptors to use for selecting your candidate materials.Load a NetworkCalculation node and identify the corresponding keys for these two descriptors (and their units).
6.2. Finding good candidates¶
Let’s use the QueryBuilder in order get the full range of the two descriptors in the database:
qb=QueryBuilder()
qb.append(CifData, tag='cif')
qb.append(ParameterData, descendant_of='cif',
project=['attributes.Density', 'attributes.Number_of_channels']
)
result = qb.all()
In order to figure out which properties zeo++ computed, have a look at the attributes of one of the zeo++ output nodes, for example:
pm=load_node('f1834bb1-3279-40ca-94dc-a02832143d0d')
pm.get_attrs()
NoteWe are using
DensityandNumber_of_channelshere but this combination is just an example (and not an ideal choice). If you are wondering how to set upParameterDataandCifData, see the previous section.
Plot the result using the plotting library of your choice.
Using matplotlib you would do something like
import matplotlib.pyplot as plt
x,y = zip(*result)
plt.plot(x,y,'o')
plt.show()
6.2.1. Exercise¶
Use the information from the plots to identify a suitable target range for your descriptors and filter the structures within this range.
Once you’ve identified the range of your two parameters,
get the labels of the structure in this range.
Note that you can combine filters like so:
filters = { "and": [
{ 'attributes.Density': {'and': [{'>': 1.0}, {'<': 1.5}] } },
{ 'attributes.Number_of_channels': {'>': 1}},
]},
For explanations on filters, see the previous section.
NoteThe
labelcan be used to give human-readable identifiers to any AiiDA node. By default it is empty, but we have added labels for allCifDatanodes in the database.
Finally, put the structures you’ve identified into a group candidates
so that you can refer to them easily from now on.
In addition to your three structures, also add ‘HKUST1’ in order to compare
to the reference calculation provided later on.
candidate_labels = ['HKUST1'] # add your labels!
qb=QueryBuilder()
qb.append(CifData, filters={ 'label': {'in': candidate_labels}})
cifs = qb.all()
candidates, created = Group.get_or_create(name='candidates') # create & store new group
candidates.add_nodes([ cif[0] for cif in cifs])
After this, your group should show up in verdi group list
and you can use verdi group show candidates to inspect its content.
In the python interface you can retrieve them back like so:
candidates = Group.get_from_string('candidates')
for cif in candidates.nodes:
print(cif)