NEB calculations#

Stuff

NEB Record#

Stuff

NEB Dataset#

Stuff

NEB QCPortal API#

class NEBRecord(client=None, *, id, record_type='neb', is_service, properties=None, extras=None, status, manager_name=None, created_on, modified_on, owner_user=None, owner_group=None, compute_history=None, task=None, service=None, comments=None, native_files=None, specification, initial_chain_molecule_ids=None, singlepoints=None, optimizations=None, neb_result=None, initial_chain=None)[source]#

Bases: BaseRecord

Create a new model by parsing and validating input data from keyword arguments.

Raises ValidationError if the input data cannot be parsed to form a valid model.

Parameters:
  • id (int)

  • record_type (Literal['neb'])

  • is_service (bool)

  • properties (Dict[str, Any] | None)

  • extras (Dict[str, Any] | None)

  • status (RecordStatusEnum)

  • manager_name (str | None)

  • created_on (datetime)

  • modified_on (datetime)

  • owner_user (str | None)

  • owner_group (str | None)

  • compute_history (List[ComputeHistory] | None)

  • task (RecordTask | None)

  • service (RecordService | None)

  • comments (List[RecordComment] | None)

  • native_files (Dict[str, NativeFile] | None)

  • specification (NEBSpecification)

  • initial_chain_molecule_ids (List[int] | None)

  • singlepoints (List[NEBSinglepoint] | None)

  • optimizations (Dict[str, NEBOptimization] | None)

  • neb_result (Molecule | None)

  • initial_chain (List[Molecule] | None)

field record_type: Literal['neb'] = 'neb'#
field specification: NEBSpecification [Required]#
field initial_chain_molecule_ids_: List[int] | None = None (alias 'initial_chain_molecule_ids')#
field singlepoints_: List[NEBSinglepoint] | None = None (alias 'singlepoints')#
field optimizations_: Dict[str, NEBOptimization] | None = None (alias 'optimizations')#
field neb_result_: Molecule | None = None (alias 'neb_result')#
field initial_chain_: List[Molecule] | None = None (alias 'initial_chain')#
propagate_client(client)[source]#

Propagates a client and related information to this record to any fields within this record that need it

This is expected to be called from derived class propagate_client functions as well

property initial_chain: List[Molecule]#
property final_chain: List[SinglepointRecord]#
property singlepoints: Dict[int, List[SinglepointRecord]]#
property result#
property optimizations: Dict[str, OptimizationRecord] | None#
property ts_optimization: OptimizationRecord | None#
property ts_hessian: SinglepointRecord | None#
model Config#

Bases: object

allow_mutation = True#
extra = 'forbid'#
validate_assignment = True#
property children_errors: List[BaseRecord]#

Returns errored child records

property children_status: Dict[RecordStatusEnum, int]#

Returns a dictionary of the status of all children of this record

property comments: List[RecordComment] | None#
property compute_history: List[ComputeHistory]#
property error: Dict[str, Any] | None#
fetch_children(include=None, force_fetch=False)#

Fetches all children of this record recursively

Parameters:
  • include (Iterable[str] | None)

  • force_fetch (bool)

classmethod fetch_children_multi(records, include=None, force_fetch=False)#

Fetches all children of the given records

This tries to work efficiently, fetching larger batches of children that can span multiple records

Parameters:
  • records (Iterable[BaseRecord | None])

  • include (Iterable[str] | None)

  • force_fetch (bool)

classmethod get_subclass(record_type)#

Obtain a subclass of this class given its record_type

Parameters:

record_type (str)

Return type:

Type[BaseRecord]

get_waiting_reason()#
Return type:

Dict[str, Any]

property native_files: Dict[str, NativeFile] | None#
property offline: bool#
property provenance: Provenance | None#
property service: RecordService | None#
property stderr: str | None#
property stdout: str | None#
sync_to_cache(detach=False)#

Syncs this record to the cache

If detach is True, then the record will be removed from the cache

Parameters:

detach (bool)

property task: RecordTask | None#
field id: int [Required]#
field is_service: bool [Required]#
field properties: Dict[str, Any] | None = None#
field extras: Dict[str, Any] | None = None#
field status: RecordStatusEnum [Required]#
field manager_name: str | None = None#
field created_on: datetime [Required]#
field modified_on: datetime [Required]#
field owner_user: str | None = None#
field owner_group: str | None = None#
field compute_history_: List[ComputeHistory] | None = None (alias 'compute_history')#
field task_: RecordTask | None = None (alias 'task')#
field service_: RecordService | None = None (alias 'service')#
field comments_: List[RecordComment] | None = None (alias 'comments')#
field native_files_: Dict[str, NativeFile] | None = None (alias 'native_files')#
class NEBSpecification(*, program='geometric', singlepoint_specification, optimization_specification=None, keywords)[source]#

Bases: BaseModel

Create a new model by parsing and validating input data from keyword arguments.

Raises ValidationError if the input data cannot be parsed to form a valid model.

Parameters:
model Config[source]#

Bases: object

extra = 'forbid'#
field program: ConstrainedStrValue = 'geometric'#
field singlepoint_specification: QCSpecification [Required]#
field optimization_specification: OptimizationSpecification | None = None#
field keywords: NEBKeywords [Required]#