"vscode:/vscode.git/clone" did not exist on "31762776c3eecb066e5a2d8bd9ae678b41f1402f"
Unverified Commit 21dd6f8a authored by Gao, Xiang's avatar Gao, Xiang Committed by GitHub
Browse files

fix flake8 (#466)

parent 14b9a395
...@@ -317,7 +317,7 @@ def vibrational_analysis(masses, hessian, mode_type='MDU', unit='cm^-1'): ...@@ -317,7 +317,7 @@ def vibrational_analysis(masses, hessian, mode_type='MDU', unit='cm^-1'):
elif unit == 'cm^-1': elif unit == 'cm^-1':
unit_converter = sqrt_mhessian2invcm unit_converter = sqrt_mhessian2invcm
else: else:
raise ValueError(f'Only meV and cm^-1 are supported right now') raise ValueError('Only meV and cm^-1 are supported right now')
assert hessian.shape[0] == 1, 'Currently only supporting computing one molecule a time' assert hessian.shape[0] == 1, 'Currently only supporting computing one molecule a time'
# Solving the eigenvalue problem: Hq = w^2 * T q # Solving the eigenvalue problem: Hq = w^2 * T q
...@@ -410,7 +410,7 @@ def get_atomic_masses(species): ...@@ -410,7 +410,7 @@ def get_atomic_masses(species):
269.1338 , 278.156 , 281.165 , 281.166 , # noqa 269.1338 , 278.156 , 281.165 , 281.166 , # noqa
285.177 , 286.182 , 289.19 , 289.194 , # noqa 285.177 , 286.182 , 289.19 , 289.194 , # noqa
293.204 , 293.208 , 294.214], # noqa 293.204 , 293.208 , 294.214], # noqa
dtype=torch.double, device=species.device) dtype=torch.double, device=species.device) # noqa
masses = default_atomic_masses[species] masses = default_atomic_masses[species]
return masses return masses
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment