| /libCEED/python/tests/ |
| H A D | test-3-basis.py | 48 b = ceed.BasisTensorH1Lagrange(1, 1, 4, 4, libceed.GAUSS_LOBATTO) 52 b = ceed.BasisTensorH1Lagrange(1, 1, 4, 4, libceed.GAUSS) 70 b = ceed.BasisTensorH1Lagrange(3, 1, 4, 5, libceed.GAUSS_LOBATTO) 106 bxl = ceed.BasisTensorH1Lagrange(dim, dim, 2, Q, libceed.GAUSS_LOBATTO) 107 bul = ceed.BasisTensorH1Lagrange(dim, 1, Q, Q, libceed.GAUSS_LOBATTO) 123 bxg = ceed.BasisTensorH1Lagrange(dim, dim, 2, Q, libceed.GAUSS) 124 bug = ceed.BasisTensorH1Lagrange(dim, 1, Q, Q, libceed.GAUSS) 172 bxl = ceed.BasisTensorH1Lagrange(dim, dim, 2, P, libceed.GAUSS_LOBATTO) 185 bug = ceed.BasisTensorH1Lagrange(dim, 1, P, Q, libceed.GAUSS)
|
| H A D | test-5-operator.py | 79 bx = ceed.BasisTensorH1Lagrange(1, 1, 2, q, libceed.GAUSS) 80 bu = ceed.BasisTensorH1Lagrange(1, 1, p, q, libceed.GAUSS) 168 bx = ceed.BasisTensorH1Lagrange(1, 1, 2, q, libceed.GAUSS) 169 bu = ceed.BasisTensorH1Lagrange(1, 1, p, q, libceed.GAUSS) 258 bx = ceed.BasisTensorH1Lagrange(1, 1, 2, q, libceed.GAUSS) 259 bu = ceed.BasisTensorH1Lagrange(1, 2, p, q, libceed.GAUSS) 355 bx = ceed.BasisTensorH1Lagrange(1, 1, 2, q, libceed.GAUSS) 356 bu = ceed.BasisTensorH1Lagrange(1, 1, p, q, libceed.GAUSS) 436 bx = ceed.BasisTensorH1Lagrange(1, 1, 2, q, libceed.GAUSS) 437 bu = ceed.BasisTensorH1Lagrange(1, 1, p, q, libceed.GAUSS) [all …]
|
| /libCEED/examples/python/ |
| H A D | tutorial-3-basis.ipynb | 92 "b = ceed.BasisTensorH1Lagrange(\n", 116 "basis_viz = ceed.BasisTensorH1Lagrange(1, 1, P, Q_viz, libceed.GAUSS_LOBATTO)\n", 148 "b = ceed.BasisTensorH1Lagrange(1, 1, 4, 4, libceed.GAUSS)\n", 172 "b = ceed.BasisTensorH1Lagrange(3, 1, 4, 5, libceed.GAUSS_LOBATTO)\n", 213 " basis_x_lobatto = ceed.BasisTensorH1Lagrange(dim, dim, 2, Q, libceed.GAUSS_LOBATTO)\n", 214 " basis_u_lobatto = ceed.BasisTensorH1Lagrange(dim, 1, Q, Q, libceed.GAUSS_LOBATTO)\n", 230 " basis_x_gauss = ceed.BasisTensorH1Lagrange(dim, dim, 2, Q, libceed.GAUSS)\n", 231 " basis_u_gauss = ceed.BasisTensorH1Lagrange(dim, 1, Q, Q, libceed.GAUSS)\n", 286 " basis_x_lobatto = ceed.BasisTensorH1Lagrange(dim, dim, 2, P, libceed.GAUSS_LOBATTO)\n", 299 " basis_u_gauss = ceed.BasisTensorH1Lagrange(dim, 1, P, Q, libceed.GAUSS)\n",
|
| H A D | ex3_volume.py | 68 mesh_basis = ceed.BasisTensorH1Lagrange( 72 solution_basis = ceed.BasisTensorH1Lagrange(
|
| H A D | ex1_volume.py | 63 mesh_basis = ceed.BasisTensorH1Lagrange( 67 solution_basis = ceed.BasisTensorH1Lagrange(
|
| H A D | ex2_surface.py | 64 mesh_basis = ceed.BasisTensorH1Lagrange( 68 solution_basis = ceed.BasisTensorH1Lagrange(
|
| H A D | tutorial-5-operator.ipynb | 92 "basis_x = ceed.BasisTensorH1Lagrange(1, 1, 2, q, libceed.GAUSS)\n", 93 "basis_u = ceed.BasisTensorH1Lagrange(1, 1, p, q, libceed.GAUSS)\n", 180 "basis_x = ceed.BasisTensorH1Lagrange(1, 1, 2, q, libceed.GAUSS)\n", 181 "basis_u = ceed.BasisTensorH1Lagrange(1, 1, p, q, libceed.GAUSS)\n",
|
| /libCEED/python/ |
| H A D | __init__.py | 10 from .ceed_basis import Basis, BasisTensorH1, BasisTensorH1Lagrange, BasisH1, BasisHdiv, BasisHcurl
|
| H A D | ceed.py | 16 from .ceed_basis import BasisTensorH1, BasisTensorH1Lagrange, BasisH1, BasisHdiv, BasisHcurl 470 def BasisTensorH1Lagrange(self, dim, ncomp, P, Q, qmode): member in Ceed 486 return BasisTensorH1Lagrange(self, dim, ncomp, P, Q, qmode)
|
| H A D | ceed_basis.py | 281 class BasisTensorH1Lagrange(BasisTensorH1): class
|