Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/radi0sus/orca_uv
Plots absorption spectra from from ORCA output files
https://github.com/radi0sus/orca_uv
computational-chemistry convolution dft gaussian jupyter jupyter-notebook matplotlib orca orca-quantum-chemistry plot python python3 quantum-chemistry spectra spectrum stick-spectrum td-dft uv-vis uvvis
Last synced: 17 days ago
JSON representation
Plots absorption spectra from from ORCA output files
- Host: GitHub
- URL: https://github.com/radi0sus/orca_uv
- Owner: radi0sus
- License: bsd-3-clause
- Created: 2021-09-04T06:45:46.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-27T17:29:26.000Z (7 months ago)
- Last Synced: 2024-05-28T02:27:20.297Z (7 months ago)
- Topics: computational-chemistry, convolution, dft, gaussian, jupyter, jupyter-notebook, matplotlib, orca, orca-quantum-chemistry, plot, python, python3, quantum-chemistry, spectra, spectrum, stick-spectrum, td-dft, uv-vis, uvvis
- Language: Python
- Homepage:
- Size: 1.49 MB
- Stars: 14
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# orca-uv
A Python 3 script for (hassle-free) plotting of absorption spectra from [ORCA](https://orcaforum.kofo.mpg.de)
output files with peak dectection and annotation.
It combines the stick spectrum with the convoluted spectrum (gaussian line shape).
The script supports energy (wave number, cm-1) and wavelength (λ, nm) plots.
The full spectrum or parts of the spectrum can be plotted.Please also have a look at the interactive [Jupyter Notebook edition](https://github.com/radi0sus/orca_uv/blob/main/orca-uv.ipynb).
It offers a sligthly reduced functionality without the need to maintain a local Python installation.
Please upload an `orca.out` file to the same directory and adjust the code to `abs_data = imp_data('my_orca_calc_with_abs_data.out')`.
Note: The interactive Matplotlib window does not work very well with *colab*. Replace `%matplotlib widget` with `%matplotlib inline`
for a better performance. However, this change removes the ability to select a specific region and save the spectrum bitmap.
## External modules
`numpy`
`scipy`
`matplotlib`
## Quick start
Start the script with:
```console
python3 orca-uv.py filename
```
it will save the plot as PNG bitmap:
`filename-abs.png`## Command-line options
- `filename` , required: filename
- `-s` , optional: shows the `matplotlib` window
- `-n` , optional: do not save the spectrum
- `-e` , optional: export the line spectrum in a csv-like fashion; filename of the export is input filename + "-mod.dat"
- `-pwn` , optional: plot the wave number (energy, cm-1) spectrum
- `-wnm` `N` , optional: line width of the gaussian for the nm scale (default is `N = 20`)
- `-wwn` `N` , optional: line width of the gaussian for the cm-1 scale (default is `N = 1000`)
- `-x0` `N` , optional: start spectrum at N nm or N cm-1 (`x0 => 0`)
- `-x1` `N` , optional: end spectrum at N nm or N cm-1 (`x1 => 0`)## Script options
There are numerous ways to configure the spectrum in the script:
Check `# plot config section - configure here` in the script.
You can even configure the script to plot of the single gaussian functions.The delimiter for the line spectrum export can be changed by changing the value of `export_delim =`.
## Code options
Colors, line thickness, line styles, level of peak detection and
more can be changed in the code directly.## Remarks
The PNG file will be replaced everytime you start the script with the same output file.
If you want to keep the file, you have to rename it.
The data are taken from the section "ABSORPTION SPECTRUM VIA TRANSITION ELECTRIC DIPOLE MOMENTS".## Examples:
![show](/examples/show-use3.gif)
![Example 1](/examples/example1.png)
![Example 2](/examples/example2.png)
![Example 3](/examples/example3.png)