Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ODE integrator for FF streamline produces NaNs #1451

Open
kel85uk opened this issue Mar 5, 2019 · 6 comments
Open

ODE integrator for FF streamline produces NaNs #1451

kel85uk opened this issue Mar 5, 2019 · 6 comments
Labels
bug something broken P3 backlog

Comments

@kel85uk
Copy link

kel85uk commented Mar 5, 2019

While providing a current field to a FF streamline object, I get this error. This error happens even in current plotly version: e53e626 (The last commit I tested the workflow in)

image

The same field when provided to a matplotlib streamplot object produces the expected lines:
image

The only difference which I could see is the ODE integrator being used in matplotlib and plotly. I refer to
https://github.com/matplotlib/matplotlib/blob/master/lib/matplotlib/streamplot.py with matplotlib using Heun's method.

@jonmmease
Copy link
Contributor

Hi @kel85uk, could you add a minimal reproducible example that works in matplotlib but not in plotly? Thanks!

@kel85uk
Copy link
Author

kel85uk commented Mar 7, 2019

Hi @jonmmease, thanks for the response. I have added an example notebook and the accompanying dataset. Any help in this would be much appreciated.

minimum_reproducible_example.zip

@kel85uk
Copy link
Author

kel85uk commented Apr 29, 2019

Hi @jonmmease, I was wondering if there's any update on the issue?

@jonmmease jonmmease added bug something broken and removed question labels Apr 30, 2019
@jonmmease
Copy link
Contributor

Hi @kel85uk, no I don't think anyone has looked at it yet. We're definitely open to help if anyone would like to take a look at https://github.com/plotly/plotly.py/blob/master/plotly/figure_factory/_streamline.py and try to track down the issue.

@Shellloman
Copy link

Shellloman commented May 5, 2022

hi @jonmmease, i have the same issue than @kel85uk so i decided to look further in _streamline.py. It's appear that the issue come from line 207 and 213 where self.value_at return 0. So dt_ds variable is infinite then f and g function return nan.

The best 'quick fix' i found is replacing 'except IndexError:' line 238 by 'except (IndexError, ValueError):'. I know is not the best way to fix the issue, but it's the only one i found working well. (the interesting side effect is that create_streamline handle now the nan value in u and v)

I hope you could add some fix in the next release.

ps : i used the same dataset than @kel85uk

@Shellloman
Copy link

hi @emmanuelle, have you seen my previous message ? Could you tell me if an update is considered ?

@gvwilson gvwilson self-assigned this Jun 13, 2024
@gvwilson gvwilson removed their assignment Aug 2, 2024
@gvwilson gvwilson added P3 backlog and removed figure_factory labels Aug 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug something broken P3 backlog
Projects
None yet
Development

No branches or pull requests

5 participants