Loading...
Searching...
No Matches
ASEOrcaPot Class Reference

#include <ASE_ORCA.h>

Inheritance diagram for ASEOrcaPot:

Public Member Functions

 ASEOrcaPot (const Parameters &a_params)
virtual ~ASEOrcaPot ()
void force (long nAtoms, const double *R, const int *atomicNrs, double *F, double *U, double *variance, const double *box) override
bool isThreadSafe () const noexcept override
 Whether this potential's force() can be called from multiple threads on the SAME instance.
bool requiresIsolatedMoleculeLayout () const noexcept override
 ORCA does not support PBC; non-centered PBC wraps tear molecules (#188).
bool needsPerImageInstance () const noexcept override
 ORCA runs as external subprocess; separate instances are independent.
Public Member Functions inherited from eonc::Potential
 Potential (PotType a_ptype)
 Potential (PotType a_ptype, const Parameters &)
 Potential (const Parameters &a_params)
virtual ~Potential ()
std::tuple< double, AtomMatrixget_ef (const AtomMatrix &pos, const VectorXi &atmnrs, const Matrix3d &box)
PotType getType () const
virtual bool isSurrogate () const noexcept
 Whether this is a surrogate (GP) potential.
virtual bool isSharedInstanceThreadSafe () const noexcept
 Conservative gate for sharing one Potential instance across threads.
virtual bool supportsBatchEvaluation () const noexcept
 Whether this potential supports batched evaluation of N systems in a single call.
virtual void forceBatch (long nSystems, long nAtoms, const double *const *positions, const int *const *atomicNrs, double *const *forces, double *energies, double *variances, const double *const *boxes)
 Evaluate forces for N systems in a single call.

Private Attributes

py::object calc
py::object ase
std::filesystem::path workDir
size_t counter {0}

Additional Inherited Members

Public Attributes inherited from eonc::Potential
std::atomic< size_t > forceCallCounter
Protected Attributes inherited from eonc::Potential
PotType ptype

Detailed Description

Definition at line 26 of file ASE_ORCA.h.

Constructor & Destructor Documentation

◆ ASEOrcaPot()

ASEOrcaPot::ASEOrcaPot ( const Parameters & a_params)

Definition at line 61 of file ASE_ORCA.cpp.

62 : Potential(PotType::ASE_ORCA, a_params) {
64 counter = 0;
65 py::module_ sys = py::module_::import("sys");
66 // Fix for gh-184, see
67 // https://github.com/numpy/numpy/issues/20504#issuecomment-985542508
68 eonc::FPEHandler fpeh;
69 fpeh.eat_fpe();
70 ase = py::module_::import("ase");
71 fpeh.restore_fpe();
72 py::module_ ase_orca = py::module_::import("ase.calculators.orca");
73 py::module_ psutil = py::module_::import("psutil");
75 "ORCA_COMMAND", a_params.ase_orca_options.path, "", "", true);
76 std::string orca_simpleinput = eonc::helpers::get_value_from_env_or_param(
77 "ORCA_SIMPLEINPUT", a_params.ase_orca_options.simpleinput, "ENGRAD HF-3c",
78 "Using ENGRAD HF-3c as a default input, set simpleinput or the "
79 "environment variable ORCA_SIMPLEINPUT.\n");
80
81 // Set up ORCA profile and calculator
82 py::object OrcaProfile = ase_orca.attr("OrcaProfile");
83 py::object ORCA = ase_orca.attr("ORCA");
84 size_t nproc{0};
85
86 if (a_params.ase_orca_options.nproc == "auto") {
87 nproc = py::cast<int>(psutil.attr("cpu_count")(false));
88 } else {
89 nproc = std::stoi(a_params.ase_orca_options.nproc);
90 }
91
92 // One directory per calculator instance so two LocalInProcess jobs in
93 // the same cwd do not share ORCA scratch and output files.
94 workDir = makeAseWorkDir("eon_ase_orca");
95
96 try {
97 this->calc =
98 ORCA("profile"_a = OrcaProfile(py::str(orcpth)),
99 "orcasimpleinput"_a = orca_simpleinput,
100 "orcablocks"_a = py::str(std::format("%pal nprocs {} end", nproc)),
101 "directory"_a = workDir.string());
102 } catch (...) {
103 std::error_code ec;
104 std::filesystem::remove_all(workDir, ec);
105 workDir.clear();
106 throw;
107 }
108};
py::object ase
Definition ASE_ORCA.h:30
size_t counter
Definition ASE_ORCA.h:32
py::object calc
Definition ASE_ORCA.h:29
std::filesystem::path workDir
Definition ASE_ORCA.h:31
struct eonc::Parameters::ase_orca_options_t ase_orca_options
Potential(PotType a_ptype)
Definition Potential.h:35
std::string get_value_from_env_or_param(const char *env_variable, const std::string &param_value, const std::string &default_value, const std::string &warning_message, const bool is_mandatory)
Definition EnvHelpers.cc:7
void ensure_interpreter()
Definition NbGuard.h:21

