Subroutine USER_TINTERP
Calculates an interpolated temperature at the array of points contained in coords, where coords(3,numpoints) contains the X,Y,Z coordinates of a set of points. It returns the corresponding interpolated temperature values in tintp(numpoints) array.
Calling convention:
call user_tinterp(coords, tintp ,numpoints)
| Arguments | Data type | Input/Output | Description |
|---|---|---|---|
coords |
Real array (3,*) | Call | Real array with , , respectively being the X,Y,Z coordinates of point 1. |
tintp |
Double precision array | Return | Double precision array of numpoints values containing the interpolated temperatures at the points coords. |
numpoints |
Integer | Call | Number of points in the coords array. |
