ts
Transition state recipes for the NewtonNet code.
has_geodesic_interpolate
module-attribute
¶
geodesic_job ¶
geodesic_job(
reactant_atoms: Atoms,
product_atoms: Atoms,
relax_job_kwargs: dict[str, Any] | None = None,
geodesic_interpolate_kwargs: (
dict[str, Any] | None
) = None,
**calc_kwargs
) -> GeodesicSchema
Perform a quasi-IRC job using the given reactant and product atoms objects.
Parameters:
-
reactant_atoms
(Atoms
) –The Atoms object representing the reactant structure.
-
product_atoms
(Atoms
) –The Atoms object representing the product structure.
-
relax_job_kwargs
(dict[str, Any] | None
, default:None
) –Keyword arguments to use for quacc.recipes.newtonnet.core.relax_job function.
-
geodesic_interpolate_kwargs
(dict[str, Any] | None
, default:None
) –Keyword arguments for geodesic_interpolate, by default None.
-
**calc_kwargs
–Dictionary of custom kwargs for the NewtonNet calculator. Set a value to
quacc.Remove
to remove a pre-existing key entirely. For a list of available keys, refer to thenewtonnet.utils.ase_interface.MLAseCalculator
calculator.
Returns:
-
GeodesicSchema
–A dictionary containing the following keys: - 'relax_reactant': Summary of the relaxed reactant structure. - 'relax_product': Summary of the relaxed product structure. - 'initial_images': The interpolated images between reactant and product. - 'ts_atoms': ASE atoms object for the highest energy structure for the geodesic path
Source code in quacc/recipes/newtonnet/ts.py
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 |
|
irc_job ¶
irc_job(
atoms: Atoms,
direction: Literal["forward", "reverse"] = "forward",
run_freq: bool = True,
freq_job_kwargs: dict[str, Any] | None = None,
opt_params: OptParams | None = None,
additional_fields: dict[str, Any] | None = None,
**calc_kwargs
) -> NewtonNetIRCSchema
Perform an intrinsic reaction coordinate (IRC) job using the given atoms object.
Parameters:
-
atoms
(Atoms
) –The atoms object representing the system.
-
direction
(Literal['forward', 'reverse']
, default:'forward'
) –The direction of the IRC calculation ("forward" or "reverse").
-
run_freq
(bool
, default:True
) –Whether to run the frequency analysis.
-
freq_job_kwargs
(dict[str, Any] | None
, default:None
) –Keyword arguments to use for the quacc.recipes.newtonnet.ts.freq_job
-
opt_params
(OptParams | None
, default:None
) –Dictionary of custom kwargs for the optimization process. For a list of available keys, refer to quacc.runners.ase.Runner.run_opt.
-
additional_fields
(dict[str, Any] | None
, default:None
) –Additional fields to add to the results dictionary.
-
**calc_kwargs
–Custom kwargs for the NewtonNet calculator. Set a value to
quacc.Remove
to remove a pre-existing key entirely. For a list of available keys, refer to thenewtonnet.utils.ase_interface.MLAseCalculator
calculator.
Returns:
-
IRCSchema
–A dictionary containing the IRC summary and thermodynamic summary. See the type-hint for the data structure.
Source code in quacc/recipes/newtonnet/ts.py
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 |
|
neb_job ¶
neb_job(
reactant_atoms: Atoms,
product_atoms: Atoms,
interpolation_method: Literal[
"linear", "idpp", "geodesic"
] = "linear",
relax_job_kwargs: dict[str, Any] | None = None,
interpolate_kwargs: dict[str, Any] | None = None,
neb_kwargs: dict[str, Any] | None = None,
**calc_kwargs
) -> NebSchema
Perform a nudged elastic band (NEB) calculation to find the minimum energy path (MEP) between the given reactant and product structures.
Parameters:
-
reactant_atoms
(Atoms
) –The Atoms object representing the reactant structure.
-
product_atoms
(Atoms
) –The Atoms object representing the product structure.
-
interpolation_method
(Literal['linear', 'idpp', 'geodesic']
, default:'linear'
) –The method to initialize the NEB optimization. There are three choices here, "linear", "idpp" and "geodesic". Defaults to linear.
-
relax_job_kwargs
(dict[str, Any] | None
, default:None
) –Keyword arguments to use for the quacc.recipes.newtonnet.core.relax_job function.
-
interpolate_kwargs
(dict[str, Any] | None
, default:None
) –Keyword arguments for the interpolate functions (geodesic, linear or idpp).
-
neb_kwargs
(dict[str, Any] | None
, default:None
) –Keyword arguments for the NEB calculation.
-
**calc_kwargs
–Dictionary of custom kwargs for the NewtonNet calculator. Set a value to
quacc.Remove
to remove a pre-existing key entirely. For a list of available keys, refer to thenewtonnet.utils.ase_interface.MLAseCalculator
calculator.
Returns:
-
NebSchema
–A dictionary containing the NEB results
Source code in quacc/recipes/newtonnet/ts.py
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 |
|
quasi_irc_job ¶
quasi_irc_job(
atoms: Atoms,
direction: Literal["forward", "reverse"] = "forward",
run_freq: bool = True,
irc_job_kwargs: dict[str, Any] | None = None,
relax_job_kwargs: dict[str, Any] | None = None,
freq_job_kwargs: dict[str, Any] | None = None,
) -> NewtonNetQuasiIRCSchema
Perform a quasi-IRC job using the given atoms object. The initial IRC job by default
is run with max_steps: 5
.
Parameters:
-
atoms
(Atoms
) –The atoms object representing the system
-
direction
(Literal['forward', 'reverse']
, default:'forward'
) –The direction of the IRC calculation
-
run_freq
(bool
, default:True
) –Whether to run the frequency analysis
-
irc_job_kwargs
(dict[str, Any] | None
, default:None
) –Keyword arguments to use for the quacc.recipes.newtonnet.ts.irc_job
-
relax_job_kwargs
(dict[str, Any] | None
, default:None
) –Keyword arguments to use for the quacc.recipes.newtonnet.core.relax_job
-
freq_job_kwargs
(dict[str, Any] | None
, default:None
) –Keyword arguments to use for the quacc.recipes.newtonnet.ts.freq_job
Returns:
-
QuasiIRCSchema
–A dictionary containing the IRC summary, optimization summary, and thermodynamic summary. See the type-hint for the data structure.
Source code in quacc/recipes/newtonnet/ts.py
ts_job ¶
ts_job(
atoms: Atoms,
use_custom_hessian: bool = False,
run_freq: bool = True,
freq_job_kwargs: dict[str, Any] | None = None,
opt_params: OptParams | None = None,
additional_fields: dict[str, Any] | None = None,
**calc_kwargs
) -> NewtonNetTSSchema
Perform a transition state (TS) job using the given atoms object.
Parameters:
-
atoms
(Atoms
) –The atoms object representing the system.
-
use_custom_hessian
(bool
, default:False
) –Whether to use a custom Hessian matrix.
-
run_freq
(bool
, default:True
) –Whether to run the frequency job.
-
freq_job_kwargs
(dict[str, Any] | None
, default:None
) –Keyword arguments to use for the quacc.recipes.newtonnet.ts.freq_job
-
opt_params
(OptParams | None
, default:None
) –Dictionary of custom kwargs for the optimization process. For a list of available keys, refer to quacc.runners.ase.Runner.run_opt.
-
additional_fields
(dict[str, Any] | None
, default:None
) –Additional fields to add to the results dictionary.
-
**calc_kwargs
–Dictionary of custom kwargs for the NewtonNet calculator. Set a value to
quacc.Remove
to remove a pre-existing key entirely. For a list of available keys, refer to thenewtonnet.utils.ase_interface.MLAseCalculator
calculator.
Returns:
-
TSSchema
–Dictionary of results. See the type-hint for the data structure.