Content-Length: 192577 | pFad | http://github.com/haranjackson/PyPDE/issues/1
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I'm trying to solve the Swift-Hohenbeg model's PDE as such:
l = 3 k_c = 0.5 grid = pde.CartesianGrid([[0, 100], [0, 100]], [100, 100]) field = pde.ScalarField.random_normal(grid, mean=10) storage = pde.MemoryStorage() eq = pde.PDE({"u": f"u -{l}*u**3 -laplace(laplace(u)) -{k_c**4}*u - 2*{k_c**2}*laplace(u)"}) result = eq.solve(field, t_range=100, dt=1e-2, tracker=["progress", storage.tracker(1)]) result.plot()
But for many values of l and k_c, The final result becomes a scalar field filled with NaN.
l
k_c
The current values causes this error. Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Fetched URL: http://github.com/haranjackson/PyPDE/issues/1
Alternative Proxies:
Alternative Proxy
pFad Proxy
pFad v3 Proxy
pFad v4 Proxy
Hi,
I'm trying to solve the Swift-Hohenbeg model's PDE as such:
But for many values of
l
andk_c
, The final result becomes a scalar field filled with NaN.The current values causes this error.
Thanks
The text was updated successfully, but these errors were encountered: