calc utils

This commit is contained in:
2026-01-11 11:37:11 +08:00
parent 5fca3520f6
commit 5e94b202b5
7 changed files with 559 additions and 0 deletions

View File

@ -0,0 +1,19 @@
# from .patch_gaussian import GSUB
from .rdkit2ase import MolToAtoms,AtomsToMol
from .rdkit_utils import draw2D,draw3D
from rdkit.Chem import AllChem
from rdkit import Chem
from ase import atoms
# import patch_gaussian as gaussian
__all__ = [
# 'GSUB',
'MolToAtoms',
'AtomsToMol',
'draw2D',
'draw3D',
'Chem',
'AllChem',
'atoms',
'gaussian'
]