Lines Matching full:libceed
7 "# libCEED for Python examples\n",
9 …ustrate the main feautures of the Python interface for [libCEED](https://github.com/CEED/libCEED/)…
11 …libCEED's focus is on high-order finite/spectral element method implementations, the approach is m…
18 "## Setting up libCEED for Python\n",
20 "Install libCEED for Python by running"
29 "! python -m pip install libceed"
38 …libceed.QFunction` class. In libCEED, QFunctions represent the spatial terms of the point-wise fun…
49 …ectively, of the mass operator in 1D) from the gallery of available built-in QFunctions in libCEED"
58 "import libceed\n",
61 "ceed = libceed.Ceed()\n",
83 "qf = ceed.IdentityQFunction(1, libceed.EVAL_INTERP, libceed.EVAL_INTERP)\n",
92 "u.set_array(u_array, cmode=libceed.USE_POINTER)\n",
107 …nction (for the mass operator in 1D) from the gallery of available built-in QFunctions in libCEED."
133 "j.set_array(j_array, cmode=libceed.USE_POINTER)\n",
135 "w.set_array(w_array, cmode=libceed.USE_POINTER)\n",
137 "u.set_array(u_array, cmode=libceed.USE_POINTER)\n",
169 "qf = ceed.IdentityQFunction(fields, libceed.EVAL_INTERP, libceed.EVAL_INTERP)\n",
178 "u.set_array(u_array, cmode=libceed.USE_POINTER)\n",