Home
last modified time | relevance | path

Searched refs:dm_field (Results 1 – 12 of 12) sorted by relevance

/libCEED/examples/fluids/src/
H A Ddm_utils.c27 PetscErrorCode DMFieldToDSField(DM dm, DMLabel domain_label, PetscInt dm_field, PetscInt *ds_field)… in DMFieldToDSField() argument
38 if (dm_field == fields[i]) { in DMFieldToDSField()
45 …Comm((PetscObject)dm), PETSC_ERR_SUP, "Could not find dm_field %" PetscInt_FMT " in DS", dm_field); in DMFieldToDSField()
64 …e(Ceed ceed, DM dm, DMLabel domain_label, PetscInt label_value, PetscInt height, PetscInt dm_field, in DMPlexCeedElemRestrictionCreate() argument
70 …PetscCall(DMPlexGetLocalOffsets(dm, domain_label, label_value, height, dm_field, &num_elem, &elem_… in DMPlexCeedElemRestrictionCreate()
126 PetscInt num_elem, num_qpts, dm_field = 0; in DMPlexCeedElemRestrictionStridedCreate() local
165 PetscCall(DMFieldToDSField(dm, domain_label, dm_field, &ds_field)); in DMPlexCeedElemRestrictionStridedCreate()
181 PetscCall(DMFieldToDSField(dm, domain_label, dm_field, &ds_field)); in DMPlexCeedElemRestrictionStridedCreate()
356 … dm, DMLabel domain_label, CeedInt label_value, CeedInt height, CeedInt dm_field, CeedBasis *basis… in CreateBasisFromPlex() argument
366 PetscCall(DMFieldToDSField(dm, domain_label, dm_field, &ds_field)); in CreateBasisFromPlex()
H A Dinverse_multiplicity.c27 …y(Ceed ceed, DM dm, DMLabel domain_label, PetscInt label_value, PetscInt height, PetscInt dm_field, in GetInverseMultiplicity() argument
43 …PetscCall(DMPlexCeedElemRestrictionCreate(ceed, dm, domain_label, label_value, height, dm_field, &… in GetInverseMultiplicity()
H A Dstrong_boundary_conditions.c24 PetscInt dm_field = 0, height = 1; in SetupStrongSTG_Ceed() local
36 PetscCall(CreateBasisFromPlex(ceed, dm, label, label_value, height, dm_field, &basis_q_sur)); in SetupStrongSTG_Ceed()
37 …PetscCall(CreateBasisFromPlex(ceed, dm_coord, label, label_value, height, dm_field, &basis_x_sur)); in SetupStrongSTG_Ceed()
61 …edElemRestrictionCreate(ceed, dm, domain_label, bc->inflows[i], height, dm_field, &elem_restr_q_su… in SetupStrongSTG_Ceed()
H A Dvelocity_gradient_projection.c49 PetscInt dim, label_value = 0, height = 0, dm_field = 0; in VelocityGradientProjectionSetup() local
63 …tionCreate(ceed, grad_velo_proj->dm, domain_label, label_value, height, dm_field, &elem_restr_grad… in VelocityGradientProjectionSetup()
65 …isFromPlex(ceed, grad_velo_proj->dm, domain_label, label_value, height, dm_field, &basis_grad_velo… in VelocityGradientProjectionSetup()
H A Ddifferential_filter.c63 for (PetscInt dm_field = 0; dm_field < diff_filter->num_filtered_fields; dm_field++) { in DifferentialFilterCreateOperators() local
69 …emRestrictionCreate(ceed, dm_filter, domain_label, label_value, height, dm_field, &elem_restr_filt… in DifferentialFilterCreateOperators()
70 …PetscCall(CreateBasisFromPlex(ceed, dm_filter, domain_label, label_value, height, dm_field, &basis… in DifferentialFilterCreateOperators()
72 PetscCall(PetscSNPrintf(field_name, PETSC_MAX_PATH_LEN, "v%" PetscInt_FMT, dm_field)); in DifferentialFilterCreateOperators()
H A Dgrid_anisotropy_tensor.c25 PetscInt label_value = 0, height = 0, dm_field = 0; in GridAnisotropyTensorProjectionSetupApply() local
54 …ionCreate(ceed, grid_aniso_proj->dm, domain_label, label_value, height, dm_field, elem_restr_grid_… in GridAnisotropyTensorProjectionSetupApply()
55 …sFromPlex(ceed, grid_aniso_proj->dm, domain_label, label_value, height, dm_field, &basis_grid_anis… in GridAnisotropyTensorProjectionSetupApply()
H A Dsetuplibceed.c101 PetscInt dm_field = 0; in AddBCSubOperator() local
104 …PetscCall(DMPlexCeedElemRestrictionCreate(ceed, dm, domain_label, label_value, height, dm_field, &… in AddBCSubOperator()
301 PetscInt label_value = 0, height = 0, dm_field = 0; in SetupLibceed() local
305 …PetscCall(CreateBasisFromPlex(ceed, dm, domain_label, label_value, height, dm_field, &ceed_data->b… in SetupLibceed()
306 …PetscCall(CreateBasisFromPlex(ceed, dm_coord, domain_label, label_value, height, dm_field, &ceed_d… in SetupLibceed()
H A Dturb_spanstats.c190 PetscInt label_value = 0, height = 0, dm_field = 0; in SpanStatsSetupDataCreate() local
195 …PetscCall(DMPlexCeedElemRestrictionCreate(ceed, dm, domain_label, label_value, height, dm_field, &… in SpanStatsSetupDataCreate()
203 …PetscCall(CreateBasisFromPlex(ceed, dm_coord, domain_label, label_value, height, dm_field, &(*stat… in SpanStatsSetupDataCreate()
204 …PetscCall(CreateBasisFromPlex(ceed, dm, domain_label, label_value, height, dm_field, &(*stats_data… in SpanStatsSetupDataCreate()
/libCEED/examples/petsc/include/
H A Dpetscutils.h26 PetscErrorCode DMFieldToDSField(DM dm, DMLabel domain_label, PetscInt dm_field, PetscInt *ds_fiel…
29 …DM dm, DMLabel domain_label, CeedInt label_value, CeedInt height, CeedInt dm_field, BPData bp_data,
/libCEED/examples/fluids/include/
H A Dbc_definition.h17 PetscInt num_label_values, *label_values, dm_field; member
/libCEED/examples/petsc/src/
H A Dpetscutils.c224 PetscErrorCode DMFieldToDSField(DM dm, DMLabel domain_label, PetscInt dm_field, PetscInt *ds_field)… in DMFieldToDSField() argument
236 if (dm_field == fields[i]) { in DMFieldToDSField()
243 …Comm((PetscObject)dm), PETSC_ERR_SUP, "Could not find dm_field %" PetscInt_FMT " in DS", dm_field); in DMFieldToDSField()
345 …DM dm, DMLabel domain_label, CeedInt label_value, CeedInt height, CeedInt dm_field, BPData bp_data, in CreateBasisFromPlex() argument
356 PetscCall(DMFieldToDSField(dm, domain_label, dm_field, &ds_field)); in CreateBasisFromPlex()
/libCEED/examples/fluids/
H A Dnavierstokes.h278 …lex(Ceed ceed, DM dm, CeedInt height, DMLabel domain_label, CeedInt label_value, PetscInt dm_field,
281 …e(Ceed ceed, DM dm, DMLabel domain_label, PetscInt label_value, PetscInt height, PetscInt dm_field,
290 … dm, DMLabel domain_label, CeedInt label_value, CeedInt height, CeedInt dm_field, CeedBasis *basis…
347 …y(Ceed ceed, DM dm, DMLabel domain_label, PetscInt label_value, PetscInt height, PetscInt dm_field,