Required Parameters for TMAP8 Nodal Kernels #46
-
Hi, I’m fairly new to TMAP8 and have a few queries regarding the TMAP-8 only syntax, documented at https://mooseframework.inl.gov/TMAP8/syntax/tmap_only.html ReleasingNodalKernel ( Q2) In verification case 1d, the parameter ‘temp’ for this nodal kernel is assigned a constant value of 1000. Is there a way to have the ‘temp’ parameter vary over time? TrappingNodalKernel: I’d really appreciate any support with the above, and happy to provide more context/information if it would help. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@acunningham23 Thank you for your question. Sorry for the delayed response.
You can look at https://github.com/idaholab/TMAP8/blob/devel/src/nodal_kernels/ReleasingNodalKernel.C to see how _alpha_r is being used. Note that in line 25 the value assigned by the user to parameter alpha_r is copied to the variable _alpha_r which is then used elsewhere.
[AuxVariables] [Functions] [AuxKernels] and inside the [release] block you would simply do "temp = temp" instead of "temp = 1000". The above three blocks are setting up a variable 'temp' whose value is being computed by the temp_aux auxkernel according the function temp_bc_func.
Let me know if you have further question. Again, sorry for the delayed response. |
Beta Was this translation helpful? Give feedback.
@acunningham23 Thank you for your question. Sorry for the delayed response.
You can look at https://github.com/idaholab/TMAP8/blob/devel/src/nodal_kernels/ReleasingNodalKernel.C to see how _alpha_r is being used. Note that in line 25 the value assigned by the user to parameter alpha_r is copied to the variable _alpha_r which is then used elsewhere.
[AuxVariables]
[temp]
initial_condition = 300
[]
[]
[Functions]
[temp_bc_func]
type…