dolfin team mailing list archive
-
dolfin team
-
Mailing list archive
-
Message #16736
Re: [Question #92245]: Gradients and SubFunctions
Question #92245 on DOLFIN changed:
https://answers.launchpad.net/dolfin/+question/92245
Murtazo Nazarov posted a new comment:
I guess
*snip*
// extract velocity solution and scale it
dolfin::uint m_e = _e->vector().size();
dolfin::uint m = _v->vector().size();
double* _block = new double[m];
dolfin::uint* _rows = new dolfin::uint[m];
for(dolfin::uint i = 0; i < m; i++)
_rows[i] = m_e + i;
_evp->vector().get(_block, m, _rows);
*snap*
won't work in parallel or? Otherwise there are many similar ways to deal
with the problem.
m
--
You received this question notification because you are a member of
DOLFIN Team, which is an answer contact for DOLFIN.