Memosa-FVM  0.2
PC.cpp File Reference
#include "PC.h"
Include dependency graph for PC.cpp:

Go to the source code of this file.

Functions

PCSet * createPCSet (const int order, const int dim)
 

Function Documentation

PCSet* createPCSet ( const int  order,
const int  dim 
)

Definition at line 9 of file PC.cpp.

10 {
11  PCSet *pc = new PCSet(order,dim,"HG");
12 
13  cout << "The number of PC terms in an expansion is "
14  << pc->GetNumberPCTerms() << endl;
15 
16 
17  pc->SetTaylorTolerance(1.e-15);
18  return pc;
19 }