Home
last modified time | relevance | path

Searched refs:pvol_fc (Results 1 – 5 of 5) sorted by relevance

/dports/science/code_saturne/code_saturne-7.1.0/src/cdo/
H A Dcs_cdo_blas.c680 const cs_real_t *w_c2f = cs_cdo_quant->pvol_fc; in cs_cdo_blas_square_norm_pfsp()
706 const cs_real_t *w_c2f = cs_cdo_quant->pvol_fc; in cs_cdo_blas_square_norm_pfvp()
735 const cs_real_t *w_c2f = cs_cdo_quant->pvol_fc; in cs_cdo_blas_dotprod_pfsf()
827 const cs_real_t *w_c2f = cs_cdo_quant->pvol_fc; in cs_cdo_blas_square_norm_pfsf()
921 const cs_real_t *w_c2f = cs_cdo_quant->pvol_fc; in cs_cdo_blas_square_norm_pfsf_diff()
H A Dcs_cdo_quantities.c169 cdoq->pvol_fc = NULL; in _create_cdo_quantities()
485 cs_cdo_quantities_compute_pvol_fc(cdoq, topo->c2f, &(cdoq->pvol_fc)); in _compute_face_based_quantities()
1155 BFT_FREE(cdoq->pvol_fc); in cs_cdo_quantities_free()
1322 cs_real_t *pvol_fc = *p_pvol_fc; in cs_cdo_quantities_compute_pvol_fc() local
1325 if (pvol_fc == NULL) in cs_cdo_quantities_compute_pvol_fc()
1326 BFT_MALLOC(pvol_fc, c2f->idx[n_cells], cs_real_t); in cs_cdo_quantities_compute_pvol_fc()
1329 memset(pvol_fc, 0, c2f->idx[n_cells]*sizeof(cs_real_t)); in cs_cdo_quantities_compute_pvol_fc()
1343 pvol_fc[j] = p_fc; in cs_cdo_quantities_compute_pvol_fc()
1349 *p_pvol_fc = pvol_fc; in cs_cdo_quantities_compute_pvol_fc()
H A Dcs_cdo_quantities.h189 cs_real_t *pvol_fc; /* Portion of volume surrounding a face member
H A Dcs_cdo_local.c1100 if (quant->pvol_fc != NULL) { in cs_cell_mesh_build()
1102 const cs_real_t *_pvol = quant->pvol_fc + c2f_idx[0]; in cs_cell_mesh_build()
1596 assert(quant->pvol_fc != NULL); in cs_face_mesh_build()
1608 fm->pvol = quant->pvol_fc[f_shift]; in cs_face_mesh_build()
H A Dcs_equation.c3095 assert(cdoq->pvol_fc != NULL); /* Sanity check */ in cs_equation_integrate_variable()
3105 int_cell += 0.75*cdoq->pvol_fc[j] * p_f[c2f->ids[j]]; in cs_equation_integrate_variable()