A package that generates Hamiltonians for arbitrarly large (pseudo)Jahn-Teller systems
Project description
VHEGEN 2.0: A vibronic Hamiltonian expansion generator for trigonal and tetragonal polyatomic systems
VHEGEN (V-ibronic H-amiltonian E-xpansion GEN-erator) is a Python package capable of symbolically generating arbitrarily high order expansion formulas for Jahn-Teller and pseudo-Jahn-Teller vibronic Hamiltonians in vibrational coordinates.
Scope
VHEGEN covers all bistate Jahn-Teller and pseudo-Jahn-Teller problems in any axial symmetries, i.e) point groups: CN, CNv, CNh, DN, DNh, DNd, SN, Cinfv, Dinfh. Unimodal problems are treated as special cases of their bistate analogues and hence also covered. Any number of modes can be included.
Compatibility
VHEGEN has been tested with Python 2.7 and 3.7 on Linux, macOS, and Windows 10 operating systems.
Dependencies
VHEGEN requires base Python 2 or 3 and external libraries SymPy and NumPy. It is highly recommended the system also has a TeX distribution installed, such as TeX Live. A TeX installation will allow VHEGEN to execute pdflatex on the output .tex file and generate a LaTeX-typeset output .pdf file. If pip is installed, the Python dependencies for VHEGEN can be installed via pip install -r requirements.txt in the main package directory.
Installation
Installation of the VHEGEN package is as simple as
pip install vhegen
If you want to install VHEGEN from this git repository.
python -m build
followed by
python -m pip install .
This primes the program for procedural use as an executable script, as well as for importing as a package. To ensure all dependencies are met, one can run python testrun.py located in the examples directory. This will execute a zeroeth to third order expansion of the E1"x(e1'+e1'') problem in C5h symmetry. If successful, the execution should terminate after printing "Testrun complete without errors." If a TeX distribution is not set up on the machine, one should remove vhegen_instance.pdflatex() from testrun.py before running.
File structure of VHEGEN
VHEGEN: The main VHEGEN package directory.examples: Directory containing a couple example scripts.config.cfg: The configuration file read during procedural execution ofvhegen.py.benzene.py: Example of 2 state, 10 mode expansion of benzene cation.testrun.py: Small test example in C5h
scripts: Contains the vhegen script that can be used to run vhegen dynamically. Will be installed in the standard bin directory.src: Directory with packagemodules: Directory containing Python source code files imported byvhegen.py.tables: Directory containing the lookup tables required by the program in the form of Python files. Included are lookup tables for symmetry eigenvalues, general form of vibronic matrices, and root expansion formulas.
setup.cfg: Package information for build
Using VHEGEN procedurally
VHEGEN is called procedurally by executing vhegen after installing the package or by running the vhegentest script in scripts/vhegen. The program settings for procedural use are read from the configuration file config.cfg in the same directory, the contents of which are described below.
Configuration
In the configuration file, the user specifies the five parameters: input, pdf_out, log_out, e_coords, and basis mctdh_out.
| Parameter | Values |
|---|---|
input |
static, dynamic |
pdf_out |
true, false |
log_out |
true, false |
e_coords |
pol, cart |
basis |
complex, real |
mctdh_out |
true, false |
Parameter input is used to specify either static or dynamic input mode (discussed in the next section). When set to true(false), parameter pdf_out enables(disables) application of the TeX pdflatex command to produce a .pdf output file. The output file contains the input vibronic interaction, the matrix form of the vibronic Hamiltonian, and all explicit matrix element expansions typeset via LaTeX. Thus, pdf_out should only be set to true if a TeX distribution is installed on the system. Parameter log_out similarly enables or disables output of a text file, containing all relevant information used in the expansion process, including the independent matrix elements and their symmetry eigenvalues, and the root expansion formulas along with their constraints. All expansions in Sympy readable syntax can be found in the log file. Parameter e_coords is used to specify the coordinate system used for expressing e-type vibrational modes. When e_coords is set to pol, the expansions will be kept in polar coordinates as they were originally constructed. When e_coords is set to cart, the expansions are converted to cartesian coordinates. Both polar and cartesian coordinate expansions may be included in the final output by setting e_coords=both. The basis parameter defines which basis to use for vibronic Hamiltonians involving E-type electronic states. When set to complex/real, the output vibronic Hamiltonian matrix elements are for the complex/real E component states. Both complex and real representations can be output by setting basis=both. The default configuration is in the config file in examples.
Input
The procedural input to VHEGEN consists of specifying: point group symmetry; irreps of electronic states; irreps of vibrational modes; order(s) of expansion; and an output filename. There exist two input approaches, namely the "dynamic input" and "static input" modes, selected using the input parameter in config.cfg.
Both modes of input follow the same general rules for input syntax. All input parameters are case-insensitive, except the output filename. Symmetries are specified by their usual point group classification. Electronic states and vibrational modes are specified by standard Mulliken symbols for their irreducible representations. Single primes in Mulliken symbols are denoted by an apostrophe ', and double primes are denoted by two apostrophes '' or a quotation mark ". For pJT problems that involve two states and any number of vibrational modes, either a plus sign + or a comma , can be used to separate the two specified states or modes. When specifying the orders of expansion, a range of orders can be stated by providing non-negative integers as lower and upper inclusive bounds separated by a comma, e.g., 0,6. If expansion at a single order is desired, then only an integer is keyed in. Output filename should avoid any operating system dependent illegal characters. If the filename parameter is unspecified or left empty, the output filename will default to value output.
Dynamic
When dynamic input mode is specified in the configuration file, the user enters problem parameters and output filename dynamically through terminal prompts after executing python vhegen.py. Any additional arguments made when calling the program will be ignored if set to dynamic input. The user will be re-prompted at each stage if an invalid parameter is entered. The user can receive lists of valid inputs by entering list, and can quit the program by entering exit. The list command will show a list with numbers next to the allowable symmetries. One can key in the corresponding numbers instead of state or mode labels. Below is an example.
> vhegen
Entering dynamic input.
Enter symmetry: C5h
{'letter': 'C', 'rot': 5, 'extra': 'H', 'refl': False, 'print': 'C5h'}
C5h symmetry accepted.
Enter electronic state(s): list
Irreps of C5h:
0:A' 1:E1' 2:E2' 3:A'' 4:E1''
5:E2''
Retry state(s): A'+E1''
Electronic states (E1''+A') accepted.
Enter vibrational mode(s): list
Irreps of C5h:
0:A' 1:E1' 2:E2' 3:A'' 4:E1''
5:E2''
Retry mode(s): 0+1+2+3+4+5
Vibrational modes (a'+e1'+e2'+a''+e1''+e2'') accepted.
Order(s) of expansion:0,4
Orders of expansion [0, 1, 2, 3, 4] accepted.
Enter filename: test
Static
When input mode is set to static, a vibronic problem is specified in-line with the execution of the program via additional arguments. The following additional arguments must be specified in the static input mode: --sym for point group symmetry, --states for electronic state(s), --modes for vibrational mode(s), and --o for order(s) of expansion. Specification of a filename is done by optional argument --f. The general syntax for specifying the additional arguments when executing the program is --arg=value. For example, execution of problem E x (e+a) in C3v symmetry at the third to sixth orders is accomplished in static input mode by python vhegen.py --sym=C3V --states=E --modes=e+a1 --o=3,6.
Output
When called procedurally, outputs generated by VHEGEN are found in subdirectory outputs from where the program was called. VHEGEN may produce seven output files upon completion of a problem:
-
.texfile: Always produced. This file contains all final matrix element expansions in the basis, coordinate system, and orders of expansion(s) specified, the matrix form of the vibronic Hamiltonian, and a count of free parameters needed to be fitted. All information is typeset to a compilable LaTeX document. -
.logfile: Produced iflog_out=trueinconfig.cfg. This is a text file containing auxiliary information regarding the matrix element expansion process, including the independent matrix elements, their symmetry eigenvalues, their root formulas, and the appropriate contraints. It also contains all final matrix element expansions in Sympy syntax. -
.pdffile: Produced ifpdf_out=trueinconfig.cfg. This file is a read-friendly version of the.texoutput file compiled viapdflatex. -
-cart.op, -pol.op, -cart.inp, -pol.inpfiles: Produced ifmctdh_out=trueinconfig.cfg. These files are the input files necessary to run an mctdh simulation. One needs to fill out the fitted parameters in the.opfiles to run the simulation. The single particle basis functions will also need to have its parameters optimized but the type of basis used should remain unchanged.
Using VHEGEN as a package
Herein we describe important methods and attributes of the VHEGEN class, made accessible by importing VHEGEN as a package via import vhegen.
Initialization
To initialize an instance of the VHEGEN class, a dictionary containing all vibronic problem parameters for the instance must be specified as its only argument. The input may be prepared by inp.prepare_input, which takes the five parameters: point group symmetry, the electronic state(s), the vibrational mode(s), order(s) of expansion, and an optional filename -- all given as strings following the syntax rules for procedural input. E.g.) initializing an instance of VHEGEN for the (E+A)x(e+a) problem in C4 symmetry at 12th order is shown below.
import vhegen as vhe
params = vhe.inp.prepare_input(sym='C4', states='E+A', modes='e+a', orders='12', filename='output')
vhegen_instance = vhe.VHEGEN(params)
Generating matrix element expansions
Below are the methods which must be sequentially called to generate the full matrix element expansions for a specified vibronic problem. For more details about the methods described, please see Section 5.3 in the associated paper.
| Method | Description |
|---|---|
set_e_coords(e_coordinate_system) |
Defines the coordinate system for problems involving e-type vibrational modes. Allowed arguments for e_coordinate_system are cart, pol, and both. |
set_basis(E_component_basis) |
Defines the E state component basis for problems involving E-type states. Allowed arguments for E_component_basis are complex, real, and both. |
get_eigenvals() |
Obtains unique matrix elements and their symmetry eigenvalues by initializing attribute eigenvals. |
get_matrix_form() |
Obtain matrix product form of the vibronic Hamiltonian, and stores in attribute matrix. |
get_formulas() |
Performs lookup of root expansion formulas along with the required constraints, storing them in attributes formulas and constraints respectively. |
get_expansions() |
Generate term-by-term expansions at all specified orders, storing them in a nested dictionary in attribute expansions. If basis is set to both, expansions in the real basis will be stored in attribute real_expansions. |
The auto() method
The methods discussed in the previous subsection can be immediately performed after initialization of a VHEGEN instance by the auto() method. This method sequentially calls all mandaory processes discussed above to generate the expansions attribute including all matrix elements. It will also transform to the real E component basis if applicable. Below is an example script of how one would ggenerate the expanded matrix elements for a specific vibronic Hamiltonian at the desired orders.
import vhegen as vhe
params = vhe.inp.prepare_input(sym='D4h', states='Eg+A1u', modes='eg+b2u', orders='0,10')
vhegen_instance = vhe.VHEGEN(params)
vhegen_instance.auto()
print(vhegen_instance.expansions)
Expansion output
The final expansions may be viewed by printing attribute expansions. Alternatively they may also be checked by executing method pdflatex(path) to produce a compiled output .pdf file similarly in procedural usage. If path is left unspecified, the output .pdf will be sent to the outputs subdirectory as it is in procedural usage.
Authors
- James Brown (York University)
- Robert A. Lang (University of Toronto)
- Riley J. Hickman (University of Toronto)
- Tao Zeng (York University)
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vhegen-2.0.21.tar.gz.
File metadata
- Download URL: vhegen-2.0.21.tar.gz
- Upload date:
- Size: 54.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.6.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4b8b8e53e444d75869496e8f01b2d74c629f2a322940a8f445b09cdbd6af124
|
|
| MD5 |
8e157dea069f8abf8d656bc457020ce4
|
|
| BLAKE2b-256 |
88f81cfe458498ee1cb6308cc739f8e3eabdf0eadf92fe18d51560aa4b358b28
|
File details
Details for the file vhegen-2.0.21-py3-none-any.whl.
File metadata
- Download URL: vhegen-2.0.21-py3-none-any.whl
- Upload date:
- Size: 51.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.6.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c3fdb09e97a1a92685742dbde6613bd2e0aa400b2c982816cf4aaa7d4a368bb
|
|
| MD5 |
491fcbed22c500c98fd6c60ca6638df3
|
|
| BLAKE2b-256 |
9fefe9e76c2a7d4456875feed75cace5ed409cf12814f68f518438095e5122ef
|