Skip to content
Snippets Groups Projects
Commit f048e9d4 authored by calpe's avatar calpe
Browse files

Solved bug idkx_dealiasing in spectra.py.

parent 1f9f3190
No related branches found
No related tags found
1 merge request!41Default
......@@ -179,6 +179,6 @@
EA_kx = (dset_spectrum1Dkx_EA[imin_plot : imax_plot + 1]).mean(0)
id_kx_dealiasing = (
np.argmin(abs(kx - self.sim.oper.kxmax_dealiasing)) - 1
np.argmin(abs(kx - (kx.max() * self.sim.oper.coef_dealiasing))) - 1
)
id_ky_dealiasing = (
......@@ -183,6 +183,6 @@
)
id_ky_dealiasing = (
np.argmin(abs(ky - self.sim.oper.kymax_dealiasing)) - 1
np.argmin(abs(ky - (ky.max() * self.sim.oper.coef_dealiasing))) - 1
)
# Remove modes dealiased.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment