Skip to content

Discrepancy in analytic solution #16979

Discussion options

You must be logged in to vote

Your radiation BC is wrong. I modified your input and it works:

[Mesh]
  type = FileMesh
  file = '../mesh/reactor.e'
[]

[Variables]
  [temp]
  []
[]

[AuxVariables]
  [temp_in_C]
  []
  [radiation_flux]
  []
[]

[Kernels]
  [heat]
    type = HeatConduction
    variable = temp
  []
[]

[AuxKernels]
  [K_to_C]
    type = ParsedAux
    variable = 'temp_in_C'
    function = 'temp-273.15'
    args = 'temp'
  []
  [radiation]
    type = ParsedAux
    variable = radiation_flux
    args = 'temp'
    function = 'sigma*epsilon*(start_t^4 - temp^4)'
    constant_names = 'sigma epsilon start_t'
    constant_expressions = '5.73e-8 0.6 773.15'
  []
[]

[BCs]
  [abcd]
    type = CoupledConvectiveHeatF…

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@makeclean
Comment options

@hugary1995
Comment options

Answer selected by aeslaughter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants