Skip to main content

QRotor

Project description

QRotor

QRotor is a Python package used to study molecular rotations, such as those of methyl and amine groups. It can calculate their quantum energy levels and wavefunctions, along with excitations and tunnel splittings. These quantum systems are represented by the qrotor.System() object.

QRotor can obtain custom potentials from DFT, which are used to solve the quantum system.

Check the full documentation online.

Index

qrotor.system Definition of the quantum System object
qrotor.systems Functions to manage several System objects, such as a list of systems
qrotor.rotate Rotate specific atoms from structural files
qrotor.constants Common bond lengths and inertias
qrotor.potential Potential definitions and loading functions
qrotor.solve Solve rotation eigenvalues and eigenvectors
qrotor.plot Plotting functions

Usage

Solving quantum rotational systems

A basic calculation of the eigenvalues for a zero potential goes as follows. Note that the default energy unit is meV unless stated otherwise.

import qrotor as qr
system = qr.System()
system.gridsize = 200000  # Size of the potential grid
system.B = 1  # Rotational inertia
system.potential_name = 'zero'
system.solve()
system.eigenvalues
# [0.0, 1.0, 1.0, 4.0, 4.0, 9.0, 9.0, ...]  # approx values

The accuracy of the calculation increases with bigger gridsizes, but note that the runtime increases exponentially.

The same calculation can be performed for a methyl group, in a cosine potential of amplitude 30 meV:

import qrotor as qr
system = qr.System()
system.gridsize = 200000  # Size of the potential grid
system.B = qr.B_CH3  # Rotational inertia of a methyl group
system.potential_name = 'cosine'
system.potential_constants = [0, 30, 3, 0]  # Offset, max, freq, phase (for cos pot.)
system.solve()
# Plot potential and eigenvalues
qr.plot.energies(system)
# Plot the first wavefunctions
qr.plot.wavefunction(system, levels=[0,1,2], square=True)

Custom potentials from DFT

QRotor can be used to obtain custom rotational potentials from DFT calculations. Using Quantum ESPRESSO, running an SCF calculation for a methyl rotation every 10 degrees:

import qrotor as qr
from aton import api
# Approx crystal positions of the atoms to rotate
atoms = [
    '1.101   1.204   1.307'
    '2.102   2.205   2.308'
    '3.103   3.206   3.309'
]
# Create the input SCF files, saving the filenames to a list
scf_files = qr.rotate.structure_qe('molecule.in', positions=atoms, angle=10, repeat=True)
# Run the Quantum ESPRESSO calculations
api.slurm.sbatch(files=scf_files)

To load the calculated potential to a QRotor System,

# Compile a 'potential.csv' file with the calculated potential as a function of the angle
qr.potential.from_qe()
# Load to the system
system = qr.potential.load()
# Solve the system, interpolating to a bigger gridsize
system.B = qr.B_CH3
system.solve(200000)
qr.plot.energies(system)

Tunnel splittings and excitations

Tunnel splittings, excitations and energy level degeneracy below the potential maximum are also calculated upon solving the system:

system.solve()
system.splittings
system.excitations
system.deg

An integer System.deg degeneracy (e.g. 3 for methyls) indicates that the energy levels have been properly estimated. However, if the degeneracy is a float instead, please check the splittings and excitations manually from the system eigenvalues.

To export the energies and the tunnel splittings of several calculations to a CSV file:

calculations = [system1, system2, system3]
qr.systems.save_energies(calculations)
qr.systems.save_splittings(calculations)

Excitations are calculated using the mean for each energy level with respect to the ground state. Tunnel splittings for each level are calculated as the difference between A and E, considering the mean of the eigenvalues for each sublevel. See R. M. Dimeo, American Journal of Physics 71, 885–893 (2003) and A. J. Horsewill, Progress in Nuclear Magnetic Resonance Spectroscopy 35, 359–389 (1999) for further reference.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qrotor-4.0.0a1.tar.gz (37.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

qrotor-4.0.0a1-py3-none-any.whl (39.4 kB view details)

Uploaded Python 3

File details

Details for the file qrotor-4.0.0a1.tar.gz.

File metadata

  • Download URL: qrotor-4.0.0a1.tar.gz
  • Upload date:
  • Size: 37.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for qrotor-4.0.0a1.tar.gz
Algorithm Hash digest
SHA256 3cb50cc29441d86d8800f87c48963cfdcbe0e66513c4918c3467f233a201f985
MD5 ad22bd69a10c5fe8e5edb5807a889b94
BLAKE2b-256 6e92c4f08500f60843176d4cbc4ef5efbf51cbfa999dc8603020f9b71796a601

See more details on using hashes here.

File details

Details for the file qrotor-4.0.0a1-py3-none-any.whl.

File metadata

  • Download URL: qrotor-4.0.0a1-py3-none-any.whl
  • Upload date:
  • Size: 39.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for qrotor-4.0.0a1-py3-none-any.whl
Algorithm Hash digest
SHA256 dfa736aeb18e3e725ef6da213c582debdf63712a1a769a056bba3080e0288a96
MD5 19a0b6d037ecbec605f5b337e4ae47df
BLAKE2b-256 f2322dab45a1d6af55eca84cfe4d8151775f4861e62d9279b5a7d2d3034872e9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page