Home
last modified time | relevance | path

Searched refs:basis_to (Results 1 – 4 of 4) sorted by relevance

/libCEED/tests/
H A Dt319-basis.c118 CeedBasis basis_x, basis_from, basis_to, basis_project; in main() local
149 CeedBasisCreateTensorH1Lagrange(ceed, dim, 1, p_to, q, CEED_GAUSS, &basis_to); in main()
150 CeedBasisCreateProjection(basis_from, basis_to, &basis_project); in main()
169 CeedBasisGetTopology(basis_to, &topo); in main()
170 CeedBasisGetNumComponents(basis_to, &num_comp); in main()
171 CeedBasisGetNumNodes(basis_to, &num_nodes); in main()
172 CeedBasisGetNumQuadraturePoints(basis_to, &num_qpts); in main()
173 CeedBasisGetInterp(basis_to, &interp); in main()
174 CeedBasisGetGrad(basis_to, &grad); in main()
185 CeedBasisCreateProjection(basis_from_nontensor, basis_to, &basis_project); in main()
[all …]
/libCEED/interface/
H A Dceed-basis.c226 static int CeedBasisCreateProjectionMatrices(CeedBasis basis_from, CeedBasis basis_to, CeedScalar *… in CeedBasisCreateProjectionMatrices() argument
231 CeedCall(CeedBasisGetNumQuadraturePoints(basis_to, &Q_to)); in CeedBasisCreateProjectionMatrices()
233 CeedCheck(Q_to == Q_from, CeedBasisReturnCeed(basis_to), CEED_ERROR_DIMENSION, in CeedBasisCreateProjectionMatrices()
243 CeedCall(CeedBasisIsTensor(basis_to, &is_tensor_to)); in CeedBasisCreateProjectionMatrices()
248 CeedCall(CeedBasisGetNumNodes1D(basis_to, &P_to)); in CeedBasisCreateProjectionMatrices()
252 CeedCall(CeedBasisGetNumNodes(basis_to, &P_to)); in CeedBasisCreateProjectionMatrices()
259 CeedCall(CeedBasisGetFESpace(basis_to, &fe_space_to)); in CeedBasisCreateProjectionMatrices()
261 CeedCheck(fe_space_to == fe_space_from, CeedBasisReturnCeed(basis_to), CEED_ERROR_MINOR, in CeedBasisCreateProjectionMatrices()
273 CeedCall(CeedBasisGetInterp1D(basis_to, &interp_to_source)); in CeedBasisCreateProjectionMatrices()
277 CeedCall(CeedBasisGetInterp(basis_to, &interp_to_source)); in CeedBasisCreateProjectionMatrices()
[all …]
/libCEED/include/ceed/
H A Dceed.h329 CEED_EXTERN int CeedBasisCreateProjection(CeedBasis basis_from, CeedBasis basis_to, CeedBasis *basi…
/libCEED/julia/LibCEED.jl/src/generated/
H A Dlibceed_bindings.jl423 function CeedBasisCreateProjection(basis_from, basis_to, basis_project) argument
424 …ction, libceed), Cint, (CeedBasis, CeedBasis, Ptr{CeedBasis}), basis_from, basis_to, basis_project)