std::cout<<"\tWarning: You forgot to set the dielectric permittivity of the material for the domain '"<<domainName<<"' in the .geo file and it thus has been fixed to the dielectric permittivity of the vacuum: "<<epsilon<<" [F/m].\n";
#pragma omp parallel for schedule(guided)
for(size_ti=0;i<elementVector.size();i++)
{
// Stores the unknown value (potential or electric field) in the appropriate elements.
if(i<nbDirichletElements)
elementVector[i].bcValue[1]=x(i);
else
elementVector[i].bcValue[0]=x(i);
// Computes the electrostatic pressure and fills the map.