You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
450 B
14 lines
450 B
5 months ago
|
from sympy.core.numbers import E
|
||
|
from sympy.core.symbol import symbols
|
||
|
from sympy.functions.elementary.exponential import log
|
||
|
from sympy.functions.elementary.miscellaneous import sqrt
|
||
|
from sympy.geometry.curve import Curve
|
||
|
from sympy.integrals.integrals import line_integrate
|
||
|
|
||
|
s, t, x, y, z = symbols('s,t,x,y,z')
|
||
|
|
||
|
|
||
|
def test_lineintegral():
|
||
|
c = Curve([E**t + 1, E**t - 1], (t, 0, log(2)))
|
||
|
assert line_integrate(x + y, c, [x, y]) == 3*sqrt(2)
|