removes logging
All checks were successful
gitea-physics/pysuperconductor/pipeline/head This commit looks good

This commit is contained in:
Deepak Mallubhotla 2020-11-23 12:45:24 -06:00
parent aea431cd2d
commit 507bc76c02
Signed by: deepak
GPG Key ID: 64BF53A3369104E7

View File

@ -1,7 +1,6 @@
import numpy
import scipy.integrate as integrate
import scipy.optimize
import logging
def energy(freq, delta):
@ -33,5 +32,4 @@ def find_gap(temp, mu_star, debye_frequency, nv):
lambda d: gap_integral(temp, d, mu_star, debye_frequency) - nv_inv,
x0=debye_frequency / (numpy.sinh(nv_inv))
)
logging.info(sol)
return sol.x