My Project
programmer's documentation
Typedefs | Enumerations | Functions
cs_probe.h File Reference
#include "fvm_nodal.h"
#include "cs_base.h"
#include "cs_mesh.h"
#include "cs_mesh_location.h"
Include dependency graph for cs_probe.h:

Go to the source code of this file.

Typedefs

typedef struct _cs_probe_set_t cs_probe_set_t
 
typedef void() cs_probe_set_define_local_t(void *input, cs_lnum_t *n_elts, cs_real_3_t **coords, cs_real_t **s)
 Function pointer to definition of probes based on rank-local points. More...
 

Enumerations

enum  cs_probe_snap_t { CS_PROBE_SNAP_NONE, CS_PROBE_SNAP_ELT_CENTER, CS_PROBE_SNAP_VERTEX }
 

Functions

void cs_probe_finalize (void)
 Free all structures related to a set of probes. More...
 
int cs_probe_get_n_sets (void)
 Retrieve the number of probe sets defined. More...
 
cs_probe_set_tcs_probe_set_get (const char *name)
 Retrieve a cs_probe_set_t structure. More...
 
cs_probe_set_tcs_probe_set_get_by_id (int pset_id)
 Retrieve a cs_probe_set_t structure from its id. More...
 
const char * cs_probe_set_get_name (cs_probe_set_t *pset)
 Retrieve the name related to a cs_probe_set_t structure. More...
 
void cs_probe_set_get_post_info (const cs_probe_set_t *pset, bool *time_varying, bool *on_boundary, bool *on_curve, bool *auto_variables, int *n_writers, int *writer_ids[])
 Retrieve information useful for the postprocessing step. More...
 
const char * cs_probe_set_get_location_criteria (cs_probe_set_t *pset)
 Return the location filter selection criteria string for a given probe set. More...
 
cs_probe_set_tcs_probe_set_create (const char *name)
 Create a new set of probes. More...
 
void cs_probe_set_add_probe (cs_probe_set_t *pset, cs_real_t x, cs_real_t y, cs_real_t z, const char *label)
 Add a new probe to an existing set of probes. More...
 
cs_probe_set_tcs_probe_set_create_from_array (const char *name, int n_probes, const cs_real_3_t *coords, const char **labels)
 Define a new set of probes from an array of coordinates. More...
 
cs_probe_set_tcs_probe_set_create_from_segment (const char *name, int n_probes, const cs_real_t start_coords[3], const cs_real_t end_coords[3])
 Define a new set of probes from the segment spanned by two points. More...
 
cs_probe_set_tcs_probe_set_create_from_local (const char *name, cs_probe_set_define_local_t *p_define_func, void *p_define_input)
 Define a new set of probes from rank-local definition function. More...
 
void cs_probe_set_allow_overwrite (const char *name)
 allow overwriting the definition of a given probe set. More...
 
void cs_probe_set_associate_writers (cs_probe_set_t *pset, int n_writers, const int *writer_ids)
 Associate a list of writers to a probe set. More...
 
void cs_probe_set_auto_var (cs_probe_set_t *pset, bool mode)
 Set to true or false the automatic post-processing of variables. More...
 
void cs_probe_set_snap_mode (cs_probe_set_t *pset, cs_probe_snap_t snap_mode)
 Set snap mode related to the management of a set of probes. More...
 
void cs_probe_set_option (cs_probe_set_t *pset, const char *keyname, const char *keyval)
 Set optional parameters related to the management of a set of probes. More...
 
void cs_probe_set_locate (cs_probe_set_t *pset, const fvm_nodal_t *location_mesh)
 Try to locate each probe and define the coordinate really used for the postprocessing step. More...
 
fvm_nodal_t * cs_probe_set_export_mesh (cs_probe_set_t *pset, const char *mesh_name)
 Define a fvm_nodal_t structure from the set of probes. More...
 
fvm_nodal_t * cs_probe_set_unlocated_export_mesh (cs_probe_set_t *pset, const char *mesh_name)
 Define a fvm_nodal_t structure from the set of unlocated probes. More...
 
void cs_probe_set_dump (const cs_probe_set_t *pset)
 Dump a cs_probe_set_t structure. More...
 
