Lines Matching refs:qref
115 create_h1_basis(c::Ceed, topo::Topology, ncomp, nnodes, nqpts, interp, grad, qref, qweight)
129 - `qref`: Matrix of size `(dim, nqpts)` holding the locations of quadrature points on the
142 qref::AbstractArray{CeedScalar},
148 @assert size(qref) == (dim, nqpts)
154 qref_rowmajor = collect(qref')
173 create_hdiv_basis(c::Ceed, topo::Topology, ncomp, nnodes, nqpts, interp, div, qref, qweight)
187 - `qref`: Matrix of size `(dim, nqpts)` holding the locations of quadrature points on the
200 qref::AbstractArray{CeedScalar},
206 @assert size(qref) == (dim, nqpts)
212 qref_rowmajor = collect(qref')
231 create_hcurl_basis(c::Ceed, topo::Topology, ncomp, nnodes, nqpts, interp, curl, qref, qweight)
245 - `qref`: Matrix of size `(dim, nqpts)` holding the locations of quadrature points on the
258 qref::AbstractArray{CeedScalar},
265 @assert size(qref) == (dim, nqpts)
271 qref_rowmajor = collect(qref')