| /libCEED/examples/petsc/include/ |
| H A D | bpsproblemdata.h | 30 .num_comp_x = 3, 47 .num_comp_x = 3, 64 .num_comp_x = 3, 81 .num_comp_x = 3, 98 .num_comp_x = 3, 115 .num_comp_x = 3, 132 .num_comp_x = 3, 149 .num_comp_x = 3, 166 .num_comp_x = 3, 183 .num_comp_x = 3,
|
| H A D | sphereproblemdata.h | 28 .num_comp_x = 3, 44 .num_comp_x = 3, 60 .num_comp_x = 3, 76 .num_comp_x = 3, 92 .num_comp_x = 3, 108 .num_comp_x = 3,
|
| H A D | areaproblemdata.h | 29 .num_comp_x = 3, 44 .num_comp_x = 3,
|
| H A D | libceedsetup.h | 18 …Ceed ceed, CeedInt degree, CeedInt topo_dim, CeedInt q_extra, PetscInt num_comp_x, PetscInt num_co… 22 …rOperator(DM dm, Ceed ceed, BPData bp_data, CeedInt topo_dim, PetscInt num_comp_x, PetscInt num_co…
|
| H A D | structs.h | 59 CeedInt num_comp_x, num_comp_u, topo_dim, q_data_size, q_extra; member
|
| /libCEED/examples/fluids/src/ |
| H A D | qdata.c | 21 PetscInt num_comp_x, dim; in QDataGetNumComponents() local 31 PetscCall(PetscSectionGetFieldComponents(section_coord, field, &num_comp_x)); in QDataGetNumComponents() 35 switch (num_comp_x) { in QDataGetNumComponents() 44 …DM of dimension %" PetscInt_FMT " and coordinates with dimension %" PetscInt_FMT, dim, num_comp_x); in QDataGetNumComponents() 53 …DM of dimension %" PetscInt_FMT " and coordinates with dimension %" PetscInt_FMT, dim, num_comp_x); in QDataGetNumComponents() 77 CeedInt num_comp_x; in QDataGet() local 82 PetscCallCeed(ceed, CeedElemRestrictionGetNumComponents(elem_restr_x, &num_comp_x)); in QDataGet() 86 switch (num_comp_x) { in QDataGet() 102 …PetscCallCeed(ceed, CeedQFunctionAddInput(qf_setup, "dx", num_comp_x * (dim - height), CEED_EVAL_G… in QDataGet() 164 CeedInt num_comp_x; in QDataBoundaryGet() local [all …]
|
| H A D | strong_boundary_conditions.c | 17 …CeedInt num_comp_x = problem->dim, num_comp_q = 5, stg_data_size = 1, dim_boundary = 2… in SetupStrongSTG_Ceed() local 47 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_setup, "x", num_comp_x, CEED_EVAL_INTERP)); in SetupStrongSTG_Ceed() 48 …PetscCallCeed(ceed, CeedQFunctionAddInput(qf_setup, "dxdX", num_comp_x * dim_boundary, CEED_EVAL_G… in SetupStrongSTG_Ceed() 50 PetscCallCeed(ceed, CeedQFunctionAddOutput(qf_setup, "x stored", num_comp_x, CEED_EVAL_NONE)); in SetupStrongSTG_Ceed() 55 …PetscCall(SetupStrongStg_PreProcessing(ceed, problem, num_comp_x, stg_data_size, dXdx_size, &qf_st… in SetupStrongSTG_Ceed() 56 …PetscCall(SetupStrongStg_QF(ceed, problem, num_comp_x, num_comp_q, stg_data_size, dXdx_size, &qf_s… in SetupStrongSTG_Ceed() 66 …ictionCollocatedCreate(ceed, dm, domain_label, bc->inflows[i], height, num_comp_x, &elem_restr_x_s… in SetupStrongSTG_Ceed()
|
| H A D | turb_spanstats.c | 155 CeedInt num_comp_x; in GetQuadratureCoords() local 160 PetscCallCeed(ceed, CeedElemRestrictionGetNumComponents(elem_restr_x, &num_comp_x)); in GetQuadratureCoords() 161 …PetscCall(CreateElemRestrColloc_CompMajor(ceed, num_comp_x, basis_x, elem_restr_x, &elem_restr_qx)… in GetQuadratureCoords() 163 *total_nqpnts = l_vec_size / num_comp_x; in GetQuadratureCoords() 166 …PetscCallCeed(ceed, CeedQFunctionCreateIdentity(ceed, num_comp_x, CEED_EVAL_INTERP, CEED_EVAL_NONE… in GetQuadratureCoords() 187 CeedInt num_comp_x, num_comp_stats = user->spanstats.num_comp_stats; in SpanStatsSetupDataCreate() local 197 …llCeed(ceed, CeedElemRestrictionGetNumComponents((*stats_data)->elem_restr_parent_x, &num_comp_x)); in SpanStatsSetupDataCreate() 250 CeedInt num_comp_x; in CreateStatsSF() local 257 PetscCallCeed(ceed, CeedBasisGetNumComponents(ceed_data->basis_x, &num_comp_x)); in CreateStatsSF() 258 …const PetscInt num_comp_sf = num_comp_x - 1; // Number of coord components used in the creation o… in CreateStatsSF() [all …]
|
| H A D | setuplibceed.c | 151 static PetscErrorCode SetupBCQFunctions(Ceed ceed, PetscInt dim_sur, PetscInt num_comp_x, PetscInt … in SetupBCQFunctions() argument 162 PetscCallCeed(ceed, CeedQFunctionAddInput(*qf_apply_bc, "x", num_comp_x, CEED_EVAL_INTERP)); in SetupBCQFunctions() 173 …PetscCallCeed(ceed, CeedQFunctionAddInput(*qf_apply_bc_jacobian, "x", num_comp_x, CEED_EVAL_INTERP… in SetupBCQFunctions() 183 CeedInt height = 1, num_comp_q, num_comp_x; in AddBCSubOperators() local 208 PetscCallCeed(ceed, CeedElemRestrictionGetNumComponents(elem_restr_x, &num_comp_x)); in AddBCSubOperators() 228 …PetscCall(SetupBCQFunctions(ceed, dim_sur, num_comp_x, num_comp_q, q_data_size_sur, jac_data_size_… in AddBCSubOperators() 241 …PetscCall(SetupBCQFunctions(ceed, dim_sur, num_comp_x, num_comp_q, q_data_size_sur, jac_data_size_… in AddBCSubOperators() 254 …PetscCall(SetupBCQFunctions(ceed, dim_sur, num_comp_x, num_comp_q, q_data_size_sur, jac_data_size_… in AddBCSubOperators() 267 …PetscCall(SetupBCQFunctions(ceed, dim_sur, num_comp_x, num_comp_q, q_data_size_sur, jac_data_size_… in AddBCSubOperators() 284 const CeedInt dim = problem->dim, num_comp_x = problem->dim; in SetupLibceed() local [all …]
|
| H A D | velocity_gradient_projection.c | 50 CeedInt num_comp_x, num_comp_input, q_data_size; in VelocityGradientProjectionSetup() local 60 PetscCallCeed(ceed, CeedBasisGetNumComponents(ceed_data->basis_x, &num_comp_x)); in VelocityGradientProjectionSetup() 87 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_rhs_assemble, "x", num_comp_x, CEED_EVAL_INTERP)); in VelocityGradientProjectionSetup()
|
| H A D | differential_filter.c | 21 CeedInt num_comp_q, num_comp_qd, num_comp_x; in DifferentialFilterCreateOperators() local 26 PetscCallCeed(ceed, CeedElemRestrictionGetNumComponents(ceed_data->elem_restr_x, &num_comp_x)); in DifferentialFilterCreateOperators() 52 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_rhs, "x", num_comp_x, CEED_EVAL_INTERP)); in DifferentialFilterCreateOperators() 130 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_lhs, "x", num_comp_x, CEED_EVAL_INTERP)); in DifferentialFilterCreateOperators()
|
| /libCEED/examples/ceed/ |
| H A D | ex1-volume-f.f90 | 258 integer fe_dim, num_comp_x, mesh_degree, sol_degree, num_qpts variable 284 num_comp_x = 3 311 num_comp_x = fe_dim 379 …call ceedbasiscreatetensorh1lagrange(ceed, fe_dim, num_comp_x, mesh_degree + 1, num_qpts, ceed_gau… 388 if (num_comp_x > 1) then 391 if (num_comp_x > 2) then 399 …call buildcartesianrestriction(ceed, fe_dim, num_xyz, mesh_degree, num_comp_x, mesh_size, num_qpts… 418 build_ctx_data(2) = num_comp_x 441 call ceedqfunctionaddinput(qf_build, 'dx', num_comp_x * fe_dim, ceed_eval_grad, err)
|
| H A D | ex2-surface.c | 58 CeedInt num_comp_x = 3; // number of x components in main() local 75 num_comp_x = dim; in main() 130 …CeedBasisCreateTensorH1Lagrange(ceed, dim, num_comp_x, mesh_degree + 1, num_qpts, CEED_GAUSS, &mes… in main() 151 …BuildCartesianRestriction(ceed, dim, num_xyz, mesh_degree, num_comp_x, &mesh_size, num_qpts, &mesh… in main() 189 CeedQFunctionAddInput(qf_build, "dx", num_comp_x * dim, CEED_EVAL_GRAD); in main()
|
| H A D | ex3-volume.c | 57 CeedInt num_comp_x = 3; // number of x components in main() local 74 num_comp_x = dim; in main() 123 …CeedBasisCreateTensorH1Lagrange(ceed, dim, num_comp_x, mesh_degree + 1, num_qpts, CEED_GAUSS, &mes… in main() 143 …BuildCartesianRestriction(ceed, dim, num_xyz, mesh_degree, num_comp_x, &mesh_size, num_qpts, &mesh… in main() 174 CeedQFunctionAddInput(qf_build, "dx", num_comp_x * dim, CEED_EVAL_GRAD); in main()
|
| H A D | ex1-volume.c | 58 CeedInt num_comp_x = 3; // number of x components in main() local 75 num_comp_x = dim; in main() 126 …CeedBasisCreateTensorH1Lagrange(ceed, dim, num_comp_x, mesh_degree + 1, num_qpts, CEED_GAUSS, &mes… in main() 146 …BuildCartesianRestriction(ceed, dim, num_xyz, mesh_degree, num_comp_x, &mesh_size, num_qpts, &mesh… in main() 183 CeedQFunctionAddInput(qf_build, "dx", num_comp_x * dim, CEED_EVAL_GRAD); in main()
|
| /libCEED/examples/fluids/problems/ |
| H A D | stg_shur14.h | 19 extern PetscErrorCode SetupStrongStg_QF(Ceed ceed, ProblemData problem, CeedInt num_comp_x, CeedInt… 22 …e SetupStrongStg_PreProcessing(Ceed ceed, ProblemData problem, CeedInt num_comp_x, CeedInt stg_dat…
|
| H A D | stg_shur14.c | 333 PetscErrorCode SetupStrongStg_QF(Ceed ceed, ProblemData problem, CeedInt num_comp_x, CeedInt num_co… in SetupStrongStg_QF() argument 338 PetscCallCeed(ceed, CeedQFunctionAddInput(*qf_strongbc, "x", num_comp_x, CEED_EVAL_NONE)); in SetupStrongStg_QF() 347 PetscErrorCode SetupStrongStg_PreProcessing(Ceed ceed, ProblemData problem, CeedInt num_comp_x, Cee… in SetupStrongStg_PreProcessing() argument 352 PetscCallCeed(ceed, CeedQFunctionAddInput(*qf_strongbc, "x", num_comp_x, CEED_EVAL_NONE)); in SetupStrongStg_PreProcessing()
|
| /libCEED/examples/solids/src/ |
| H A D | setup-libceed.c | 130 CeedInt num_comp_x, num_comp_e = 1, num_comp_d = 5; in SetupLibceedFineLevel() local 148 num_comp_x = dim; in SetupLibceedFineLevel() 150 …CeedBasisCreateTensorH1Lagrange(ceed, dim, num_comp_x, 2, Q, problem_data.quadrature_mode, &data[f… in SetupLibceedFineLevel() 221 CeedQFunctionAddInput(qf_setup_geo, "dx", num_comp_x * dim, CEED_EVAL_GRAD); in SetupLibceedFineLevel() 301 …CeedBasisCreateTensorH1Lagrange(ceed, dim - height, num_comp_x, 2, Q, problem_data.quadrature_mode… in SetupLibceedFineLevel() 309 CeedQFunctionAddInput(qf_traction, "dx", num_comp_x * (num_comp_x - height), CEED_EVAL_GRAD); in SetupLibceedFineLevel() 352 CeedQFunctionAddInput(qf_setup_force, "x", num_comp_x, CEED_EVAL_INTERP); in SetupLibceedFineLevel() 392 CeedBasisCreateTensorH1Lagrange(ceed, dim, num_comp_x, 2, P, CEED_GAUSS_LOBATTO, &basis_x_true); in SetupLibceedFineLevel() 395 CeedQFunctionAddInput(qf_true, "x", num_comp_x, CEED_EVAL_INTERP); in SetupLibceedFineLevel() 448 CeedBasisCreateTensorH1Lagrange(ceed, dim, num_comp_x, 2, Q, CEED_GAUSS_LOBATTO, &basis_x); in SetupLibceedFineLevel() [all …]
|
| /libCEED/examples/petsc/src/ |
| H A D | libceedsetup.c | 42 …Ceed ceed, CeedInt degree, CeedInt topo_dim, CeedInt q_extra, PetscInt num_comp_x, PetscInt num_co… in SetupLibceedByDegree() argument 92 CeedQFunctionAddInput(qf_setup_geo, "x", num_comp_x, CEED_EVAL_INTERP); in SetupLibceedByDegree() 93 CeedQFunctionAddInput(qf_setup_geo, "dx", num_comp_x * topo_dim, CEED_EVAL_GRAD); in SetupLibceedByDegree() 155 CeedQFunctionAddInput(qf_setup_rhs, "x", num_comp_x, CEED_EVAL_INTERP); in SetupLibceedByDegree() 241 …rOperator(DM dm, Ceed ceed, BPData bp_data, CeedInt topo_dim, PetscInt num_comp_x, PetscInt num_co… in SetupErrorOperator() argument 287 CeedQFunctionAddInput(qf_setup_geo, "x", num_comp_x, CEED_EVAL_INTERP); in SetupErrorOperator() 288 CeedQFunctionAddInput(qf_setup_geo, "dx", num_comp_x * topo_dim, CEED_EVAL_GRAD); in SetupErrorOperator() 307 CeedQFunctionAddInput(qf_setup_rhs, "x", num_comp_x, CEED_EVAL_INTERP); in SetupErrorOperator()
|
| /libCEED/examples/rust-qfunctions/ |
| H A D | ex1-volume.c | 59 CeedInt num_comp_x = 3; // number of x components in main() local 76 num_comp_x = dim; in main() 136 …CeedBasisCreateTensorH1Lagrange(ceed, dim, num_comp_x, mesh_degree + 1, num_qpts, CEED_GAUSS, &mes… in main() 156 …BuildCartesianRestriction(ceed, dim, num_xyz, mesh_degree, num_comp_x, &mesh_size, num_qpts, &mesh… in main() 193 CeedQFunctionAddInput(qf_build, "dx", num_comp_x * dim, CEED_EVAL_GRAD); in main()
|
| /libCEED/examples/petsc/ |
| H A D | area.c | 63 num_comp_x = 3, // number of components of 3D physical coordinates in main() local 168 …PetscCall(SetupLibceedByDegree(dm, ceed, degree, topo_dim, q_extra, num_comp_x, num_comp_u, g_size… in main()
|
| H A D | bpsraw.c | 361 const CeedInt dim = 3, num_comp_x = 3; in main() local 550 …CeedBasisCreateTensorH1Lagrange(ceed, dim, num_comp_x, 2, Q, bp_options[bp_choice].q_mode, &basis_… in main() 564 x_loc = malloc(len * num_comp_x * sizeof x_loc[0]); in main() 574 CeedVectorCreate(ceed, len * num_comp_x, &x_coord); in main() 580 CeedQFunctionAddInput(qf_setup_geo, "x", num_comp_x, CEED_EVAL_INTERP); in main() 581 CeedQFunctionAddInput(qf_setup_geo, "dx", num_comp_x * dim, CEED_EVAL_GRAD); in main() 587 CeedQFunctionAddInput(qf_setup_rhs, "x", num_comp_x, CEED_EVAL_INTERP); in main()
|
| H A D | bpssphere.c | 53 …PetscInt degree = 3, q_extra, l_size, g_size, topo_dim = 2, num_comp_x = 3, num_comp_u… in main() local 175 …PetscCall(SetupLibceedByDegree(dm, ceed, degree, topo_dim, q_extra, num_comp_x, num_comp_u, g_size… in main()
|