Function NOCOND
Returns the conductance number of certain conductance type between two elements.
Calling convention:
condnum = nocond(n1, n2, type)
| Variable name | Data type | Description |
|---|---|---|
| Return value | ||
condnum
|
Integer | The conductance number. |
| Arguments | ||
n1
|
Integer | The input value of external element number of first element. |
n2
|
Integer | The input value of external element number of second element. |
type
|
Integer | The input value of conductance type. For more information, see the following table. |
Type value table
| Type value | Type |
|---|---|
| 0 | Linear (conductive) conductance |
| 1 | Radiative conductance |
| 2 | Follower conductance. Element n2 follows element n1 |
| 3 | Fluid element forced or free convection conductance |
| 4 | Free convection conductance |
| 5 | Fluid flow resistance |
| 6 | One way radiative conductance |
| 7 | One way conductance |
Example:
integer condnum, elem1, elem2
..
C Find free convection conductance between twoelements
C We are using internal numbers and so must
C convert as we call.
C
condnum = nocond(iconv(elem1), iconv(elem2), 4)
