希望得到我的代码的一些指导,我对python很新,我在代码中遇到修改后的bessel函数k0的困难。实际代码分为两部分
1)第一部分使用sympy来解决t并在t = 0时返回x0的值。
2)第二部分使用此值x0来解决不同x值的t。
第二步,我有困难scipy.special.k0函数似乎不适用于所述解决的x0值,我不知道为什么
from __future__ import division
import sympy as sy
from sympy import besselk, log, nsolve
import math
import numpy as np
import scipy.special as sp
Tc = 9.2
Tb = 5.2
tb = Tb / Tc
print 'Value of tb is:'+' '+ str(tb)
L = 100*10**-9
W = 100*10**-9
n = 3*10**-6
r1 = W / 2
print 'value of r1 is:'+' '+ str(r1)
x1 = r1 /n
print 'value of x1 is'+ ' '+ str(x1)
S = math.sqrt(3 / (1+ tb + tb**2))
print 'value of S is:'+' ' + str(S)
B = (math.pi / 2)*(1+(L/W))
print 'value of B is:'+' ' + str(B)
E = [x /10 for x in range (1, 2, 1)]
x0 = sy.symbols('x0')
i = (S*x0)*(1-tb**3)*besselk(0, x0) / 3*(log(x0/x1)+B) * besselk(0, S*x0)
t = - i*( (log(x0/x1)*B)**2 - (log(x0/x1)+B)**2 )
X0 = nsolve(t, E)
G = sp.k0(X0)
print 'value of x0 is:' +' '+ str(X0)
当我运行代码时,会导致以下错误
TypeError: ufunc 'k0' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''
非常感谢任何帮助,并提前感谢您。
答案 0 :(得分:2)
X0
不是常规浮点值;它是来自mpf
的{{1}} - 类型(包含在内容中)。 mpmath
并不知道那是什么。改变这个:
scipy.special.k0
到此:
G = sp.k0(X0)