|
Computing Integrals
|
Previous Top Next |
| · | Result = LINE_INTEGRAL(<expression>, <boundary name>)
|
|
|
| Computes the integral of <expression> over the named boundary.
|
| Note: BINTEGRAL is a pseudonym for LINE_INTEGRAL.]
|
|
|
| · | Result = VOL_INTEGRAL(<expression>, <region name>)
|
|
|
| Computes the integral of <expression> over the named region.
|
| If <region name> is omitted, the integral is over the entire domain.
|
|
|
| [Note: INTEGRAL is a pseudonym for VOL_INTEGRAL.]
|
| [Note: In 2D Cartesian geometry, AREA_INTEGRAL is also the same as VOL_INTEGRAL, since the domain is assumed to have a unit thickness in Z.]
|
|
|
| DEFINITIONS
|
| { the total flux across 'ring':
|
| (recall that 'ring' is the name of the boundary of 'blob')}
|
| Tflux = LINE_INTEGRAL(NORMAL(-k*grad(Phi)), 'ring')
|
| { the total heat energy in 'blob': }
|
| Tenergy = VOL_INTEGRAL(Phi, 'blob')
|
|
|
| { the total flux across 'ring': }
|
| Tflux = LINE_INTEGRAL(NORMAL(-k*grad(Phi)), 'ring', 'box')
|
| { evaluated on the 'box' side of the boundary }
|
| [Note: Three-dimensional integral forms will be addressed in a later section. A full description of integral operators is presented in the Reference section "Elements | Operators | Integral Operators".]
|
|
|