-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
NodalKernel #3029
Comments
Seems to me kernel can already do this. Any specific applications for this? |
Ummm - you had one the other day... you wanted to do u_dot = u + v That's a fully implicit equation that you want to couple back into your other equations. This comes up all the time in chemistry as well.... |
It's for when you don't have any spacial derivatives but you need to solve it at every point in the domain... |
I see. Keep in mind though the variable could be elemental. |
I'm not seeing why
couldn't simply be coded up as a regular kernel. |
Because Kernels are evaluated at quadrature points and their residuals are You wouldn't be solving for u_dot. You would be solving for a projection of Derek
|
One more use... https://groups.google.com/forum/#!topic/moose-users/cthPGyKPPCE |
Still quite a lot to do, including making Jacobians work and putting in a lot more tests
Still quite a lot to do, including making Jacobians work and putting in a lot more tests
Still quite a lot to do, including making Jacobians work and putting in a lot more tests
It's new System time! I'm sure this will be the last one 😄
We need the equivalent of NodalBC for Kernels. This will enable fully-implicit, fully-coupled, spatially separated ODEs (ie, an ODE at every node). I think @YaqiWang will use this as well as anyone doing chemistry related things....
When we do this we need to make sure we get the Jacobians correct (that's one of the big downfalls of doing this using the Auxiliary system)... and as long as we're doing that we should make the Jacobians work properly for NodalBC....
The text was updated successfully, but these errors were encountered: