Home
last modified time | relevance | path

Searched refs:topo_dim (Results 1 – 9 of 9) sorted by relevance

/libCEED/examples/petsc/include/
H A Dbpsproblemdata.h31 .topo_dim = 3,
48 .topo_dim = 3,
65 .topo_dim = 3,
82 .topo_dim = 3,
99 .topo_dim = 3,
116 .topo_dim = 3,
133 .topo_dim = 3,
150 .topo_dim = 3,
167 .topo_dim = 3,
184 .topo_dim = 3,
H A Dsphereproblemdata.h29 .topo_dim = 3,
45 .topo_dim = 3,
61 .topo_dim = 3,
77 .topo_dim = 3,
93 .topo_dim = 3,
109 .topo_dim = 3,
H A Dareaproblemdata.h31 .topo_dim = 2,
46 .topo_dim = 2,
H A Dlibceedsetup.h18 PetscErrorCode SetupLibceedByDegree(DM dm, Ceed ceed, CeedInt degree, CeedInt topo_dim, CeedInt q_e…
22 PetscErrorCode SetupErrorOperator(DM dm, Ceed ceed, BPData bp_data, CeedInt topo_dim, PetscInt num_…
H A Dstructs.h59 CeedInt num_comp_x, num_comp_u, topo_dim, q_data_size, q_extra; member
H A Dpetscutils.h23 … dm, PetscInt p_degree, PetscInt q_extra, PetscInt num_comp_u, PetscInt topo_dim, bool enforce_bc);
/libCEED/examples/petsc/
H A Darea.c65 topo_dim = 2, // topological dimension of manifold in main() local
97 PetscCall(DMPlexCreateSphereMesh(PETSC_COMM_WORLD, topo_dim, simplex, 1., &dm)); in main()
111 PetscCall(SetupDMByDegree(dm, degree, q_extra, num_comp_u, topo_dim, false)); in main()
168 …PetscCall(SetupLibceedByDegree(dm, ceed, degree, topo_dim, q_extra, num_comp_x, num_comp_u, g_size… in main()
H A Dbpssphere.c53 …PetscInt degree = 3, q_extra, l_size, g_size, topo_dim = 2, num_comp_x = 3, num_comp_u… in main() local
121 PetscCall(DMPlexCreateSphereMesh(PETSC_COMM_WORLD, topo_dim, simplex, 1., &dm)); in main()
133 PetscCall(SetupDMByDegree(dm, degree, q_extra, num_comp_u, topo_dim, false)); in main()
175 …PetscCall(SetupLibceedByDegree(dm, ceed, degree, topo_dim, q_extra, num_comp_x, num_comp_u, g_size… in main()
/libCEED/examples/petsc/src/
H A Dlibceedsetup.c42 PetscErrorCode SetupLibceedByDegree(DM dm, Ceed ceed, CeedInt degree, CeedInt topo_dim, CeedInt q_e… in SetupLibceedByDegree() argument
93 CeedQFunctionAddInput(qf_setup_geo, "dx", num_comp_x * topo_dim, CEED_EVAL_GRAD); in SetupLibceedByDegree()
109 CeedInt in_scale = bp_data.in_mode == CEED_EVAL_GRAD ? topo_dim : 1; in SetupLibceedByDegree()
110 CeedInt out_scale = bp_data.out_mode == CEED_EVAL_GRAD ? topo_dim : 1; in SetupLibceedByDegree()
115 CeedQFunctionAddInput(qf_apply, "du", num_comp_u * topo_dim, CEED_EVAL_GRAD); in SetupLibceedByDegree()
122 CeedQFunctionAddOutput(qf_apply, "dv", num_comp_u * topo_dim, CEED_EVAL_GRAD); in SetupLibceedByDegree()
241 PetscErrorCode SetupErrorOperator(DM dm, Ceed ceed, BPData bp_data, CeedInt topo_dim, PetscInt num_… in SetupErrorOperator() argument
288 CeedQFunctionAddInput(qf_setup_geo, "dx", num_comp_x * topo_dim, CEED_EVAL_GRAD); in SetupErrorOperator()