Octahedral
- class Octahedral(metals, ligands, reaction_factory=None, num_processes=1, optimizer=<stk.molecular.topology_graphs.topology_graph.optimizers.null.NullOptimizer object>)[source]
Bases:
MetalComplex
Represents a metal complex topology graph.
Metal building blocks with at least six functional groups are required for this topology.
Ligand building blocks with one functional group are required for this topology graph.
When using a
dict
for initialization, aBuildingBlock
needs to be assigned to each of the following numbers:metals: (0, )ligands: (0, 1, 2, 3, 4, 5)See
MetalComplex
for more details and examples.Methods
clone
()Return a clone.
Construct a
ConstructedMolecule
.Yield the building blocks.
get_num_building_block
(building_block)Get the number of times building_block is present.
with_building_blocks
(building_block_map)Return a clone holding different building blocks.
- __init__(metals, ligands, reaction_factory=None, num_processes=1, optimizer=<stk.molecular.topology_graphs.topology_graph.optimizers.null.NullOptimizer object>)
Initialize a
MetalComplex
.- Parameters:
metals (
Union
[BuildingBlock
,tuple
[BuildingBlock
,...
],dict
[BuildingBlock
,tuple
[int
,...
]]]) –Can be a
dict
which maps theBuildingBlock
instances to the indices of the vertices in_metal_vertex_prototypes
it should be placed on.If each
BuildingBlock
has a different number of functional groups, they can be supplied together in atuple
.Can also be a
BuildingBlock
instance, which should be placed on all_metal_vertex_prototypes
on the topology graph.ligands (
Union
[BuildingBlock
,tuple
[BuildingBlock
,...
],dict
[BuildingBlock
,tuple
[int
,...
]]]) –Can be a
dict
which maps theBuildingBlock
instances to the indices of the vertices in_ligand_vertex_prototypes
it should be placed on.If each
BuildingBlock
has a different number of functional groups, they can be supplied together in atuple
.Can also be a
BuildingBlock
instance, which should be placed on all_ligand_vertex_prototypes
on the topology graph.reaction_factory (
Optional
[ReactionFactory
]) – The reaction factory to use for creating bonds between building blocks. IfNone
, aDativeReactionFactory
is used, which produces only dative bonds in any reactions done by this topology construction.num_processes (
int
) – The number of parallel processes to create duringconstruct()
.optimizer (
Optimizer
) – Used to optimize the structure of the constructed molecule.
- clone()
Return a clone.
- Return type:
- Returns:
The clone.
- construct()
Construct a
ConstructedMolecule
.- Return type:
- Returns:
The data describing the
ConstructedMolecule
.
- get_building_blocks()
Yield the building blocks.
Building blocks are yielded in an order based on their position in the topology graph. For two equivalent topology graphs, but with different building blocks, equivalently positioned building blocks will be yielded at the same time.
- Yields:
A building block of the topology graph.
- Return type:
- get_num_building_block(building_block)
Get the number of times building_block is present.
- Parameters:
building_block (
BuildingBlock
) – The building block whose frequency in the topology graph is desired.- Return type:
- Returns:
The number of times building_block is present in the topology graph.
- with_building_blocks(building_block_map)
Return a clone holding different building blocks.
- Parameters:
building_block_map (
dict
[BuildingBlock
,BuildingBlock
]) – Maps a building block in the current topology graph to the building block which should replace it in the clone. If a building block should be not replaced in the clone, it can be omitted from the map.- Return type:
- Returns:
The clone.