Main Content

Thermal Domain

The thermal domain declaration is shown below.

domain thermal
% Thermal domain

% Copyright 2005-2013 The MathWorks, Inc.

  variables
    T = { 0 , 'K' };
  end

  variables(Balancing = true)
    Q = { 0 , 'J/s' };
  end

end

It contains the following variables:

  • Across variable T (temperature), in kelvin

  • Through variable Q (heat flow), in J/s

To refer to this domain in your custom component declarations, use the following syntax:

foundation.thermal.thermal 

Related Topics