43int main(
int argc,
char *argv[])
55 session = LibUtilities::SessionReader::CreateInstance(argc, argv);
58 graph = SpatialDomains::MeshGraphIO::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");
72 session, graph, session->GetVariable(0));
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());
90 for (
unsigned int n = 0; n < nSteps; ++n)
93 field->UpdatePhys(), 1);
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: " <<
field->Linf(
field->GetPhys(), exact)
126 cout <<
"L 2 error: " <<
field->L2(
field->GetPhys(), exact)
128 cout <<
"H 1 error: " <<
field->H1(
field->GetPhys(), exact)
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
StdRegions::ConstFactorMap factors
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.