|
The SAVE Function |
Top Previous Next |
|
The SAVE function creates a field on the finite element mesh, and saves the values of the argument expression at the nodal points for subsequent interpolation. SAVE builds a continuous representation of the data across the entire domain, and cannot preserve discontinuities in the saved data.
The SAVE function may be used to block ill-behaved functions from differentiation in the derivative computation for Newton's method, or to avoid expensive re-computation of complex functions.
The normal use for SAVE is in the DEFINITIONS section, as in
name = SAVE ( expression )
Note: SAVE() builds a continuous representation of the data across the entire domain, and cannot preserve discontinuities in the fitted data. In some cases, multiplying the data by an appropriate material parameter can result in a continuous function appropriate for saving.
See the FIT() function for a similar function with integral conservation and variable smoothing capabilities.
|