◆ ~ASEOrcaPot()

ASEOrcaPot::~ASEOrcaPot ( )
virtual

Definition at line 110 of file ASE_ORCA.cpp.

110 {
111 QUILL_LOG_INFO(eonc::log::get(), "[ASEOrca] called potential {} times",
112 counter);
113 if (!workDir.empty()) {
114 std::error_code ec;
115 std::filesystem::remove_all(workDir, ec);
116 }
117}
quill::Logger * get() noexcept
Get or create the default "combi" logger.
Definition EonLogger.h:44

Member Function Documentation

◆ force()

void ASEOrcaPot::force ( long nAtoms,
const double * R,
const int * atomicNrs,
double * F,
double * U,
double * variance,
const double * box )
overridevirtual

Implements eonc::Potential.

Definition at line 119 of file ASE_ORCA.cpp.

121 {
122 variance = nullptr;
123 try {
124 AtomMatrix positions = AtomMatrix::Map(const_cast<double *>(R), nAtoms, 3);
125 RotationMatrix boxx = RotationMatrix::Map(const_cast<double *>(box), 3, 3);
126 Eigen::VectorXi atmnmrs =
127 Eigen::Map<Eigen::VectorXi>(const_cast<int *>(atomicNrs), nAtoms);
128 py::object atoms = this->ase.attr("Atoms")(
129 "symbols"_a = atmnmrs, "positions"_a = positions, "cell"_a = boxx);
130 atoms.attr("set_calculator")(this->calc);
131 atoms.attr("set_pbc")(std::tuple<bool, bool, bool>(true, true, true));
132 double py_e = py::cast<double>(atoms.attr("get_potential_energy")());
133 Eigen::MatrixXd py_force =
134 py::cast<Eigen::MatrixXd>(atoms.attr("get_forces")());
135
136 // Populate the output parameters
137 *U = py_e;
138 for (long i = 0; i < nAtoms; ++i) {
139 F[3 * i] = py_force(i, 0);
140 F[3 * i + 1] = py_force(i, 1);
141 F[3 * i + 2] = py_force(i, 2);
142 }
143 } catch (py::error_already_set &e) {
144 throw std::runtime_error(std::string("ASE-ORCA Python error: ") + e.what());
145 } catch (const std::exception &e) {
146 throw std::runtime_error(std::string("ASE-ORCA C++ exception: ") +
147 e.what());
148 }
149
150 counter++;
151 return;
152}
Eigen::Matrix< double, 3, 3, eOnStorageOrder > RotationMatrix
Definition Eigen.h:38
Eigen::Matrix< double, Eigen::Dynamic, 3, eOnStorageOrder > AtomMatrix
Definition Eigen.h:37

◆ isThreadSafe()

bool ASEOrcaPot::isThreadSafe ( ) const
inlinenodiscardoverridevirtualnoexcept

Whether this potential's force() can be called from multiple threads on the SAME instance.

Python-based potentials return false. Potentials with internal mutex (MetatomicPotential) return true but serialize internally – use needsPerImageInstance() to check if separate instances would enable true parallelism.

Reimplemented from eonc::Potential.

Definition at line 41 of file ASE_ORCA.h.

41{ return false; }

◆ needsPerImageInstance()

bool ASEOrcaPot::needsPerImageInstance ( ) const
inlinenodiscardoverridevirtualnoexcept

ORCA runs as external subprocess; separate instances are independent.

Reimplemented from eonc::Potential.

Definition at line 47 of file ASE_ORCA.h.

47 {
48 return true;
49 }

◆ requiresIsolatedMoleculeLayout()

bool ASEOrcaPot::requiresIsolatedMoleculeLayout ( ) const
inlinenodiscardoverridevirtualnoexcept

ORCA does not support PBC; non-centered PBC wraps tear molecules (#188).

Reimplemented from eonc::Potential.

Definition at line 43 of file ASE_ORCA.h.

43 {
44 return true;
45 }

Member Data Documentation

◆ ase

py::object ASEOrcaPot::ase
private

Definition at line 30 of file ASE_ORCA.h.

◆ calc

py::object ASEOrcaPot::calc
private

Definition at line 29 of file ASE_ORCA.h.

◆ counter

size_t ASEOrcaPot::counter {0}
private

Definition at line 32 of file ASE_ORCA.h.

32{0};

◆ workDir

std::filesystem::path ASEOrcaPot::workDir
private

Definition at line 31 of file ASE_ORCA.h.


The documentation for this class was generated from the following files:
  • /home/runner/work/eOn/eOn/include/eon/potentials/ASE_ORCA/ASE_ORCA.h
  • /home/runner/work/eOn/eOn/client/potentials/ASE_ORCA/ASE_ORCA.cpp