Can I solve these coupled differential equations in MOOSE without creating a custom kernel? #24059
-
|
I have solved a single second order differential equation using the ADMatdiffusion and Reaction kernel. Can you assist me on how to solve this problem with the existing moose kernels? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
|
Hello The BCs are Dirichlet and Neumann, you can use off-the-shelf MOOSE BCs for this. You ll want to write a new kernels (start from ADCoupledForce) for the u^2, v^2 and u^2 v^2 terms. The second order space derivatives you can use a Diffusion kernel for the one that is in its own equation. Guillaume |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
Thank you |
Beta Was this translation helpful? Give feedback.


Can I use ADMatDiffusion kernel for the second order space derivatives. I have written a simple code for a problem attached here. Can you please guide me if this is a correct usage or not?