Skip to content

ElfLabeler

Bases: BaseElfAnalysis

A tool for labeling basins in a localization function (ELF, ELI-D, LOL, etc.) as various chemical features.

Source code in src/baderkit/elf_analysis/elf_labeler/elf_labeler.py
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
class ElfLabeler(BaseElfAnalysis):
    """

    A tool for labeling basins in a localization function (ELF, ELI-D, LOL, etc.)
    as various chemical features.

    """

    _method_kwargs = [
        "polarization_cutoff",
    ]

    _basin_results = [
        "basin_types",
        "types_in_system",
        "attractor_shapes",
        "attractor_depths",
        "heavily_polarized",
        "basin_charges",
        "basin_volumes",
        "basin_atom_dists",
        "max_basin_dist",
        "basin_dists_beyond_atoms",
        "maxima_frac",
        "maxima_center_frac",
        "maxima_elf_values",
        "nearest_atoms",
        "nearest_atom_species",
    ]

    _nna_results = [
        "nna_indices",
        "nna_formula",
        "num_nnas",
        "nnas_per_formula",
        "nnas_per_reduced_formula",
        "max_nna_dist",
        "species",
    ]

    _nonsummary_results = [
        "label_structure",
        "nna_structure",
        "along_bond",
        "type_basin_labels",
    ]

    _reset_props = _basin_results + _nna_results + _nonsummary_results

    _summary_props = [
        "basin_results",
        "nna_results",
    ]

    _sub_methods = ["overlap"]

    def __init__(
        self,
        charge_grid: Grid,
        reference_grid: Grid,
        total_charge_grid: Grid | None = None,
        polarization_cutoff: float = 0.5,
        **kwargs,
    ):
        """
        Labels each basin in the ELF as various chemical features.

        This class is designed only for single spin or total spin charge densities
        and ELF. For spin-dependent systems, use the SpinElfLabeler instead.

        Parameters
        ----------
        charge_grid : Grid
            The charge density grid used for integrating charge.
        reference_grid : Grid
            The ELF grid used to partition volumes.
        total_charge_grid : Grid, optional
            The total charge density used for bader integrations and vacuum masks. If
            not provided, the charge_grid will be used instead.
        polarization_cutoff: float, optional
            The degree of polarization used for determining shared vs. unshared
            behavior in a basin. O is more non-polar and 1 is more polar. This
            is calculated from the two atoms that contribute the most to each
            ELF basin.


        **kwargs : dict
            Keyword arguments to pass to the Bader class.

        """

        super().__init__(
            charge_grid=charge_grid,
            total_charge_grid=total_charge_grid,
            reference_grid=reference_grid,
            **kwargs,
        )

        # create bader objects
        self._overlap = BasinOverlap(
            charge_grid=charge_grid,
            total_charge_grid=total_charge_grid,
            reference_grid=reference_grid,
            spin_system=self.spin_system,
            **kwargs,
        )

        self._qtaim_bader = self.overlap.qtaim_bader
        self._elf_bader = self.overlap.local_bader

        self._polarization_cutoff = polarization_cutoff

    ###########################################################################
    # Settings
    ###########################################################################

    @property
    def polarization_cutoff(self) -> float:
        """

        Returns
        -------
        float
            The degree of polarization used for determining shared vs. unshared
            behavior in a basin. O is more non-polar and 1 is more polar. This
            is calculated from the two atoms that contribute the most to each
            ELF basin.

        """
        return self._polarization_cutoff

    @polarization_cutoff.setter
    def polarization_cutoff(self, value: float):
        self._polarization_cutoff = value
        self._reset_properties(
            include_properties=[
                "heavily_polarized",
                "basin_types",
            ],
        )

    ###########################################################################
    # Properties
    ###########################################################################
    @property
    def label_structure(self) -> Structure:
        """

        Returns
        -------
        Structure
            A PyMatGen Structure object made of dummy atoms representing each
            chemical feature found in the system.

        """
        if self._label_structure is None:
            structure = self.structure.copy()
            structure.remove_sites([i for i in range(len(structure))])
            for basin_type, basin_frac in zip(self.basin_types, self.maxima_frac):
                basin_type = FeatureType(basin_type)
                structure.append(basin_type.dummy_species, basin_frac)
            self._label_structure = structure
        return self._label_structure

    @property
    def nna_structure(self) -> Structure:
        """

        Returns
        -------
        Structure
            The original structure of the system with dummy atoms representing
            non-nuclear attractors appended at the end. Useful when anlyzing
            electride systems for example.

        """
        if self._nna_structure is None:
            structure = self.structure.copy()
            for idx in self.nna_indices:
                basin_type = FeatureType(self.basin_types[idx])
                basin_frac = self.maxima_frac[idx]
                structure.append(basin_type.dummy_species, basin_frac)
            self._nna_structure = structure
        return self._nna_structure

    @property
    def overlap(self) -> BasinOverlap:
        """

        Returns
        -------
        BasinOverlap
            The BasinOverlap class used for QTAIM/ELF overlap calculations.

        """
        return self._overlap

    @property
    def elf_bader(self) -> Bader:
        """

        Returns
        -------
        Bader
            The Bader class used to partition the ELF.

        """

        return self._elf_bader

    @property
    def qtaim_bader(self) -> Bader:
        """

        Returns
        -------
        Bader
            The Bader class used to partition the charge density.

        """

        return self._qtaim_bader

    @property
    def basin_charges(self) -> NDArray[np.float64]:
        """

        Returns
        -------
        NDArray[np.float64]
            The charge contained in each ELF basin

        """
        return self.elf_bader.basin_charges

    @property
    def basin_volumes(self) -> NDArray[np.float64]:
        """

        Returns
        -------
        NDArray[np.float64]
            The volume contained in each ELF basin

        """
        return self.elf_bader.basin_volumes

    @property
    def maxima_frac(self) -> NDArray[np.float64]:
        """

        Returns
        -------
        NDArray[np.float64]
            The fractional coordinates of each maximum in the ELF.

        """
        return self.elf_bader.maxima_frac

    @property
    def maxima_center_frac(self) -> NDArray[np.float64]:
        """

        Returns
        -------
        NDArray[np.float64]
            The fractional coordinates of the "center of mass" for each maximum in
            the localization function grid. This is used when determining if a basin
            is along a bond, and is particularly necessary for ring shaped covalent bonds.

        """
        return self.overlap.local_maxima_center_frac

    @property
    def maxima_elf_values(self) -> NDArray[np.float64]:
        """

        Returns
        -------
        NDArray[np.float64]
            The ELF value at each basins maximum

        """
        return self.elf_bader.maxima_ref_values

    @property
    def attractor_shapes(self) -> NDArray[str]:
        """

        Returns
        -------
        NDArray[str]
            The shape of the maxima in the ELF.

        """
        return self.overlap.attractor_shapes

    @property
    def attractor_depths(self) -> NDArray[np.float64]:
        """
        Difference in value from the maximum to the first value an attractor
        connects to another.

        Returns
        NDArray[np.float64]
            The depth of each local basin
        """
        return self.overlap.attractor_depths

    @property
    def basin_types(self) -> list[str]:
        """

        Returns
        -------
        list[str]
            The type of chemical feature each basin is a part of.

        """
        if self._basin_types is None:
            self._label_basins()
        return [i.value for i in self._basin_types]

    @property
    def types_in_system(self) -> list[str]:
        """

        Returns
        -------
        list[str]
            The types of chemical features found in the system.

        """
        if self._types_in_system is None:
            self._types_in_system = np.unique(self.basin_types).tolist()
        return self._types_in_system

    @property
    def type_basin_labels(self) -> NDArray[int]:
        """

        Returns
        -------
        NDArray[int]
            An array with the same shape as the data where each entry represents
            the type of chemical feature the point is assigned to. The labels
            are in the same order as the types_in_system property.

        """
        if self._type_basin_labels is None:
            types, inverse = np.unique(self.basin_types, return_inverse=True)
            inverse = np.append(inverse, len(self.maxima_frac))
            self._type_basin_labels = inverse[self.elf_bader.maxima_basin_labels]
        return self._type_basin_labels

    @property
    def nearest_atoms(self) -> NDArray[int]:
        """

        Returns
        -------
        NDArray[int]
            The closest atom to each basin measured from the center of mass.

        """
        return self.elf_bader.basin_atoms

    @property
    def nearest_atom_species(self) -> list[str]:
        """

        Returns
        -------
        NDArray[int]
            The type of atom to each basin measured from the center of mass.

        """
        if self._nearest_atom_species is None:
            species = []
            for i in self.elf_bader.basin_atoms:
                species.append(self.elf_bader.structure[i].specie.symbol)
            self._nearest_atom_species = species
        return self._nearest_atom_species

    @property
    def nna_indices(self) -> NDArray[int]:
        """

        Returns
        -------
        NDArray[int]
            The basin indices assigned as non-nuclear attractors

        """
        if self._nna_indices is None:
            self._nna_indices = np.array(
                [
                    i
                    for i, j in enumerate(self.basin_types)
                    if j == FeatureType.nna.value
                ],
                dtype=np.int64,
            )
        return self._nna_indices

    @property
    def basin_dists_beyond_atoms(self) -> NDArray[float]:
        """

        Returns
        -------
        NDArray[float]
            The distance beyond each atoms radius at which each basin's maximum
            is located. For features at or below the atoms radius this is 0.0

        """

        if self._basin_dists_beyond_atoms is None:
            fracs = get_core_dist_ratios(
                labels=self.elf_bader.maxima_basin_labels,
                basin_frac_coords=self.elf_bader.maxima_frac,
                atom_frac_coords=self.elf_bader.structure.frac_coords,
                matrix=self.reference_grid.matrix,
                nna_indices=self.nna_indices,
                core_basins=self.overlap.core_basins,
                volume_bond_fracs=self.overlap.volume_bond_fractions,
            )
            self._basin_dists_beyond_atoms = fracs * self.basin_atom_dists
        return self._basin_dists_beyond_atoms

    @property
    def basin_atom_dists(self) -> NDArray[float]:
        """

        Returns
        -------
        NDArray[float]
            The distance from each basin to its nearest neighbors. This is a
            weighted average based on the degree of overlap the QTAIM atom's have
            with this basin.

        """

        if self._basin_atom_dists is None:
            dists = get_core_dists(
                labels=self.elf_bader.maxima_basin_labels,
                basin_frac_coords=self.elf_bader.maxima_frac,
                atom_frac_coords=self.elf_bader.structure.frac_coords,
                matrix=self.reference_grid.matrix,
                nna_indices=self.nna_indices,
                core_basins=self.overlap.core_basins,
                volume_bond_fracs=self.overlap.volume_bond_fractions,
            )
            self._basin_atom_dists = dists
        return self._basin_atom_dists

    @property
    def max_basin_dist(self) -> float:
        """

        Returns
        -------
        float
            The maximum distance that any basin in the system sits from nearby
            atoms

        """
        if self.basin_atom_dists is not None:
            return self.basin_atom_dists.max()

    @property
    def heavily_polarized(self) -> NDArray[bool]:
        """

        Returns
        -------
        NDArray[bool
            A boolean array representing which ELF basins are considered heavily
            polarized towards an atom. The results depend on the 'polarization_cutoff'
            parameter.

        """
        if self._heavily_polarized is None:
            self._heavily_polarized = (
                self.overlap.polarization_indexes > self.polarization_cutoff
            )
        return self._heavily_polarized

    ###########################################################################
    # NNA properties
    ###########################################################################

    @property
    def max_nna_dist(self) -> float:
        """

        Returns
        -------
        float
            The maximum distance that any NNA in the system sits from its
            neighboring atoms.

        """
        if self.num_nnas > 0:
            return self.basin_atom_dists[self.nna_indices].max()

    @property
    def num_nnas(self) -> int:
        """

        Returns
        -------
        int
            The number of non-nuclear attractor sites in the structure

        """
        return len(self.nna_indices)

    @property
    def nna_formula(self):
        """

        Returns
        -------
        str
            A string representation of the nna formula, rounding partial charge
            to the nearest integer.

        """
        return f"{self.structure.formula} e{round(self.nnas_per_formula)}"

    @property
    def nnas_per_formula(self):
        """

        Returns
        -------
        float
            The number of nna electrons for the full structure formula.

        """
        if self._nnas_per_formula is None:
            nnas_per_unit = 0
            for charge, basin_type in zip(
                self.elf_bader.basin_charges, self.basin_types
            ):
                if basin_type == FeatureType.nna.value:
                    nnas_per_unit += charge
            self._nnas_per_formula = nnas_per_unit
        return round(self._nnas_per_formula, 10)

    @property
    def nnas_per_reduced_formula(self):
        """

        Returns
        -------
        float
            The number of electrons in the reduced formula of the structure.

        """
        if self._nnas_per_reduced_formula is None:
            (
                _,
                formula_reduction_factor,
            ) = self.structure.composition.get_reduced_composition_and_factor()
            self._nnas_per_reduced_formula = (
                self.nnas_per_formula / formula_reduction_factor
            )
        return round(self._nnas_per_reduced_formula, 10)

    @property
    def species(self) -> list[str]:
        """

        Returns
        -------
        list[str]
            The species of each atom/dummy atom in the nna structure. Covalent
            and metallic features are not included.

        """
        return [i.specie.symbol for i in self.nna_structure]

    def _label_basins(self):
        """
        Label scheme:
            shared:
                point/ring:
                    along bond:
                        heavily shared -> covalent bond
                        barely shared -> ionic bond
                    not along bond:
                        heavily shared -> NNA
                        barely shared:
                            dominant atom has other bonds -> lone-pair
                            dominant atom has no bonds -> ionic shell
                cage -> ionic shell

            unshared:
                point:
                    atom center -> shell
                    elsewhere -> lone-pair
                cage -> core
        """

        # create a list to store types
        types = []
        for feature_idx in range(len(self.maxima_frac)):
            shape = self.overlap.attractor_shapes[feature_idx]
            # check for core
            is_core = self.overlap.core_basins[feature_idx] != -1
            if is_core:
                types.append(FeatureType.core)
                continue
            # check for lone-pair
            if not self.overlap.shared_basins[feature_idx]:
                types.append(FeatureType.lone_pair)
                continue

            along_bond = self.overlap.along_bond[feature_idx]
            heavily_polarized = self.heavily_polarized[feature_idx]

            atomicity = self.overlap.atomicities[feature_idx]
            # check for ionic/covalent bond
            if not shape == "cage" and along_bond and atomicity == 2:
                if heavily_polarized:
                    types.append(FeatureType.ionic)
                else:
                    types.append(FeatureType.covalent)

            # check for ionic shells and nnas
            else:
                if heavily_polarized:
                    types.append(FeatureType.ionic_shell)
                else:
                    types.append(FeatureType.nna)
        self._basin_types = types

    def write_features_by_type(
        self,
        basin_type: str | FeatureType,
        filename: str | Path = "ELFCAR",
        write_grid: str = "reference_grid",
        **kwargs,
    ):
        """
        Writes the charge density or reference file the requested
        chemical features.

        Parameters
        ----------
        basin_type : str | FeatureType
            The type of feature to write, e.g. metallic, electride, etc.

        """
        basin_type = FeatureType(basin_type)
        indices = [i for i, j in enumerate(self.basin_types) if j == basin_type.value]

        # get a mask at the requested feature
        up_mask = np.isin(self.elf_bader.maxima_basin_labels, indices)
        # write
        if not "suffix" in kwargs.keys():
            kwargs["suffix"] = f"_{basin_type.dummy_species}"
        self._write_volume(
            volume_mask=up_mask, write_grid=write_grid, filename=filename, **kwargs
        )

    def write_all_features(
        self,
        **kwargs,
    ):
        """
        Writes the charge density or reference file for all types
        of chemical features in the system.

        """
        feature_types = []
        for i in self.basin_types:
            basin_type = FeatureType(i)
            if basin_type not in feature_types:
                feature_types.append(basin_type)
                self.write_features_by_type(
                    basin_type,
                    **kwargs,
                )

