Sampler. Sample a file on a set of points.
More...
|
| procedure | sample_field_cell (sampler, field, samples) |
| | Sample a field defined on cells.
|
| |
| procedure | sample_field_face_u (sampler, field, samples) |
| | Sample a field defined on faces in direction _u.
|
| |
| procedure | sample_field_face_v (sampler, field, samples) |
| | Sample a field defined on faces in direction _v.
|
| |
| procedure | sample_field_face_w (sampler, field, samples) |
| | Sample a field defined on faces in direction _w.
|
| |
|
|
double precision, dimension(:,:), allocatable | point |
| | List of sample points.
|
| |
|
logical, dimension(:), allocatable | is_inside |
| | List of samples inside the current MPI domain.
|
| |
|
integer, dimension(:,:), allocatable | cell |
| | Cell list.
|
| |
|
integer, dimension(:,:), allocatable | face_u |
| | Face list u.
|
| |
|
integer, dimension(:,:), allocatable | face_v |
| | Face list v.
|
| |
|
integer, dimension(:,:), allocatable | face_w |
| | Face list w.
|
| |
|
integer | nb_points = 0 |
| | Number of points.
|
| |
Sampler. Sample a file on a set of points.
◆ sample_field_cell()
| procedure type_sampler::t_sampler::sample_field_cell |
( |
class(t_sampler), intent(in) | sampler, |
|
|
double precision, dimension(:,:,:), intent(in) | field, |
|
|
double precision, dimension(:), intent(out) | samples ) |
Sample a field defined on cells.
- Parameters
-
| [in] | sampler | Sampler |
| [in] | field | Field defined on cells |
| [out] | samples | Array of samples |
◆ sample_field_face_u()
| procedure type_sampler::t_sampler::sample_field_face_u |
( |
class(t_sampler), intent(in) | sampler, |
|
|
type(t_face_field), intent(in) | field, |
|
|
double precision, dimension(:), intent(out) | samples ) |
Sample a field defined on faces in direction _u.
- Parameters
-
| [in] | sampler | Sampler |
| [in] | field | Field defined on faces |
| [out] | samples | Array of samples |
◆ sample_field_face_v()
| procedure type_sampler::t_sampler::sample_field_face_v |
( |
class(t_sampler), intent(in) | sampler, |
|
|
type(t_face_field), intent(in) | field, |
|
|
double precision, dimension(:), intent(out) | samples ) |
Sample a field defined on faces in direction _v.
- Parameters
-
| [in] | sampler | Sampler |
| [in] | field | Field defined on faces |
| [out] | samples | Array of samples |
◆ sample_field_face_w()
| procedure type_sampler::t_sampler::sample_field_face_w |
( |
class(t_sampler), intent(in) | sampler, |
|
|
type(t_face_field), intent(in) | field, |
|
|
double precision, dimension(:), intent(out) | samples ) |
Sample a field defined on faces in direction _w.
- Parameters
-
| [in] | sampler | Sampler |
| [in] | field | Field defined on faces |
| [out] | samples | Array of samples |
The documentation for this type was generated from the following file:
- src/lib/io/probes/type_sampler.f90