We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0306276 commit 32c4aa0Copy full SHA for 32c4aa0
python/02_pert_pendulum/calc_poincare.py
@@ -11,7 +11,8 @@ def zdot(t, z): #perturbed pendulum
11
ydot=-e*(0.3*y*np.sin(2*t) + 0.7*y*np.sin(3*t)) - om**2*np.sin(x)
12
return np.hstack([xdot,ydot])
13
14
-#%%
+#%% see Burby et al. (2020): Fast neural Poincaré maps for toroidal magnetic fields
15
+# Los Alamos technical report LA-UR-20-24873
16
def gen_samples_circle(origin, radius, n_samples):
17
s_radius = .5*radius**2
18
seq = ghalton.Halton(2)
0 commit comments