import jax.numpy as np
def pendel(t, y):
    erg = np.array([y[1], -np.sin(y[0])])
    return erg