void cs_probe_set_get_members (const cs_probe_set_t *pset, cs_probe_snap_t *snap_mode, int *n_probes, cs_real_3_t *coords[])
 Retrieve the main members of a cs_probe_set_t structure. More...
 
int cs_probe_set_get_n_local (const cs_probe_set_t *pset)
 Return the number probes in the local domain. More...
 
const cs_real_tcs_probe_set_get_curvilinear_abscissa (const cs_probe_set_t *pset)
 Return the list of curvilinear abscissa for the given probe set. More...
 
const cs_lnum_tcs_probe_set_get_elt_ids (const cs_probe_set_t *pset, int mesh_location_id)
 Return the ids of a probe set's local matching elements, relative to a given mesh location. More...
 

Typedef Documentation

◆ cs_probe_set_define_local_t

typedef void() cs_probe_set_define_local_t(void *input, cs_lnum_t *n_elts, cs_real_3_t **coords, cs_real_t **s)

Function pointer to definition of probes based on rank-local points.

If non-empty and not containing all elements, a list of coordinates as well as a list of curvilinear coordinates should be allocated (using BFT_MALLOC) and defined by this function when called. Those list's lifecycle is then managed automatically by the probe set object.

Note: if the input pointer is non-NULL, it must point to valid data when the selection function is called, so that value or structure should not be temporary (i.e. local);

Parameters
[in,out]inputpointer to optional (untyped) value or structure
[out]n_eltsnumber of selected coordinates
[out]coordscoordinates of selected elements.
[out]scurvilinear coordinates of selected elements

◆ cs_probe_set_t

typedef struct _cs_probe_set_t cs_probe_set_t

Enumeration Type Documentation

◆ cs_probe_snap_t

Enumerator
CS_PROBE_SNAP_NONE 

No position change

CS_PROBE_SNAP_ELT_CENTER 

snap to nearest cell or face center

CS_PROBE_SNAP_VERTEX 

snap to nearest vertex

Function Documentation

◆ cs_probe_finalize()

void cs_probe_finalize ( void  )

Free all structures related to a set of probes.

◆ cs_probe_get_n_sets()

int cs_probe_get_n_sets ( void  )

Retrieve the number of probe sets defined.

Returns
the number of probe sets defined

◆ cs_probe_set_add_probe()

void cs_probe_set_add_probe ( cs_probe_set_t pset,
cs_real_t  x,
cs_real_t  y,
cs_real_t  z,
const char *  label 
)

Add a new probe to an existing set of probes.

Parameters
[in,out]psetset of probes
[in]xx coordinate of the point to add
[in]yy coordinate of the point to add
[in]zz coordinate of the point to add
[in]labelNULL or the name of the point (optional)

◆ cs_probe_set_allow_overwrite()

void cs_probe_set_allow_overwrite ( const char *  name)

allow overwriting the definition of a given probe set.

If no a probe set of the given name exists, the operation is ignored.

Parameters
[in]namename of the probe set

◆ cs_probe_set_associate_writers()

void cs_probe_set_associate_writers ( cs_probe_set_t pset,
int  n_writers,
const int *  writer_ids 
)

Associate a list of writers to a probe set.

Parameters
[in,out]psetpointer to a cs_probe_set_t structure to set
[in]n_writersnumber of writers assocuated to this probe set
[in]writer_idslist of writer ids

◆ cs_probe_set_auto_var()

void cs_probe_set_auto_var ( cs_probe_set_t pset,
bool  mode 
)

Set to true or false the automatic post-processing of variables.

Parameters
[in,out]psetpointer to a cs_probe_set_t structure
[in]modetrue or false

◆ cs_probe_set_create()

cs_probe_set_t* cs_probe_set_create ( const char *  name)

Create a new set of probes.

Parameters
[in]namename of the set of probes
Returns
a pointer to a new allocated cs_probe_set_t structure

◆ cs_probe_set_create_from_array()

cs_probe_set_t* cs_probe_set_create_from_array ( const char *  name,
int  n_probes,
const cs_real_3_t coords,
const char **  labels 
)

