|
| procedure, pass(self) | init (self) |
| | Init the 1D scheme above a generic Reconstruction scheme.
|
| |
| procedure | place (self, x, coordinates, control_volumes) |
| | Place the index based on given position and coordinates.
|
| |
| procedure | interpolate (self, x, coordinates, values, derivative, control_volumes) |
| | Directly compute the reconstruction at the given position.
|
| |
| procedure, pass(self) | compute_stencil (self, coordinates, derivative, control_volumes) |
| | The stencil weight computation that has to be derived to update the 'stencil'.
|
| |
| procedure(int_point_1d_init), deferred, pass(self) | init (self) |
| | The deferred init/allocation.
|
| |
| procedure | place (self, x, coordinates, control_volumes) |
| | Place the index based on given position and coordinates.
|
| |
| procedure | apply (self, values) |
| | Apply the interpolation to given discrete values.
|
| |
| procedure | interpolate (self, x, coordinates, values, derivative, control_volumes) |
| | Directly compute the interpolation at the given position. The result is the interpolation value.
|
| |
| procedure(int_point_1d_compute_stencil), deferred, pass(self) | compute_stencil (self, coordinates, derivative, control_volumes) |
| | The stencil weight computation that has to be derived to update the 'stencil'.
|
| |