Searched refs:qpts (Results 1 – 5 of 5) sorted by relevance
| /libCEED/benchmarks/ |
| H A D | postprocess_plot.py | 97 qpts = sel_runs['quadrature_pts'].loc[pl_runs['degree'] == sol_p] variable 98 qpts = qpts.drop_duplicates().sort_values(ascending=False) variable 99 qpts = qpts.reset_index(drop=True) variable 100 print('Degree: %i, quadrature points:' % sol_p, qpts[0]) 106 (pl_runs['quadrature_pts'] == qpts[0])].iterrows()] 122 if len(qpts) == 1: 130 (pl_runs['quadrature_pts'] == qpts[1])].iterrows()]
|
| /libCEED/examples/ceed/ |
| H A D | ex1-volume-f.f90 | 210 real*8, dimension (:), allocatable :: nodes, qpts local 227 allocate (qpts(p)) 228 call ceedlobattoquadrature(p, nodes, qpts, err) 229 deallocate(qpts)
|
| /libCEED/examples/python/ |
| H A D | tutorial-3-basis.ipynb | 154 "qpts, _ = ceed.gauss_quadrature(P)\n", 155 "plt.plot(qpts, 0*qpts, 'ok');"
|
| /libCEED/julia/LibCEED.jl/examples/ |
| H A D | common.jl | 40 elem_qpts::CeedInt = num_qpts^dim # number of qpts per element
|
| H A D | ex1-volume-c.jl | 96 elem_qpts = num_qpts^dim # number of qpts per element
|