Point interpolation type. More...
Data Types | |
| interface | interpolation_init |
| Generic function for interpolation initialization. More... | |
| type | t_interpolation_data |
| Store interpolation data. More... | |
Functions/Subroutines | |
| pure subroutine | interpolation_finalize (data) |
| Deallocate an instance of interpolation_data. | |
| pure subroutine | interpolation_init_nxnynz (data, order, nx, ny, nz) |
| Initialize interpolation_data. | |
Point interpolation type.
| pure subroutine mod_point_interpolation_type::interpolation_init_nxnynz | ( | type(t_interpolation_data), intent(out) | data, |
| integer, intent(in) | order, | ||
| integer, intent(in) | nx, | ||
| integer, intent(in) | ny, | ||
| integer, intent(in) | nz ) |
Initialize interpolation_data.
This routine allocate an interpolation_data instance for order-order interpolations from a mesh of size nx, ny, nz.
| [in] | data | interpolation information. |
| [in] | order | interpolation order. |
| [in] | nx,ny,nz | Cartesian mesh sizes. |