AKISPL
Utility/Data Access SubroutineUses a spline fitting method to return the interpolated value or 1st/2nd derivative of the interpolated value for a Reference_Spline element.
Use
The function can be called by any user-defined subroutine.
Format
- Fortran Calling Syntax
- CALL AKISPL (XVAL, ZVAL, ID, IORD, ARRAY, ERRFLG)
- C/C++ Calling Syntax
- c_akispl (xval, zval, id, iord, array, errflg)
- Python Calling Syntax
- [array, errflg] = py_akispl (xval, zval, id, iord)
- Compose/MATLAB Calling Syntax
- [array, errflg] = m_akispl (xval, zval, id, iord)
Description
AKISPL is a non-smoothing, spline-based interpolation (5th order) that requires a minimum of six points on a curve. It provides good fits to curves where the second derivative is rapidly varying and, hence, it produces good results for the zeroth and first order derivative of the approximated function, but is usually unreliable for the second derivative. AKISPL is faster than CUBSPL or QUISPL and is usually used for force elements based on spring data.
Attributes
- XVAL
- [double]
- ZVAL
- [double]
- ID
- [integer]
- IORD
- The order of the derivative to be returned by the spline function. Only 0, 1, or 2 are valid entities.
Output
- ARRAY
- [double]
- ERRFLG
- [logical]
Example
def REQSUB(id, time, par, npar, iflag):
results = [0.0]*8
results[0] = AKISPL(time,0,100,0)
results[1] = AKISPL(time,0,100,1)
results[2] = AKISPL(time,0,100,2)
return results