-
Notifications
You must be signed in to change notification settings - Fork 229
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
tests: Add a test-only init for issue 2448 #2465
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #2465 +/- ##
==========================================
- Coverage 87.06% 78.70% -8.37%
==========================================
Files 239 239
Lines 45123 45151 +28
Branches 8428 8430 +2
==========================================
- Hits 39286 35535 -3751
- Misses 5102 8825 +3723
- Partials 735 791 +56 ☔ View full report in Codecov by Sentry. |
|
||
# First order elastic-like dependencies equations | ||
pde_v = v.dt - (tau.dx) | ||
pde_tau = (tau.dt - ((v.forward).dx)) |
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.
Nitpick: You don't need all these brackets right?
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.
incorporated in #2477
pde_v = v.dt - (tau.dx) | ||
pde_tau = (tau.dt - ((v.forward).dx)) | ||
|
||
u_v = Eq(v.forward, solve(pde_v, v.forward)) |
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.
Does it work with just Eq(v.forward, tau.dx)
and Eq(tau.forward, v.forward.dx)
?
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.
aa I will have to try
Closing in favor of #2477 |
As discussed in the weekly meeting 24th of Sept.
#2448