-
Notifications
You must be signed in to change notification settings - Fork 0
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
Martin/first pass #1
base: main
Are you sure you want to change the base?
Conversation
jax_ib/base/time_stepping.py
Outdated
u[i] = tree_math.Vector(u_temp) | ||
k[i] = explicit_terms(u[i]) | ||
|
||
u_star = u0 + dt * sum(b[j] * k[j] for j in range(num_steps) if b[j])-dP # this operation somehow resets the time stamp of the boundary condition, so we need to reset it |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is dP
not multiplied by dt
here?
Hi @hashimmg! This is a first pass of me through the code, making some minor modifications to test my understanding and shortening/cleaning pieces of the code base. Could you take a look at let me know if this introduced any major issues? You don't need to go through all the changes, the main ones are probably in time_stepping.py and IBM_Force.py. |
No description provided.