t_faces_3d.cc File Reference
#include "generic.h"
#include "poisson.h"
#include "meshes/simple_cubic_tet_mesh.h"

Classes

class  FileStem< ELEMENT >
 
class  TFaceTestProblem< ELEMENT >
 TFaceTest problem. More...
 

Namespaces

 MeshDeformation
 Namespace for the functions associated with the mesh deformation.
 
 SingleElement
 Helper namespace for the single element test case.
 

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...
 
void SingleElement::face_normal (const unsigned &face, const Vector< double > &x, Vector< double > &n)
 
int main (int argc, char *argv[])
 Run the test for linear and quadratic TPoisson elements. More...
 

Function Documentation

◆ main()

int main ( int argc  ,
char argv[] 
)

Run the test for linear and quadratic TPoisson elements.

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

521 {
522  //Set a reasonable (not too large) power
523  unsigned h_power = 2;
524 
525  cout << "Linear elements " << std::endl;
526  cout << "================" << std::endl << std::endl;
527 
528  //Loop over all four possible rotations
529  for(unsigned rotate=0;rotate<4;rotate++)
530  {
531  //Set up the problem
532  cout << "Rotation " << rotate << std::endl;
534  }
535 
536 
537  cout << "Quadratic elements " << std::endl;
538  cout << "==================" << std::endl << std::endl;
539 
540  //Loop over all four possible rotations
541  for(unsigned rotate=0;rotate<4;rotate++)
542  {
543  cout << "Rotation " << rotate << std::endl;
544  //Set up the problem
546 
547  }
548 
549 }
TFaceTest problem.
Definition: t_faces_3d.cc:218
Constructor for SteadyAxisymAdvectionDiffusion problem
Definition: steady_axisym_advection_diffusion.cc:213

References problem.