Creating a temperature field #16194
-
Hi everyone, I want to create a temperature field (the central region is hot) as follows. The temperature field is given by My question is that how can I build this temperature field in MOOSE? Best, Peng |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I would use one of the "Parsed Function" objects in MOOSE. For instance, if your temperature field is an IC, then use a |
Beta Was this translation helpful? Give feedback.
I would use one of the "Parsed Function" objects in MOOSE. For instance, if your temperature field is an IC, then use
FunctionIC
, while if your temperature field is an AuxVariable, then use aParsedAux
AuxKernel. Just specify your function in thefunction
input parameter in either case.a