@@ -317,7 +317,7 @@ def specie_potential_lines(structure, potential, **kwargs):
317
317
structure.
318
318
319
319
Args:
320
- structure: pymatgen.core.structure. Structure object
320
+ structure: pymatgen Structure object
321
321
potential: String specifying the type of potential used
322
322
kwargs: Additional parameters related to potential. For
323
323
potential == "buckingham",
@@ -375,7 +375,7 @@ def buckingham_input(self, structure: Structure, keywords, library=None, uc=True
375
375
from library.
376
376
377
377
Args:
378
- structure: pymatgen.core.structure. Structure
378
+ structure: pymatgen Structure
379
379
keywords: GULP first line keywords.
380
380
library (Default=None): File containing the species and potential.
381
381
uc (Default=True): Unit Cell Flag.
@@ -401,7 +401,7 @@ def buckingham_potential(structure, val_dict=None):
401
401
J. Mater Chem., 4, 831-837 (1994)
402
402
403
403
Args:
404
- structure: pymatgen.core.structure. Structure
404
+ structure: pymatgen Structure
405
405
val_dict (Needed if structure is not charge neutral): {El:valence}
406
406
dict, where El is element.
407
407
"""
@@ -462,7 +462,7 @@ def tersoff_input(self, structure: Structure, periodic=False, uc=True, *keywords
462
462
"""Gets a GULP input with Tersoff potential for an oxide structure.
463
463
464
464
Args:
465
- structure: pymatgen.core.structure. Structure
465
+ structure: pymatgen Structure
466
466
periodic (Default=False): Flag denoting whether periodic
467
467
boundary conditions are used
468
468
library (Default=None): File containing the species and potential.
@@ -487,7 +487,7 @@ def tersoff_potential(structure):
487
487
"""Generate the species, Tersoff potential lines for an oxide structure.
488
488
489
489
Args:
490
- structure: pymatgen.core.structure. Structure
490
+ structure: pymatgen Structure
491
491
"""
492
492
bv = BVAnalyzer ()
493
493
el = [site .specie .symbol for site in structure ]
@@ -702,7 +702,7 @@ def get_energy_tersoff(structure, gulp_cmd="gulp"):
702
702
"""Compute the energy of a structure using Tersoff potential.
703
703
704
704
Args:
705
- structure: pymatgen.core.structure. Structure
705
+ structure: pymatgen Structure
706
706
gulp_cmd: GULP command if not in standard place
707
707
"""
708
708
gio = GulpIO ()
@@ -716,7 +716,7 @@ def get_energy_buckingham(structure, gulp_cmd="gulp", keywords=("optimise", "con
716
716
"""Compute the energy of a structure using Buckingham potential.
717
717
718
718
Args:
719
- structure: pymatgen.core.structure. Structure
719
+ structure: pymatgen Structure
720
720
gulp_cmd: GULP command if not in standard place
721
721
keywords: GULP first line keywords
722
722
valence_dict: {El: valence}. Needed if the structure is not charge
@@ -733,7 +733,7 @@ def get_energy_relax_structure_buckingham(structure, gulp_cmd="gulp", keywords=(
733
733
"""Relax a structure and compute the energy using Buckingham potential.
734
734
735
735
Args:
736
- structure: pymatgen.core.structure. Structure
736
+ structure: pymatgen Structure
737
737
gulp_cmd: GULP command if not in standard place
738
738
keywords: GULP first line keywords
739
739
valence_dict: {El: valence}. Needed if the structure is not charge
0 commit comments