How to implement transient equations with auxiliary terms #29694
Unanswered
HyungseonSong-plasma
asked this question in
Q&A General
Replies: 1 comment 4 replies
-
Hello Which numerical method are you using? FE or FV? You can create a TimeKernel derived class that does the n dTdt + T dndt. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Check these boxes if you have followed the posting rules.
Question
Hello, I'd like to develop the kernel with below equation forms.
T,n are variables. My interest is how to implement$\frac{\partial (Tn)}{\partial t}$ . In my understanding, I should use the two kernels modifying TimeDerivative with coupled variables, and kernel1 : $n\frac{\partial (T)}{\partial t}$ kernel2 : $T\frac{\partial (n)}{\partial t}$ .$\frac{\partial (Tn)}{\partial t}$ ?
Are there any solutions for doing one kernel dealing with
Beta Was this translation helpful? Give feedback.
All reactions