Skip to content

Commit 433e54f

Browse files
committed
insert debug tags
1 parent ebfd917 commit 433e54f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/pymatgen/analysis/eos.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,13 @@ def b0(self) -> float:
143143
@property
144144
def b0_GPa(self) -> FloatWithUnit:
145145
"""The bulk modulus in GPa. This assumes the energy and volumes are in eV and Ang^3."""
146+
print(self.b0)
147+
print(FloatWithUnit(1, "eV ang^-3").to("GPa")) # DEBUG: scipy const
148+
import scipy
149+
150+
print(f"scipy version: {scipy.__version__}")
151+
152+
print(f"BLAS implementation: {np.show_config()}")
146153
return FloatWithUnit(self.b0, "eV ang^-3").to("GPa")
147154

148155
@property

0 commit comments

Comments
 (0)