Lines Matching +full:- +full:v
9 …ithub.com/CEED/libCEED/), the low-level API library for efficient high-order discretization method…
11 …"While libCEED's focus is on high-order finite/spectral element method implementations, the approa…
29 "! python -m pip install libceed"
38 …-wise functions describing the physics at the quadrature points (see [the API documentation](https…
42 …"[QFunctionSchematic]: ./img/QFunctionSketch.svg \"Schematic of point-wise QFunctions, defined at …
49 …espectively, of the mass operator in 1D) from the gallery of available built-in QFunctions in libC…
74 "* In the following example, we create and evaluate a built-in identity QFunction."
93 "v = ceed.Vector(q)\n",
94 "v.set_value(0)\n",
97 "outputs = [ v ]\n",
100 "print('v =', v)"
107 … QFunction (for the mass operator in 1D) from the gallery of available built-in QFunctions in libC…
126 " x = 2.*i/(q-1) - 1\n",
128 " w_array[i] = 1 - x*x\n",
138 "v = ceed.Vector(q)\n",
139 "v.set_value(0)\n",
148 "outputs = [ v ]\n",
151 "print('v =', v)"
158 …"* In the following example, we create and evaluate a built-in identity QFunction 3 fields per qua…
179 "v = ceed.Vector(q*fields)\n",
180 "v.set_value(0)\n",
183 "outputs = [ v ]\n",
186 "print('v =', v)"
202 "mimetype": "text/x-python",