pipe.cc File Reference

Classes

class  RefineableAdvectionDiffusionPipeProblem< ELEMENT >
 

Namespaces

 Global_Physical_Variables
 Global variables.
 

Functions

void Global_Physical_Variables::wind_function (const Vector< double > &x, Vector< double > &wind)
 Wind. More...
 
int main ()
 Driver code for 2D AdvectionDiffusion problem. More...
 

Variables

double Global_Physical_Variables::Peclet =200.0
 Peclet number. More...
 
double Global_Physical_Variables::Length =10.0
 Length of the pipe. More...
 
double Global_Physical_Variables::Radius =1.0
 Radius of the pipe. More...
 

Function Documentation

◆ main()

int main ( )

Driver code for 2D AdvectionDiffusion problem.

266 {
267 
268  //Set up the problem
269  //------------------
270 
271  // Create the problem with axisymmetric nine-node refineable elements from the
272  // RefineableQAdvectionDiffusionElement family.
275 
276  // Solve the problem, performing up to 4 adaptive refinements
277  problem.newton_solve(4);
278 
279  //Output the solution
280  problem.doc_solution();
281 
282 } // end of main
Constructor for SteadyAxisymAdvectionDiffusion problem
Definition: steady_axisym_advection_diffusion.cc:213

References problem.