Lines Matching refs:elem_restr_u
25 CeedElemRestrictionDestroy(&data->elem_restr_u); in CeedDataDestroy()
49 CeedElemRestriction elem_restr_x, elem_restr_u, elem_restr_u_i, elem_restr_qd_i; in SetupLibceedByDegree() local
67 PetscCall(CreateRestrictionFromPlex(ceed, dm, 0, 0, 0, &elem_restr_u)); in SetupLibceedByDegree()
130 CeedOperatorSetField(op_apply, "u", elem_restr_u, basis_u, CEED_VECTOR_ACTIVE); in SetupLibceedByDegree()
131 CeedOperatorSetField(op_apply, "du", elem_restr_u, basis_u, CEED_VECTOR_ACTIVE); in SetupLibceedByDegree()
133 … CeedOperatorSetField(op_apply, is_interp ? "u" : "du", elem_restr_u, basis_u, CEED_VECTOR_ACTIVE); in SetupLibceedByDegree()
137 CeedOperatorSetField(op_apply, "v", elem_restr_u, basis_u, CEED_VECTOR_ACTIVE); in SetupLibceedByDegree()
138 CeedOperatorSetField(op_apply, "dv", elem_restr_u, basis_u, CEED_VECTOR_ACTIVE); in SetupLibceedByDegree()
140 … CeedOperatorSetField(op_apply, is_interp ? "v" : "dv", elem_restr_u, basis_u, CEED_VECTOR_ACTIVE); in SetupLibceedByDegree()
165 CeedOperatorSetField(op_setup_rhs, "rhs", elem_restr_u, basis_u, CEED_VECTOR_ACTIVE); in SetupLibceedByDegree()
189 data->elem_restr_u = elem_restr_u; in SetupLibceedByDegree()
226 …elCreate(data[level]->op_apply, data[level]->x_ceed, data[level - 1]->elem_restr_u, basis_u, &op_a… in CeedLevelTransferSetup()
247 CeedElemRestriction elem_restr_x, elem_restr_u, elem_restr_u_i, elem_restr_qd_i; in SetupErrorOperator() local
265 PetscCall(CreateRestrictionFromPlex(ceed, dm, 0, 0, 0, &elem_restr_u)); in SetupErrorOperator()
303 CeedElemRestrictionCreateVector(elem_restr_u, &rhs, NULL); in SetupErrorOperator()
317 CeedOperatorSetField(op_setup_rhs, "rhs", elem_restr_u, basis_u, CEED_VECTOR_ACTIVE); in SetupErrorOperator()
340 CeedOperatorSetField(*op_error, "u", elem_restr_u, basis_u, CEED_VECTOR_ACTIVE); in SetupErrorOperator()
343 CeedOperatorSetField(*op_error, "error", elem_restr_u, basis_u, CEED_VECTOR_ACTIVE); in SetupErrorOperator()
358 CeedElemRestrictionDestroy(&elem_restr_u); in SetupErrorOperator()