Hello all:
    Thank you all for answering!
    I have another question though..
   After applying QProjector::project_to_child function, I need to know which 
point in the real cell a paticular quadrature point correspond to.
   DataSetDescriptor does that however I don't quite understand how to use it.
Date: Sat, 31 Jul 2010 18:02:03 +0200
From: [email protected]
To: [email protected]
Subject: Re: [deal.II] How to get shape function values on arbitrary points 
within a cell?






  
  


Hello,



1.  how to use the QProjector::project_to_child function?

Is it okay to

declare 

QProjector a;

and

Quadrature b=a.project_to_child(xxxx)     to obtain quadrature formula
b?


You do not have to create a QProjector object explicitly. It suffices
to call the last line in the following way: Quadrature b =
QProjector::project_to_child (xxxx) 

2. How can I delete these Quadrature, QProjector and the
additional triangulation ojects after solving the local problem?


The most convient way is to solve the local problem in an own method
solve_local_problem (xxxx). Then all objects, which are created in this
method, will be destroyed after the call of the method is finished.



Best Regards,

Markus
                                          
_______________________________________________
dealii mailing list http://poisson.dealii.org/mailman/listinfo/dealii

Reply via email to