Lines Matching +full:setup +full:- +full:qfunctions
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 …documentation](https://libceed.org/en/latest/libCEEDapi.html#finite-element-operator-decomposition…
45 …ute the length of this 1D domain, similar to Ex1-Volume in the [tutorial-6-shell tutorial](./tutor…
63 "num_u = num_elem*(p-1) + 1\n",
69 " x_array[i] = i / (num_x - 1.0)\n",
86 " indices_u[p*i+j] = i*(p-1) + j\n",
95 "# QFunctions\n",
99 "# Setup operator\n",
107 "print('Setup operator: ', op_setup)\n",
117 "# Setup\n",
133 …'surface area' of this 1D domain, similar to Ex2-Surface in the [tutorial-6-shell tutorial](./tuto…
151 "num_u = num_elem*(p-1) + 1\n",
157 " x_array[i] = i / (num_x - 1.0)\n",
174 " indices_u[p*i+j] = i*(p-1) + j\n",
183 "# QFunctions\n",
187 "# Setup operator\n",
195 "print('Setup operator: ', op_setup)\n",
205 "# Setup\n",
213 …" u_array[elem * (p - 1) + point] = (1.0 + 2.0 * elem + points[point])/(2.0 * num_elem)\n…
234 "mimetype": "text/x-python",