stjames 0.0.16__tar.gz → 0.0.17__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stjames might be problematic. Click here for more details.
- {stjames-0.0.16/stjames.egg-info → stjames-0.0.17}/PKG-INFO +1 -1
- {stjames-0.0.16 → stjames-0.0.17}/pyproject.toml +1 -1
- {stjames-0.0.16 → stjames-0.0.17}/stjames/int_settings.py +1 -1
- {stjames-0.0.16 → stjames-0.0.17}/stjames/settings.py +2 -2
- {stjames-0.0.16 → stjames-0.0.17}/stjames/solvent_settings.py +1 -1
- {stjames-0.0.16 → stjames-0.0.17/stjames.egg-info}/PKG-INFO +1 -1
- {stjames-0.0.16 → stjames-0.0.17}/LICENSE +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/README.md +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/setup.cfg +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/stjames/__init__.py +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/stjames/base.py +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/stjames/basis_set.py +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/stjames/calculation.py +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/stjames/corrections.py +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/stjames/diis_settings.py +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/stjames/grid_settings.py +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/stjames/methods.py +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/stjames/modes.py +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/stjames/molecule.py +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/stjames/opt_settings.py +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/stjames/scf_settings.py +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/stjames/status.py +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/stjames/tasks.py +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/stjames/thermochem_settings.py +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/stjames.egg-info/SOURCES.txt +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/stjames.egg-info/dependency_links.txt +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/stjames.egg-info/requires.txt +0 -0
- {stjames-0.0.16 → stjames-0.0.17}/stjames.egg-info/top_level.txt +0 -0
|
@@ -28,7 +28,7 @@ class Settings(Base):
|
|
|
28
28
|
@pydantic.computed_field
|
|
29
29
|
@property
|
|
30
30
|
def level_of_theory(self) -> str:
|
|
31
|
-
if self.method in [Method.HF3C, Method.B973C]:
|
|
31
|
+
if self.method in [Method.HF3C, Method.B973C, Method.AIMNET2_WB97MD3]:
|
|
32
32
|
return self.method.value
|
|
33
33
|
elif (len(self.corrections)) == 0 or (self.method in [Method.B97D3]):
|
|
34
34
|
return f"{self.method.value}/{self.basis_set.name.lower()}"
|
|
@@ -150,7 +150,7 @@ def _assign_settings_by_mode(settings: Settings) -> None:
|
|
|
150
150
|
opt_settings = settings.opt_settings
|
|
151
151
|
|
|
152
152
|
# constrained optimizations warrant loosening the settings a bit
|
|
153
|
-
has_constraints =
|
|
153
|
+
has_constraints = len(opt_settings.constraints) > 0
|
|
154
154
|
|
|
155
155
|
# cf. DLFIND manual, and https://www.cup.uni-muenchen.de/ch/compchem/geom/basic.html
|
|
156
156
|
# and the discussion at https://geometric.readthedocs.io/en/latest/how-it-works.html
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|