geomeTRIC
qcop.adapters.geometric.GeometricAdapter
¶
GeometricAdapter()
Adapter for geomeTRIC.
Source code in qcop/adapters/geometric.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
|
supported_calctypes
class-attribute
instance-attribute
¶
supported_calctypes = [optimization, transition_state]
Supported calculation types.
program_version
¶
program_version(*args) -> str
Get the program version.
Source code in qcop/adapters/geometric.py
71 72 73 |
|
compute_results
¶
compute_results(
inp_obj: DualProgramInput,
update_func: Optional[Callable] = None,
update_interval: Optional[float] = None,
propagate_wfn: bool = True,
**kwargs
) -> tuple[OptimizationResults, str]
Compute the requested calculation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
inp_obj |
DualProgramInput
|
The qcio DualProgramInput object for a computation. |
required |
propagate_wfn |
bool
|
Whether to propagate the wavefunction between steps of the optimization. |
True
|
Source code in qcop/adapters/geometric.py
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 |
|