On 4/10/19 4:52 AM, Muhammad Mashhood wrote: > > _But the step-26 which I am now concerned about is directly forming rhs > somehow using the function:_ > > RightHandSide<dim> rhs_function; > rhs_function.set_time(time); > VectorTools::create_right_hand_side(dof_handler, > QGauss<dim>(fe.degree+1), > rhs_function, > tmp); > So how can I possibly implement heat flux on cell faces in this example case > step-26 ? If I can, then I guess my problem is solved to learn implementing > Neuman BC for Heat equation in deal.ii. Thank you very much in advance?
You just need to replace the call to this one function by something like the code snippet you had shown above. Best W. -- ------------------------------------------------------------------------ Wolfgang Bangerth email: [email protected] 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 [email protected]. For more options, visit https://groups.google.com/d/optout.