Define a new set of probes from an array of coordinates.

Parameters
[in]namename of the set of probes
[in]n_probesnumber of probes in coords and labels
[in]coordslist of coordinates related to each probe
[in]labelslist of label related to each probe (optional)
Returns
a pointer to a new allocated cs_probe_set_t structure

◆ cs_probe_set_create_from_local()

cs_probe_set_t* cs_probe_set_create_from_local ( const char *  name,
cs_probe_set_define_local_t p_define_func,
void *  p_define_input 
)

Define a new set of probes from rank-local definition function.

The local definition function given by the p_define_func pointer is called just before locating probes on the parent mesh, so this allows building probe sets based on subsets of the computational mesh.

Note: if the p_define_input pointer is non-NULL, it must point to valid data when the selection function is called, so that value or structure should not be temporary (i.e. local);

Parameters
[in]namename of the set of probes
[in]p_define_funcfunction used for local definition
[in]p_define_inputoptional input for local definition function
Returns
a pointer to a new allocated cs_probe_set_t structure

The local definition function given by the p_define_func pointer is called just before locating probes on the parent mesh, so this allows building probe sets based on subsets of the computational mesh.

Note: if the p_define_input pointer is non-NULL, it must point to valid data when the selection function is called, so that value or structure should not be temporary (i.e. local);

Parameters
[in]namename of the set of probes
[in]p_define_funcfunction used for local definition
[in]p_define_inputoptional input for local definition function
Returns
a pointer to a new allocated cs_probe_set_t structure

◆ cs_probe_set_create_from_segment()

cs_probe_set_t* cs_probe_set_create_from_segment ( const char *  name,
int  n_probes,
const cs_real_t  start_coords[3],
const cs_real_t  end_coords[3] 
)

Define a new set of probes from the segment spanned by two points.

Parameters
[in]namename of the set of probes
[in]n_probesnumber of probes
[in]start_coordscoordinates of the starting point
[in]end_coordscoordinates of the ending point
Returns
a pointer to a new allocated cs_probe_set_t structure

◆ cs_probe_set_dump()

void cs_probe_set_dump ( const cs_probe_set_t pset)

Dump a cs_probe_set_t structure.

Parameters
[in]psetpointer to a cs_probe_set_t structure

◆ cs_probe_set_export_mesh()

fvm_nodal_t* cs_probe_set_export_mesh ( cs_probe_set_t pset,
const char *  mesh_name 
)

Define a fvm_nodal_t structure from the set of probes.

Parameters
[in,out]psetpointer to a cs_probe_set_t structure
[in]mesh_namename of the mesh to export
Returns
a pointer to a fvm_nodal_t structure

◆ cs_probe_set_get()

cs_probe_set_t* cs_probe_set_get ( const char *  name)

Retrieve a cs_probe_set_t structure.

Parameters
[in]namename of the set of probes to find
Returns
a pointer to a cs_probes_t structure or NULL if not found

◆ cs_probe_set_get_by_id()

cs_probe_set_t* cs_probe_set_get_by_id ( int  pset_id)

Retrieve a cs_probe_set_t structure from its id.

Parameters
[in]pset_idid related to the set of probes to find
Returns
a pointer to a cs_probes_t structure or NULL if not found

◆ cs_probe_set_get_curvilinear_abscissa()

const cs_real_t* cs_probe_set_get_curvilinear_abscissa ( const cs_probe_set_t pset)

Return the list of curvilinear abscissa for the given probe set.

Parameters
[in]psetpointer to a cs_probe_set_t structure
Returns
NULL or the pointer to the array of abscissa

◆ cs_probe_set_get_elt_ids()

const cs_lnum_t* cs_probe_set_get_elt_ids ( const cs_probe_set_t pset,
int  mesh_location_id 
)

Return the ids of a probe set's local matching elements, relative to a given mesh location.

The mesh_location id must match one of CS_MESH_LOCATION_CELLS, CS_MESH_LOCATION_BOUNDARY_FACES, or CS_MESH_LOCATION_VERTICES.

Parameters
[in]psetpointer to a cs_probe_set_t structure
[in]mesh_location_idid of parent mesh location

