43 int main(
int argc,
char *argv[])
55 session = LibUtilities::SessionReader::CreateInstance(argc, argv);
58 graph = SpatialDomains::MeshGraph::Read(session);
61 fld = LibUtilities::FieldIO::CreateDefault(session);
64 string sessionName = session->GetSessionName();
65 string outFile = sessionName +
".fld";
66 unsigned int nSteps = session->GetParameter(
"NumSteps");
67 NekDouble delta_t = session->GetParameter(
"TimeStep");
68 NekDouble epsilon = session->GetParameter(
"epsilon" );
75 unsigned int nq = field->GetNpoints();
77 field->GetCoords(x0,x1,x2);
80 icond = session->GetFunction(
"InitialConditions",
"u");
81 icond->Evaluate(x0, x1, x2, 0.0, field->UpdatePhys());
87 Vmath::Zero(field->GetNcoeffs(), field->UpdateCoeffs(), 1);
90 for (
unsigned int n = 0; n < nSteps; ++n)
92 Vmath::Smul(nq, -1.0/delta_t/epsilon, field->GetPhys(), 1,
93 field->UpdatePhys(), 1);
95 field->HelmSolve(field->GetPhys(), field->UpdateCoeffs(), factors);
97 field->BwdTrans(field->GetCoeffs(), field->UpdatePhys());
101 std::vector<LibUtilities::FieldDefinitionsSharedPtr> FieldDef
102 = field->GetFieldDefinitions();
103 std::vector<std::vector<NekDouble> > FieldData(FieldDef.size());
104 for(
int i = 0; i < FieldDef.size(); ++i)
106 FieldDef[i]->m_fields.push_back(
"u");
107 field->AppendFieldData(FieldDef[i], FieldData[i]);
109 fld->Write(outFile, FieldDef, FieldData);
112 ex_sol = session->GetFunction(
"ExactSolution",0);
120 ex_sol->Evaluate(x0, x1, x2, (nSteps)*delta_t, exact);
124 cout <<
"L inf error: "
125 << field->Linf(field->GetPhys(), exact) << endl;
126 cout <<
"L 2 error: "
127 << field->L2(field->GetPhys(), exact) << endl;
128 cout <<
"H 1 error: "
129 << field->H1(field->GetPhys(), exact) << endl;
136 catch (
const std::runtime_error& e)
140 catch (
const std::string& eStr)
142 cout <<
"Error: " << eStr << endl;
int main(int argc, char *argv[])
General purpose memory allocation routines with the ability to allocate from thread specific memory p...
std::shared_ptr< FieldIO > FieldIOSharedPtr
std::shared_ptr< SessionReader > SessionReaderSharedPtr
std::shared_ptr< Equation > EquationSharedPtr
std::shared_ptr< ContField > ContFieldSharedPtr
std::shared_ptr< MeshGraph > MeshGraphSharedPtr
std::map< ConstFactorType, NekDouble > ConstFactorMap
The above copyright notice and this permission notice shall be included.
void Smul(int n, const T alpha, const T *x, const int incx, T *y, const int incy)
Scalar multiply y = alpha*x.
void Zero(int n, T *x, const int incx)
Zero vector.