Example #1
0
 def __init__(self, **kwargs):
     allowed_keys = {
         'name' : (str, str(), 'Name of directory'),
         'program_keys': (dict, dict(), 'Dictionary of program keywords'),
         'structure': (Structure, None, 'Pymatgen Structure object')
         }
     BaseChecker.__init__(self, allowed_keys, **kwargs)
Example #2
0
 def __init__(self, **kwargs):
     allowed_keys = {
         "name": (str, str(), "Name of directory"),
         "program_keys": (dict, dict(), "Dictionary of program keywords"),
         "structure": (Structure, None, "Pymatgen Structure object"),
     }
     BaseChecker.__init__(self, allowed_keys, **kwargs)
Example #3
0
 def __init__(self, **kwargs):
     allowed_keys = {
         'name' : (str, str(), 'Name of directory'),
         'program_keys': (dict, dict(), 'Dictionary of program keywords'),
         'structure': (Structure, None, 'Pymatgen Structure object')
         }
     BaseChecker.__init__(self, allowed_keys, **kwargs)
Example #4
0
 def is_frozen(self):
     """Check if single VASP non-NEB calculation is frozen.
     """
     return BaseChecker.is_frozen(self, "OUTCAR")
Example #5
0
 def is_frozen(self):
     """Check if single LAMMPS non-NEB calculation is frozen.
     """
     return BaseChecker.is_frozen(self, "LOG")
Example #6
0
 def is_frozen(self):
     """Check if single VASP non-NEB calculation is frozen.
     """
     return BaseChecker.is_frozen(self, "vasprun.xml")
Example #7
0
 def is_frozen(self):
     """Check if single LAMMPS non-NEB calculation is frozen.
     """
     return BaseChecker.is_frozen(self, "LOG")
Example #8
0
 def is_frozen(self):
     """Check if single VASP non-NEB calculation is frozen.
     """
     return BaseChecker.is_frozen(self, "vasprun.xml")