On 02/08/2017 12:35 PM, Jaekwang Kim wrote:
               */_local_rhs(i) += fe_values.shape_value(i,q) *_/*

*/_                                rhs_values[q] *_/*

*/_                                fe_values.JxW(q);_/*


rhs_values[q] is a Vector<double>. You need to say which component of it you want to multiply with. (Hint: The correct component is fe.system_to_component_index(i).first).

Best
 W.

--
------------------------------------------------------------------------
Wolfgang Bangerth          email:                 bange...@colostate.edu
                           www: http://www.math.colostate.edu/~bangerth/

--
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see 
https://groups.google.com/d/forum/dealii?hl=en
--- You received this message because you are subscribed to the Google Groups "deal.II User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dealii+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to