Np Value Error: setting an array element with a sequence

37 Views Asked by At

I am tried to solve a stochastic differential equation. After running my code for the 10th times I got this error, which I cannot address. Some help would be nice:

ux = np.zeros(N+1)
uy = np.zeros(N+1)
t = np.zeros(N+1)

def f(u1, u2, t, alpha):
    return -alpha * u1* (1-1/(np.sqrt(u1**2+u2**2)))


def ForwardEuler_iso(f, nin, nfin, dt, ux, uy, t):
    for k in range(nin+1, nfin):
        t[k+1]=t[k]+dt
        ux[k+1]=ux[k]+dt*f(ux[k], uy[k], t, alpha)+k_delta*np.sqrt(dt)*np.random.randn()
        uy[k+1]=uy[k]+dt*f(uy[k], ux[k], t, alpha)+k_delta*np.sqrt(dt)*np.random.randn()
    return ux, uy, t

ux, uy, t = ForwardEuler_iso(f_pol, N_pol+1, N, dt, ux, uy, t)

The error is given on ux, uy, t....

0

There are 0 best solutions below