From 32c4aa0ea29dbd3cef76d6cd40308da952420954 Mon Sep 17 00:00:00 2001 From: KathiRath Date: Mon, 12 Apr 2021 17:25:26 +0200 Subject: [PATCH] cite Burby et al. --- python/02_pert_pendulum/calc_poincare.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/02_pert_pendulum/calc_poincare.py b/python/02_pert_pendulum/calc_poincare.py index 7e5a3c5..dde241b 100644 --- a/python/02_pert_pendulum/calc_poincare.py +++ b/python/02_pert_pendulum/calc_poincare.py @@ -11,7 +11,8 @@ def zdot(t, z): #perturbed pendulum ydot=-e*(0.3*y*np.sin(2*t) + 0.7*y*np.sin(3*t)) - om**2*np.sin(x) return np.hstack([xdot,ydot]) -#%% +#%% see Burby et al. (2020): Fast neural Poincaré maps for toroidal magnetic fields +# Los Alamos technical report LA-UR-20-24873 def gen_samples_circle(origin, radius, n_samples): s_radius = .5*radius**2 seq = ghalton.Halton(2)