Hello,
So I have H1(t) on values of t_list
a = destroy(levels)
adag = a.dag()
H0 = fa*(adag*a) - (xa/2)*(adag*adag*a*a)
H1 = i_num*(a-adag)
H = [H0,[H1, h1_coff]]
Results = sesolve(H, Qeye, t_list, args=args_dic)
def h1_coff(t,args):
return args["output"][str(t)]
I thought I could work around by just making a dictionary that would map each t_i to the value I have for it, but it seems the numerical solver is evaluating at t values other than the t_list I prescribed.
Is it possible to just past the values of the discretized function at every t_i rather than having a function for any t?
Thank you.