q_faces_3d.cc File Reference
#include "generic.h"
#include "poisson.h"
#include "meshes/simple_cubic_mesh.h"

Classes

class  FileStem< ELEMENT >
 
class  QFaceTestProblem< ELEMENT >
 QFaceTest problem. More...
 

Namespaces

 MeshDeformation
 Namespace for the functions associated with the mesh deformation.
 

Functions

void MeshDeformation::deform_mesh (Mesh *const &mesh_pt)
 Deform the cubic mesh so that its six sides are all parabolic. More...
 
void MeshDeformation::exact_normal (const unsigned &face, const Vector< double > &x, Vector< double > &n)
 The exact normal vector for each face at global coordinate x. More...
 
int main (int argc, char *argv[])
 Demonstrate how to solve QFaceTest problem. More...
 

Function Documentation

◆ main()

int main ( int argc  ,
char argv[] 
)

Demonstrate how to solve QFaceTest problem.

///////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////

294 {
295  //Choose a resonable resolution
296  unsigned h_power = 2;
297 
298  {
299  cout << "Linear elements " << std::endl;
300  cout << "================" << std::endl << std::endl;
301  //Set up the problem
303  }
304 
305  {
306  cout << "Quadratic elements " << std::endl;
307  cout << "==================" << std::endl << std::endl;
308  //Set up the problem
310  }
311 
312  {
313  cout << "Cubic elements " << std::endl;
314  cout << "================" << std::endl << std::endl;
315  //Set up the problem
317  }
318 
319 }
QFaceTest problem.
Definition: q_faces_2d.cc:141
Constructor for SteadyAxisymAdvectionDiffusion problem
Definition: steady_axisym_advection_diffusion.cc:213

References problem.