50{
51 if (argc != 2)
52 {
53 fprintf(stderr, "Usage: ./NonLinearEnergy file.xml \n");
54 fprintf(stderr, "\t Method will read intiial conditions section of "
55 ".xml file for input \n");
56 exit(1);
57 }
58
61 string vDriverModule;
63 try
64 {
65
66 session = LibUtilities::SessionReader::CreateInstance(argc, argv);
67
68
69 graph = SpatialDomains::MeshGraphIO::Read(session);
70
71
72 session->LoadSolverInfo("Driver", vDriverModule, "Standard");
74
77
80 IncNav->UpdateFields();
81
82 int i;
83 int nConvectiveFields = IncNav->GetNConvectiveFields();
84 int nphys = fields[0]->GetTotPoints();
87
88 for (i = 0; i < nConvectiveFields; ++i)
89 {
90 VelFields[i] = fields[i]->UpdatePhys();
92 }
93
94 std::shared_ptr<NavierStokesAdvection>
A =
95 std::dynamic_pointer_cast<NavierStokesAdvection>(
96 IncNav->GetAdvObject());
97
99 {
100 cout << "Must use non-linear Navier-Stokes advection" << endl;
101 exit(-1);
102 }
103
104
105 A->Advect(nConvectiveFields, fields, VelFields, VelFields, NonLinear,
106 0.0);
107
108
109 for (i = 0; i < nConvectiveFields; ++i)
110 {
111 fields[i]->FwdTransLocalElmt(NonLinear[i],
112 fields[i]->UpdateCoeffs());
113
114
115 for (int n = 0; n < fields[i]->GetExpSize(); ++n)
116 {
117 int offset = fields[i]->GetCoeff_Offset(n);
118 int ncoeffs = fields[i]->GetExp(n)->GetNcoeffs();
120
121 fields[i]->GetExp(n)->ReduceOrderCoeffs(
122 fields[i]->GetExp(n)->GetBasisNumModes(0) - 1,
123 fields[i]->GetCoeffs() + offset, coeffsred);
124
125 Vmath::Vsub(ncoeffs, fields[i]->GetCoeffs() + offset, 1,
126 coeffsred, 1,
127 tmp = fields[i]->UpdateCoeffs() + offset, 1);
128 }
129
130
131 string name =
"NL_TopMode_" + session->GetVariable(i);
132 session->SetVariable(i,
name.c_str());
133 }
134
135
136 std::string outname = IncNav->GetSessionName();
137
138 outname += "_NonLinear_Energy";
139 IncNav->ResetSessionName(outname);
140 IncNav->Output();
141 }
142 catch (const std::runtime_error &)
143 {
144 return 1;
145 }
146 catch (const std::string &eStr)
147 {
148 cout << "Error: " << eStr << endl;
149 }
150
151 return 0;
152}
This class is the base class for Navier Stokes problems.
tBaseSharedPtr CreateInstance(tKey idKey, tParam... args)
Create an instance of the class referred to by idKey.
SOLVER_UTILS_EXPORT void SetInitialConditions(NekDouble initialtime=0.0, bool dumpInitialConditions=true, const int domain=0)
Initialise the data in the dependent fields.
std::shared_ptr< SessionReader > SessionReaderSharedPtr
std::shared_ptr< Driver > DriverSharedPtr
A shared pointer to a Driver object.
DriverFactory & GetDriverFactory()
std::shared_ptr< EquationSystem > EquationSystemSharedPtr
A shared pointer to an EquationSystem object.
std::shared_ptr< MeshGraph > MeshGraphSharedPtr
std::shared_ptr< IncNavierStokes > IncNavierStokesSharedPtr
void Vsub(int n, const T *x, const int incx, const T *y, const int incy, T *z, const int incz)
Subtract vector z = x-y.