Implements Better Tests and Logging

This commit is contained in:
2023-03-01 02:49:28 -03:00
parent 32ca95086a
commit aea34bf214
17 changed files with 1147 additions and 72 deletions

View File

@@ -18,6 +18,7 @@ class Atom:
ry: float,
rz: float,
na: int = None,
chg: float = None,
symbol: str = None,
) -> None:
@@ -42,5 +43,5 @@ class Atom:
self.rx = rx
self.ry = ry
self.rz = rz
self.chg = None
self.chg = chg
self.mass = atom_mass[self.na]