A Python package for calculating atomic term symbols from electron configurations
This project has been archived.
The maintainers of this project have marked this project as archived. No new releases are expected.
Project description
Atomic Term Symbol Calculator
A Python package for calculating all possible atomic term symbols from electron configurations. This tool uses quantum mechanical principles to determine microstates and derive term symbols including J-coupling.
Features
- Calculate total number of microstates for any electron configuration
- Generate all possible term symbols from electron configurations
- Support for s, p, d, and f orbitals
- Handles multiple electron shells and mixed configurations
- Applies Pauli exclusion principle and Hund's rules
- Calculates J quantum numbers using Russell-Saunders coupling
- Flexible input format (space or dot separated orbitals)
Installation
From Source
- Clone the repository:
git clone https://github.com/ccheung93/atomic-term-symbol-calculator.git
cd atomic-term-symbol-calculator
- Create a virtual environment (recommended):
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
- Install the package in development mode:
pip install -e .
- To install with testing dependencies:
pip install -e .[test]
Requirements
- Python ≥ 3.8
- numpy
- pandas
- fractions (built-in)
- itertools (built-in)
- re (built-in)
Usage
As a Python Module
from atomic_term_symbol_calculator.terms import calc_term_symbols, calc_microstates
# Calculate term symbols for carbon (2p2)
terms = calc_term_symbols("2p2")
print(terms)
# Output: ['3P0', '3P1', '3P2', '1D2', '1S0']
# Calculate microstates for p2 configuration
microstates = calc_microstates(6, 2) # 6 positions, 2 electrons
print(microstates)
# Output: 15
# Mixed orbital configurations
terms = calc_term_symbols("2s1.2p1")
print(terms)
# Output: ['3P0', '3P1', '3P2', '1P1']
# d orbital configurations
terms = calc_term_symbols("3d2")
print(terms)
Command Line Usage
python -m atomic_term_symbol_calculator.terms
# Enter configuration when prompted: 2p3
Input Format
Electron configurations can be specified in two formats:
- Dot separated:
2s1.2p3.3d2 - Space separated:
2s1 2p3 3d2
The occupancy number can be omitted if it's 1:
2p1is equivalent to2p3d1is equivalent to3d
Examples
| Configuration | Description | Example Terms |
|---|---|---|
1s1 |
Hydrogen | 2S1/2 |
2p1 |
Boron | 2P1/2, 2P3/2 |
2p2 |
Carbon | 3P0, 3P1, 3P2, 1D2, 1S0 |
2p3 |
Nitrogen | 4S3/2, 2D3/2, 2D5/2, 2P1/2, 2P3/2 |
3d1 |
Sc²⁺ | 2D3/2, 2D5/2 |
3d5 |
Mn²⁺ | Multiple terms (high-spin d5) |
Testing
Run the test suite:
pytest
Run tests with verbose output:
pytest -v
Run tests for a specific file:
pytest tests/test_terms.py
Run tests with coverage:
pytest --cov=atomic_term_symbol_calculator
Development
Project Structure
atomic-term-symbol-calculator/
├── src/
│ └── atomic_term_symbol_calculator/
│ ├── __init__.py # Version info
│ └── terms.py # Main calculation functions
├── tests/
│ └── test_terms.py # Comprehensive test suite
├── pyproject.toml # Project configuration
├── README.md # This file
└── CLAUDE.md # Development guidance
Algorithm Overview
The calculator follows these steps:
- Parse Configuration: Extract orbital types and electron counts
- Generate Microstates: Create all possible electron arrangements
- Apply Quantum Rules: Filter using Pauli exclusion principle
- Tabulate States: Create ML vs MS quantum number table
- Extract Terms: Systematically remove term symbols from table
- Calculate J Values: Apply |L-S| ≤ J ≤ |L+S| coupling rules
Contributing
- Fork the repository
- Create a feature branch
- Add tests for new functionality
- Ensure all tests pass
- Submit a pull request
License
MIT License - see LICENSE file for details.
References
- Term Symbols Notes
- Russell-Saunders coupling theory
- Quantum mechanical principles of atomic structure
Author
Charles Cheung (ccheung@udel.edu)
Project details
Release history Release notifications | RSS feed
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 atomic_term_symbol_calculator-0.1.2.tar.gz.
File metadata
- Download URL: atomic_term_symbol_calculator-0.1.2.tar.gz
- Upload date:
- Size: 13.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1e43c1a47bf4e145702fa4e9643b0584c24dd9dbd4f615ac84b6ea74169097a
|
|
| MD5 |
0676af443520cfcacf302b97dbd05509
|
|
| BLAKE2b-256 |
47c925352267a1f94259f52ad620f8224f6cdf8729391e983913718c7e85b914
|
File details
Details for the file atomic_term_symbol_calculator-0.1.2-py3-none-any.whl.
File metadata
- Download URL: atomic_term_symbol_calculator-0.1.2-py3-none-any.whl
- Upload date:
- Size: 7.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cffdae9a981a6542b88ea56d34685b2849df85ff60cacee831c25c8365e932f3
|
|
| MD5 |
028868f98ccc1a4d3828d300b3fadbce
|
|
| BLAKE2b-256 |
9fdf43ee2f4cf0d5dc0b93a1a3e878a40498e6779f42c7fcf03a32470a0d47c9
|