◆ cs_probe_set_get_location_criteria()

const char* cs_probe_set_get_location_criteria ( cs_probe_set_t pset)

Return the location filter selection criteria string for a given probe set.

Parameters
[in]psetpointer to a cs_probe_set_t structure
Returns
selection criteria string, or NULL if no filter defined

◆ cs_probe_set_get_members()

void cs_probe_set_get_members ( const cs_probe_set_t pset,
cs_probe_snap_t snap_mode,
int *  n_probes,
cs_real_3_t coords[] 
)

Retrieve the main members of a cs_probe_set_t structure.

Parameters
[in]psetpointer to a cs_probe_set_t structure
[in,out]snap_modemode of location
[in,out]n_probesnumber of probes
[in,out]coordsprobe coordinates

◆ cs_probe_set_get_n_local()

int cs_probe_set_get_n_local ( const cs_probe_set_t pset)

Return the number probes in the local domain.

Parameters
[in]psetpointer to a cs_probe_set_t structure
Returns
number of probes in local domain

◆ cs_probe_set_get_name()

const char* cs_probe_set_get_name ( cs_probe_set_t pset)

Retrieve the name related to a cs_probe_set_t structure.

Parameters
[in]psetpointer to a cs_probe_set_t structure
Returns
the name of the cs_probes_t structure or NULL if not found

◆ cs_probe_set_get_post_info()

void cs_probe_set_get_post_info ( const cs_probe_set_t pset,
bool *  time_varying,
bool *  on_boundary,
bool *  on_curve,
bool *  auto_variables,
int *  n_writers,
int *  writer_ids[] 
)

Retrieve information useful for the postprocessing step.

Output arguments may be set to NULL if we do not need to query them.

Parameters
[in]psetpointer to a cs_probe_set_t structure
[out]time_varyingtrue if probe locations may change with time
[out]on_boundarytrue if probes are located on boundary
[out]on_curvetrue if the probe set has cuvilinear coordinates
[out]auto_variablestrue if set of variables to output is predefined
[out]n_writersnumber of associated user-defined writers, or -1 if default unchanged
[out]writer_idspointer to a list of writer ids

◆ cs_probe_set_locate()

void cs_probe_set_locate ( cs_probe_set_t pset,
const fvm_nodal_t *  location_mesh 
)

Try to locate each probe and define the coordinate really used for the postprocessing step.

For better performance when using multiple probe sets, a pointer to an existing location mesh may be passed to this function. The caller is responsible for ensuring this mesh matches selection criteria for the probe set.

Parameters
[in,out]psetpointer to a cs_probe_set_t structure
[in]location_meshoptional pointer to mesh relative to which probe set should be located, or NULL

◆ cs_probe_set_option()

void cs_probe_set_option ( cs_probe_set_t pset,
const char *  keyname,
const char *  keyval 
)

Set optional parameters related to the management of a set of probes.

Available option key names accepting true or false:

  • transient_location if true, relocate probes relative to deforming or moving mesh (default: false)
  • boundary if \ c true, locate on boundary mesh; if false, locate on volume mesh (default)

Other options:

  • selection_criteria where keyval is selection criteria string
  • tolerance where keyval is for instance "0.05" (default "0.10")
Parameters
[in,out]psetpointer to a cs_probe_set_t structure to set
[in]keynamename of the keyword related to the parameter to set
[in]keyvalvalue of the keyword to set

◆ cs_probe_set_snap_mode()

void cs_probe_set_snap_mode ( cs_probe_set_t pset,
cs_probe_snap_t  snap_mode 
)

Set snap mode related to the management of a set of probes.

Parameters
[in,out]psetpointer to a cs_probe_set_t structure
[in]snap_modesnap mode to set

◆ cs_probe_set_unlocated_export_mesh()

fvm_nodal_t* cs_probe_set_unlocated_export_mesh ( cs_probe_set_t pset,
const char *  mesh_name 
)

Define a fvm_nodal_t structure from the set of unlocated probes.

Parameters
[in,out]psetpointer to a cs_probe_set_t structure
[in]mesh_namename of the mesh to export
Returns
a pointer to a fvm_nodal_t structure