Hi Wolfgang
Using MappingQ(2) solved the problem, thank you!
Jie
--
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.
On 08/20/2018 08:53 PM, Jie Cheng wrote:
template
double BoundaryValues::value(const Point &p,
const unsigned int
component) const
{
double r = p.distance(Point());
if (std::abs(r - Rout) < 1e-6)
{
return 0;
}
el
On 08/20/2018 07:49 AM, Daniel Arndt wrote:
Hence, the answer to your question is "No, the FEValuesExtractors
objects don't carry any information which FiniteElement they belong to.".
In other words, these extractors are just like indices: an index 'i'
doesn't know which array it subscripts.
Chucui,
> I have a simple question: if I define two FESystem:
> [...]
> FESystemfe_1;
> FESystemfe_2;
> [...]
> fe_1 (FE_Q(degree), 1,
> FE_Q(degree), 1),
> fe_2 (FE_RaviartThomas(degree), 1),
> [...]
>
> when I need to use "FEValuesExtractors" separatel
Georgios,
I am working on a combined stokes laplace problem (I also attach the code).
> Essentially I am solving stokes in one part of the domain and laplace in
> another. To this extend, I want my velocity to be both continuous and and
> have continuous first derivatives everywhere in my dom
Dear all,
I am working on a combined stokes laplace problem (I also attach the code).
Essentially I am solving stokes in one part of the domain and laplace in
another. To this extend, I want my velocity to be both continuous and and
have continuous first derivatives everywhere in my domain (