Home
last modified time | relevance | path

Searched refs:simplex (Results 1 – 8 of 8) sorted by relevance

/libCEED/examples/petsc/
H A Darea.c67 PetscBool read_mesh = PETSC_FALSE, test_mode = PETSC_FALSE, simplex = PETSC_FALSE; in main() local
88 …cOptionsBool("-simplex", "Use simplices, or tensor product cells", NULL, simplex, &simplex, NULL)); in main()
97 PetscCall(DMPlexCreateSphereMesh(PETSC_COMM_WORLD, topo_dim, simplex, 1., &dm)); in main()
H A Dbpssphere.c54 PetscBool test_mode, benchmark_mode, read_mesh, write_solution, simplex; in main() local
91 simplex = PETSC_FALSE; in main()
92 …cOptionsBool("-simplex", "Use simplices, or tensor product cells", NULL, simplex, &simplex, NULL)); in main()
121 PetscCall(DMPlexCreateSphereMesh(PETSC_COMM_WORLD, topo_dim, simplex, 1., &dm)); in main()
H A Dbps.c199 …if (rp->simplex || rp->bp_choice == CEED_BP13 || rp->bp_choice == CEED_BP24 || rp->bp_choice == CE… in RunWithDM()
401 rp->simplex = PETSC_FALSE; in main()
402 …cOptionsBool("-simplex", "Element topology (default:hex)", NULL, rp->simplex, &rp->simplex, NULL)); in main()
403 if ((bp_choices[0] == CEED_BP5 || bp_choices[0] == CEED_BP6) && (rp->simplex)) { in main()
H A Dmultigrid.c55 PetscBool test_mode, benchmark_mode, read_mesh, write_solution, simplex; in main() local
88 simplex = PETSC_FALSE; in main()
89 …PetscCall(PetscOptionsBool("-simplex", "Element topology (default:hex)", NULL, simplex, &simplex, … in main()
90 if ((bp_choice == CEED_BP5 || bp_choice == CEED_BP6) && (simplex)) { in main()
120 …PetscCall(DMPlexCreateBoxMesh(PETSC_COMM_WORLD, dim, simplex, mesh_elem, NULL, NULL, NULL, PETSC_T… in main()
/libCEED/tests/
H A DREADME.md15     2. CeedBasis simplex basis tests\
25     1. CeedOperator with simplex bases tests\
/libCEED/examples/petsc/include/
H A Dstructs.h87 PetscBool test_mode, read_mesh, user_l_nodes, write_solution, simplex; member
/libCEED/julia/LibCEED.jl/src/
H A DBasis.jl121 - `topo`: [`Topology`](@ref) of element, e.g. hypercube, simplex, etc.
179 - `topo`: [`Topology`](@ref) of element, e.g. hypercube, simplex, etc.
237 - `topo`: [`Topology`](@ref) of element, e.g. hypercube, simplex, etc.
/libCEED/examples/petsc/src/
H A Dpetscutils.c428 …PetscCall(DMPlexCreateBoxMesh(PETSC_COMM_WORLD, rp->dim, rp->simplex, rp->mesh_elem, NULL, NULL, N… in CreateDistributedDM()