1 #ifndef __CS_GRADIENT_BOUNDARY_H__
2 #define __CS_GRADIENT_BOUNDARY_H__
#define restrict
Definition: cs_defs.h:139
#define BEGIN_C_DECLS
Definition: cs_defs.h:514
double cs_real_t
Floating-point value.
Definition: cs_defs.h:319
#define END_C_DECLS
Definition: cs_defs.h:515
int cs_lnum_t
local mesh entity id
Definition: cs_defs.h:313
void cs_gradient_boundary_iprime_lsq_s_ani(const cs_mesh_t *m, const cs_mesh_quantities_t *fvq, cs_lnum_t n_faces, const cs_lnum_t *face_ids, double clip_coeff, const cs_real_t *bc_coeff_a, const cs_real_t *bc_coeff_b, const cs_real_t c_weight[][6], const cs_real_t var[], cs_real_t *restrict var_iprime)
Compute the values of a scalar at boundary face I' positions using least-squares interpolation with a...
Definition: cs_gradient_boundary.c:1098
void cs_gradient_boundary_iprime_lsq_v(const cs_mesh_t *m, const cs_mesh_quantities_t *fvq, cs_lnum_t n_faces, const cs_lnum_t *face_ids, cs_halo_type_t halo_type, double clip_coeff, const cs_real_t bc_coeff_a[][3], const cs_real_t bc_coeff_b[][3][3], const cs_real_t c_weight[], const cs_real_t var[][3], cs_real_t var_iprime[restrict][3])
Compute the values of a vector at boundary face I' positions using least-squares interpolation.
Definition: cs_gradient_boundary.c:1364
void cs_gradient_boundary_iprime_lsq_t(const cs_mesh_t *m, const cs_mesh_quantities_t *fvq, cs_lnum_t n_faces, const cs_lnum_t *face_ids, cs_halo_type_t halo_type, double clip_coeff, const cs_real_t bc_coeff_a[][6], const cs_real_t bc_coeff_b[][6][6], const cs_real_t c_weight[], const cs_real_t var[][6], cs_real_t var_iprime[restrict][6])
Compute the values of a symmetric tensor at boundary face I' positions using least-squares interpolat...
Definition: cs_gradient_boundary.c:1431
void cs_gradient_boundary_iprime_lsq_s(const cs_mesh_t *m, const cs_mesh_quantities_t *fvq, cs_lnum_t n_faces, const cs_lnum_t *face_ids, cs_halo_type_t halo_type, double clip_coeff, const cs_real_t *bc_coeff_a, const cs_real_t *bc_coeff_b, const cs_real_t c_weight[], const cs_real_t var[], cs_real_t *restrict var_iprime)
Compute the values of a scalar at boundary face I' positions using least-squares interpolation.
Definition: cs_gradient_boundary.c:821
cs_halo_type_t
Definition: cs_halo.h:56
Definition: cs_mesh_quantities.h:92