Hi I'm having a hard time solving this equation in python (34), I also added 35 and 36 as information for Ci.
Here is what I have so far:
import numpy as np
import scipy as sp
import sympy as smp
smp.init_printing(True)
C_i = smp.Function('C_i')
t, x, v, tao = smp.symbols('t, x, v, tao', positive=True) # tao = lambda x, v: x/v
m2 = smp.Integral((C_i(t-tao))**2,(tao, 0,t))
m2.doit()
m2_s = m2.doit().simplify()
t_arr = np.arange(0,1000,1)
fm2_1 = smp.lambdify((x,v,t), m2_s, ['scipy', {'C_i': lambda e:0.666666}])
I'm not sure how to add the condition that tao = x/v. I do not need to use sympy its just what I could find online as a guide.