Mathematica で f(x,t) の元の方程式を作成しました。
uExact[x_, t_] := (1 + I*t^2)* Cos[2 * Pi *x];
f[x_, t_] :=
4 * Pi^2 * (1 + I * t^2) * Cos[2* Pi * x] + 2*I*t*Cos[2 Pi*x] -
I * g * log[(t^4 + 1) * Cos^2[2*Pi*x]];
私はそれを次のコードに変換しました:
def u_exact(x, t):
return (1 + I*t**2)* cmath.cos(2 * cmath.pi *x)
#check!!!
def f(x,t):
#1return 4 * cmath.pi**2 * (1 + I * t**2) * cmath.cos(2* cmath.pi * x) + 2*I*t*cmath.cos(2 * cmath.pi*x) - I * g * cmath.log((t**4 + 1) * cmath.cos**2(2*cmath.pi*x))
#alternative
p1 = 4 * pow(cmath.pi,2) * (1 + I * pow(t,2)) * pow(cmath.cos,2)* (2*cmath.pi * x)
p2 = 2*I*t*cmath.cos(2 * cmath.pi*x)
p3 = - I * g * cmath.log(pow(t,4) + 1) * pow(cmath.cos,2) * (2*cmath.pi*x)
return (p1 + p2 + p3)
ケース #1 と #alternative の場合、同じエラーが発生し続けます: unsupported operand type(s) for ** or pow(): 'builtin_function_or_method'
何が問題なのですか?私は何かを逃しましたか?