-
Notifications
You must be signed in to change notification settings - Fork 5
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
Change primitive variable to log(f) #12
Comments
The initial conditions as mentioned in #10 were setup to evolve using the log(f) implementation. However, the problem of numerical explosion in the electric field/density still persists. This is plot obtained till t = 1.5 after which the solution blows up. |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#10 might be caused due to the distribution function f taking on negative values. One possible way to overcome this is to evolve log(f), which has no bounds instead of f, which is positive.
The equation for F(x, v, t) == log(f) has the same structure as f:
dF/dt = \partial F/\partial t + \partial F / \partial * dx/dt + \partial F / \partial v * dv/dt
where the characteristic dv/dt now depends on f == exp(F)
The text was updated successfully, but these errors were encountered: