Archived
0
0
This commit is contained in:
2025-10-26 11:33:08 +08:00
parent 809a6dbe75
commit 98f225efe4
13 changed files with 95 additions and 57 deletions

View File

@@ -1,5 +1,6 @@
from .electron import Electron
from .nucleon import Nucleon
from .orbital import Orbital
from typing import TypedDict
import pathlib
import typing
@@ -13,7 +14,7 @@ class AtomRegister(TypedDict):
electron: Electron
electron_path: pathlib.Path
electron_fmt: str
orbital: dict
orbital: Orbital
orbital_path: pathlib.Path
orbital_fmt: str
@@ -26,8 +27,6 @@ class Atom():
以及关联路径
"""
def __init__(self, ident = ""):
self.ident = ident
self.register: AtomRegister = { # type: ignore