Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reading Gaussian fchk vibrations when present #1380

Merged
merged 3 commits into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 55 additions & 1 deletion avogadro/quantumio/gaussianfchk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,17 @@
m_aPos[i + 1] * BOHR_TO_ANGSTROM,
m_aPos[i + 2] * BOHR_TO_ANGSTROM));
}

if (m_frequencies.size() > 0 &&
m_frequencies.size() == m_vibDisplacements.size() &&
m_frequencies.size() == m_IRintensities.size()) {
molecule.setVibrationFrequencies(m_frequencies);
molecule.setVibrationIRIntensities(m_IRintensities);
molecule.setVibrationLx(m_vibDisplacements);
if (m_RamanIntensities.size())
molecule.setVibrationRamanIntensities(m_RamanIntensities);
}

// Do simple bond perception.
molecule.perceiveBondsSimple();
molecule.perceiveBondOrders();
Expand Down Expand Up @@ -91,7 +102,7 @@
} else if (Core::contains(key, "UHF")) {
m_scftype = Uhf;
} else if (key == "Number of atoms" && list.size() > 1) {
cout << "Number of atoms = " << Core::lexicalCast<int>(list[1]) << endl;
m_numAtoms = Core::lexicalCast<int>(list[1]);
} else if (key == "Charge" && list.size() > 1) {
m_charge = Core::lexicalCast<signed char>(list[1]);
} else if (key == "Multiplicity" && list.size() > 1) {
Expand Down Expand Up @@ -183,6 +194,49 @@
<< endl;
else
cout << "Error reading in the SCF spin density matrix.\n";
} else if (key == "Number of Normal Modes" && list.size() > 1) {
m_normalModes = Core::lexicalCast<int>(list[1]);
} else if (key == "Vib-E2" && list.size() > 2) {
m_frequencies.clear();
m_IRintensities.clear();
m_RamanIntensities.clear();

unsigned threeN = m_numAtoms * 3; // degrees of freedom
std::vector<double> tmp =
Fixed Show fixed Hide fixed
readArrayD(in, Core::lexicalCast<int>(list[2]), 16);

// read in the first 3N-6 elements as frequencies
for (unsigned int i = 0; i < m_normalModes; ++i) {
m_frequencies.push_back(tmp[i]);
}
// skip to after threeN elements then read IR intensities
for (unsigned int i = threeN; i < threeN + m_normalModes; ++i) {
m_IRintensities.push_back(tmp[i]);
}
// now check if we have Raman intensities
if (tmp[threeN + m_normalModes] != 0.0) {
for (unsigned int i = threeN + m_normalModes;
i < threeN + 2 * m_normalModes; ++i) {
m_RamanIntensities.push_back(tmp[i]);
}
}
} else if (key == "Vib-Modes" && list.size() > 2) {
std::vector<double> tmp =
Fixed Show fixed Hide fixed
readArrayD(in, Core::lexicalCast<int>(list[2]), 16);
m_vibDisplacements.clear();
if (tmp.size() == m_numAtoms * 3 * m_normalModes) {
for (unsigned int i = 0; i < m_normalModes; ++i) {
Core::Array<Vector3> mode;
for (unsigned int j = 0; j < m_numAtoms; ++j) {
Vector3 v(tmp[i * m_numAtoms * 3 + j * 3],
tmp[i * m_numAtoms * 3 + j * 3 + 1],
tmp[i * m_numAtoms * 3 + j * 3 + 2]);
mode.push_back(v);
}
m_vibDisplacements.push_back(mode);
}
}
cout << "Read " << m_vibDisplacements.size() << " vibrational modes\n";
}
}

Expand Down
14 changes: 12 additions & 2 deletions avogadro/quantumio/gaussianfchk.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
#define AVOGADRO_QUANTUMIO_GAUSSIANFCHK_H

#include "avogadroquantumioexport.h"

#include <avogadro/core/array.h>
#include <avogadro/core/gaussianset.h>
#include <avogadro/io/fileformat.h>

Expand Down Expand Up @@ -67,6 +69,8 @@ class AVOGADROQUANTUMIO_EXPORT GaussianFchk : public Io::FileFormat
int m_electrons;
int m_electronsAlpha;
int m_electronsBeta;
int m_normalModes;
int m_numAtoms;
unsigned char m_spin;
signed char m_charge;
unsigned int m_numBasisFunctions;
Expand All @@ -87,8 +91,14 @@ class AVOGADROQUANTUMIO_EXPORT GaussianFchk : public Io::FileFormat
MatrixX m_density; /// Total density matrix
MatrixX m_spinDensity; /// Spin density matrix
Core::ScfType m_scftype;

Core::Array<double> m_frequencies;
Core::Array<double> m_IRintensities;
Core::Array<double> m_RamanIntensities;
Core::Array<Core::Array<Vector3>> m_vibDisplacements;
};
}
}

} // namespace QuantumIO
} // namespace Avogadro

#endif
Loading