Lines Matching refs:ndof
26 …tscSection` is a mapping between the mesh points and a tuple `(ndof, offset)`, where `ndof` is the…
27 …point, its data can be accessed by `array[offset + d]`, where `d` in `[0, ndof)` is the dof to acc…
33 …t be contiguously numbered, the indexes into the array (defined by each `(ndof, offset)` tuple) as…
36 ### Defining the (ndof, offset) tuple
38 Defining the `(ndof, offset)` tuple for each mesh point generally first starts with setting the `nd…
39 This associates a set of degrees of freedom (dof), (a small space $\{e_k\}\ 0 < k < ndof$), with ev…
40 If `ndof` is not set for a mesh point, it is assumed to be 0.
85 …at point: $v[\mathrm{pStart} <= point < \mathrm{pEnd}][0 <= dof < \mathrm{ndof}]$ [^petscsection-f…
91 …rm{pStart} <= point < \mathrm{pEnd}][0 <= field < \mathrm{num\_fields}][0 <= dof < \mathrm{ndof}]$.
93 …field < \mathrm{num\_fields}][\mathrm{pStart} <= point < \mathrm{pEnd}][0 <= dof < \mathrm{ndof}]$.
96 …nd 2 points (from 0 to 2). Let the 0th field have `ndof=1` for each point and the 1st field have `…
142 The value in the array is then accessed with `array[offset + d]`, where `d` in `[0, ndof)` is the d…