ThermalEquilibrium:

Path: Thermal/ThermalAnalysis

% This function computes the thermal equilibrium for a system
   with conductive and radiative heat exchange.
   
   lT^4 + kT = bq
   
   Contains Built-in Demo which evalutates two nodes connected by a 
   conductor.

   Since version 3.
--------------------------------------------------------------------------
   Form:
   [t, err] = ThermalEquilibrium( d, q, t, nIts, epsilon )
--------------------------------------------------------------------------

   ------
   Inputs
   ------
   d           (:)   System matrices data structure
                     .k   linear term
                     .l   quadratic term
                     .b   input matrix
   q           (:)   Input fluxes
   t           (:)   Node temperatures
   nIts        (1,1) Number of iterations
   epsilon     (1,1) Error

   -------
   Outputs
   -------
   t           (:)   Node temperatures
   err         (:)   Node temperature error

--------------------------------------------------------------------------

Children:

Math: Linear/DupVect

Back to the Thermal Module page