attractor_depths property

Difference in value from the maximum to the first value an attractor connects to another.

Returns NDArray[np.float64] The depth of each local basin

attractor_shapes property

Returns:

Type Description
NDArray[str]

The shape of the maxima in the ELF.

basin_atom_dists property

Returns:

Type Description
NDArray[float]

The distance from each basin to its nearest neighbors. This is a weighted average based on the degree of overlap the QTAIM atom's have with this basin.

basin_charges property

Returns:

Type Description
NDArray[float64]

The charge contained in each ELF basin

basin_dists_beyond_atoms property

Returns:

Type Description
NDArray[float]

The distance beyond each atoms radius at which each basin's maximum is located. For features at or below the atoms radius this is 0.0

basin_types property

Returns:

Type Description
list[str]

The type of chemical feature each basin is a part of.

basin_volumes property

Returns:

Type Description
NDArray[float64]

The volume contained in each ELF basin

elf_bader property

Returns:

Type Description
Bader

The Bader class used to partition the ELF.

heavily_polarized property

Returns:

Type Description
NDArray[bool

A boolean array representing which ELF basins are considered heavily polarized towards an atom. The results depend on the 'polarization_cutoff' parameter.

label_structure property

Returns:

Type Description
Structure

A PyMatGen Structure object made of dummy atoms representing each chemical feature found in the system.

max_basin_dist property

Returns:

Type Description
float

The maximum distance that any basin in the system sits from nearby atoms

max_nna_dist property

Returns:

Type Description
float

The maximum distance that any NNA in the system sits from its neighboring atoms.

maxima_center_frac property

Returns:

Type Description
NDArray[float64]

The fractional coordinates of the "center of mass" for each maximum in the localization function grid. This is used when determining if a basin is along a bond, and is particularly necessary for ring shaped covalent bonds.

maxima_elf_values property

Returns:

Type Description
NDArray[float64]

The ELF value at each basins maximum

maxima_frac property

Returns:

Type Description
NDArray[float64]

The fractional coordinates of each maximum in the ELF.

nearest_atom_species property

Returns:

Type Description
NDArray[int]

The type of atom to each basin measured from the center of mass.

nearest_atoms property

Returns:

Type Description
NDArray[int]

The closest atom to each basin measured from the center of mass.

nna_formula property

Returns:

Type Description
str

A string representation of the nna formula, rounding partial charge to the nearest integer.

nna_indices property

Returns:

Type Description
NDArray[int]

The basin indices assigned as non-nuclear attractors

nna_structure property

Returns:

Type Description
Structure

The original structure of the system with dummy atoms representing non-nuclear attractors appended at the end. Useful when anlyzing electride systems for example.

nnas_per_formula property

Returns:

Type Description
float

The number of nna electrons for the full structure formula.

nnas_per_reduced_formula property

Returns:

Type Description
float

The number of electrons in the reduced formula of the structure.

num_nnas property

Returns:

Type Description
int

The number of non-nuclear attractor sites in the structure

overlap property

Returns:

Type Description
BasinOverlap

The BasinOverlap class used for QTAIM/ELF overlap calculations.

polarization_cutoff property writable

Returns:

Type Description
float

The degree of polarization used for determining shared vs. unshared behavior in a basin. O is more non-polar and 1 is more polar. This is calculated from the two atoms that contribute the most to each ELF basin.

qtaim_bader property

Returns:

Type Description
Bader

The Bader class used to partition the charge density.

species property

Returns:

Type Description
list[str]

The species of each atom/dummy atom in the nna structure. Covalent and metallic features are not included.

type_basin_labels property

Returns:

Type Description
NDArray[int]

An array with the same shape as the data where each entry represents the type of chemical feature the point is assigned to. The labels are in the same order as the types_in_system property.

types_in_system property

Returns:

Type Description
list[str]

The types of chemical features found in the system.

__init__(charge_grid, reference_grid, total_charge_grid=None, polarization_cutoff=0.5, **kwargs)

Labels each basin in the ELF as various chemical features.

This class is designed only for single spin or total spin charge densities and ELF. For spin-dependent systems, use the SpinElfLabeler instead.

Parameters:

Name Type Description Default
charge_grid Grid

The charge density grid used for integrating charge.

required
reference_grid Grid

The ELF grid used to partition volumes.

required
total_charge_grid Grid

The total charge density used for bader integrations and vacuum masks. If not provided, the charge_grid will be used instead.

None
polarization_cutoff float

The degree of polarization used for determining shared vs. unshared behavior in a basin. O is more non-polar and 1 is more polar. This is calculated from the two atoms that contribute the most to each ELF basin.

0.5
**kwargs dict

Keyword arguments to pass to the Bader class.

{}
Source code in src/baderkit/elf_analysis/elf_labeler/elf_labeler.py
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
def __init__(
    self,
    charge_grid: Grid,
    reference_grid: Grid,
    total_charge_grid: Grid | None = None,
    polarization_cutoff: float = 0.5,
    **kwargs,
):
    """
    Labels each basin in the ELF as various chemical features.

    This class is designed only for single spin or total spin charge densities
    and ELF. For spin-dependent systems, use the SpinElfLabeler instead.

    Parameters
    ----------
    charge_grid : Grid
        The charge density grid used for integrating charge.
    reference_grid : Grid
        The ELF grid used to partition volumes.
    total_charge_grid : Grid, optional
        The total charge density used for bader integrations and vacuum masks. If
        not provided, the charge_grid will be used instead.
    polarization_cutoff: float, optional
        The degree of polarization used for determining shared vs. unshared
        behavior in a basin. O is more non-polar and 1 is more polar. This
        is calculated from the two atoms that contribute the most to each
        ELF basin.


    **kwargs : dict
        Keyword arguments to pass to the Bader class.

    """

    super().__init__(
        charge_grid=charge_grid,
        total_charge_grid=total_charge_grid,
        reference_grid=reference_grid,
        **kwargs,
    )

    # create bader objects
    self._overlap = BasinOverlap(
        charge_grid=charge_grid,
        total_charge_grid=total_charge_grid,
        reference_grid=reference_grid,
        spin_system=self.spin_system,
        **kwargs,
    )

    self._qtaim_bader = self.overlap.qtaim_bader
    self._elf_bader = self.overlap.local_bader

    self._polarization_cutoff = polarization_cutoff

write_all_features(**kwargs)

Writes the charge density or reference file for all types of chemical features in the system.

Source code in src/baderkit/elf_analysis/elf_labeler/elf_labeler.py
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
def write_all_features(
    self,
    **kwargs,
):
    """
    Writes the charge density or reference file for all types
    of chemical features in the system.

    """
    feature_types = []
    for i in self.basin_types:
        basin_type = FeatureType(i)
        if basin_type not in feature_types:
            feature_types.append(basin_type)
            self.write_features_by_type(
                basin_type,
                **kwargs,
            )

write_features_by_type(basin_type, filename='ELFCAR', write_grid='reference_grid', **kwargs)

Writes the charge density or reference file the requested chemical features.

Parameters:

Name Type Description Default
basin_type str | FeatureType

The type of feature to write, e.g. metallic, electride, etc.

required
Source code in src/baderkit/elf_analysis/elf_labeler/elf_labeler.py
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
def write_features_by_type(
    self,
    basin_type: str | FeatureType,
    filename: str | Path = "ELFCAR",
    write_grid: str = "reference_grid",
    **kwargs,
):
    """
    Writes the charge density or reference file the requested
    chemical features.

    Parameters
    ----------
    basin_type : str | FeatureType
        The type of feature to write, e.g. metallic, electride, etc.

    """
    basin_type = FeatureType(basin_type)
    indices = [i for i, j in enumerate(self.basin_types) if j == basin_type.value]

    # get a mask at the requested feature
    up_mask = np.isin(self.elf_bader.maxima_basin_labels, indices)
    # write
    if not "suffix" in kwargs.keys():
        kwargs["suffix"] = f"_{basin_type.dummy_species}"
    self._write_volume(
        volume_mask=up_mask, write_grid=write_grid, filename=filename, **kwargs
    )