39 #include <boost/core/ignore_unused.hpp>
40 #include <boost/format.hpp>
68 UnsteadySystem::UnsteadySystem(
86 m_session->MatchSolverInfo(
"DIFFUSIONADVANCEMENT",
"Explicit",
88 m_session->MatchSolverInfo(
"ADVECTIONADVANCEMENT",
"Explicit",
90 m_session->MatchSolverInfo(
"REACTIONADVANCEMENT",
"Explicit",
93 m_session->MatchSolverInfo(
"FLAGIMPLICITITSSTATISTICS",
"True",
103 if (
m_session->DefinesSolverInfo(
"TimeIntegrationMethod") ||
138 "Final condition not unique: "
139 "fintime > 0.0 and Nsteps > 0");
142 "Timestep not unique: timestep > 0.0 & CFL > 0.0");
154 "m_CFLEnd >= m_cflSafetyFactor required");
169 x.first,
m_session, shared_from_this(), x.second)));
202 for (i = 0; i < nfields; ++i)
206 nvariables = nfields;
216 for (i = 0; i < nfields; ++i)
230 for (i = 0; i < nvariables; ++i)
246 bool doCheckTime =
false;
249 int restartStep = -1;
263 string abortFile =
"abort";
264 if (
m_session->DefinesSolverInfo(
"CheckAbortFile"))
266 abortFile =
m_session->GetSolverInfo(
"CheckAbortFile");
279 tmp_cflSafetyFactor =
349 m_session->GetComm()->GetSpaceComm()->GetRank() == 0 &&
355 <<
m_session->GetComm()->GetTimeComm()->GetRank()
356 <<
" Steps: " << setw(8) << left << step + 1 <<
" "
357 <<
"Time: " << setw(12) << left <<
m_time;
361 cout <<
"Steps: " << setw(8) << left << step + 1 <<
" "
362 <<
"Time: " << setw(12) << left <<
m_time;
367 cout <<
" Time-step: " << setw(12) << left <<
m_timestep;
371 ss << cpuTime <<
"s";
372 cout <<
" CPU Time: " << setw(8) << left << ss.str() << endl;
373 cpuPrevious = cpuTime;
386 for (i = 0; i < nvariables; ++i)
411 if (
m_comm->GetRank() == 0)
413 cout <<
"Reached Steady State to tolerance "
424 for (i = 0; i < nvariables; ++i)
426 if (
Vmath::Nnan(fields[i].size(), fields[i], 1) > 0)
434 if (
m_session->GetComm()->GetRank() == 0)
436 if (boost::filesystem::exists(abortFile))
438 boost::filesystem::remove(abortFile);
445 m_session->GetComm()->AllReduce(abortFlags,
449 ASSERTL0(!abortFlags[0],
"NaN found during time integration.");
459 totFilterTime += elapsed;
464 m_session->DefinesCmdLineArgument(
"verbose"))
467 s0 << x.first <<
":";
469 s1 << elapsed <<
"s";
471 s2 << elapsed / cpuPrevious * 100 <<
"%";
472 cout <<
"CPU time for filter " << setw(25) << left << s0.str()
473 << setw(12) << left << s1.str() << endl
474 <<
"\t Percentage of time integration: " << setw(10)
475 << left << s2.str() << endl;
484 ss << totFilterTime <<
"s";
485 cout <<
"Total filters CPU Time:\t\t\t " << setw(10) << left
495 vector<bool> transformed(nfields,
false);
496 for (i = 0; i < nfields; i++)
504 transformed[i] =
true;
509 for (i = 0; i < nfields; i++)
535 if (
m_session->GetComm()->GetRank() == 0)
543 if (
m_session->GetSolverInfo(
"Driver") !=
"SteadyState" &&
544 m_session->GetSolverInfo(
"Driver") !=
"Parareal")
546 cout <<
"Time-integration : " << intTime <<
"s" << endl;
551 cout <<
"-------------------------------------------" << endl
555 <<
"-------------------------------------------" << endl;
562 for (i = 0; i < nfields; i++)
575 for (i = 0; i < nvariables; ++i)
619 if (
m_session->GetSolverInfo(
"EQTYPE") ==
620 "SteadyAdvectionDiffusionReaction")
650 outfile.open(
"solution1D.txt");
653 outfile << scientific << setw(17) << setprecision(16) << x[i] <<
" "
654 << solution1D[0][i] << endl;
656 outfile << endl << endl;
662 if (
m_session->DefinesFunction(
"InitialConditions"))
664 for (
int i = 0; i <
m_fields.size(); ++i)
668 vType =
m_session->GetFunctionType(
"InitialConditions",
673 std::string filename =
m_session->GetFunctionFilename(
674 "InitialConditions",
m_session->GetVariable(i));
676 fs::path pfilename(filename);
679 if (fs::is_directory(pfilename))
681 fs::path metafile(
"Info.xml");
682 fs::path fullpath = pfilename / metafile;
695 time = boost::lexical_cast<NekDouble>(iter->second);
701 nchk = boost::lexical_cast<NekDouble>(iter->second);
709 if (
m_session->DefinesCmdLineArgument(
"set-start-time"))
711 time = boost::lexical_cast<NekDouble>(
712 m_session->GetCmdLineArgument<std::string>(
"set-start-time")
715 if (
m_session->DefinesCmdLineArgument(
"set-start-chknumber"))
717 nchk = boost::lexical_cast<int>(
718 m_session->GetCmdLineArgument<std::string>(
"set-start-chknumber"));
721 "Starting time and checkpoint number should be >= 0");
747 boost::ignore_unused(inarray);
754 boost::ignore_unused(step);
760 boost::ignore_unused(step);
768 int phystot =
m_fields[0]->GetTotPoints();
769 int nvel = vel.size();
774 Vmath::Vmul(phystot, vel[0], 1, vel[0], 1, varcoeff, 1);
775 for (
int n = 1; n < nvel; ++n)
777 Vmath::Vvtvp(phystot, vel[n], 1, vel[n], 1, varcoeff, 1, varcoeff, 1);
781 for (
int i = 0; i <
m_fields[0]->GetNumElmts(); ++i)
783 int offset =
m_fields[0]->GetPhys_Offset(i);
784 int nq =
m_fields[0]->GetExp(i)->GetTotPoints();
789 for (
int n = 0; n <
m_fields[0]->GetExp(i)->GetNumBases(); ++n)
791 nmodes = max(nmodes,
m_fields[0]->GetExp(i)->GetBasisNumModes(n));
797 Vmath::Smul(nq, h, varcoeff + offset, 1, tmp = varcoeff + offset, 1);
808 const int nPoints =
m_fields[0]->GetTotPoints();
812 for (
int i = 0; i <
m_fields.size(); ++i)
819 if (
m_comm->GetRank() == 0)
822 m_session->GetSessionName() + std::string(
".resd");
824 m_errFile << setw(26) << left <<
"# Time";
826 m_errFile << setw(26) << left <<
"CPU_Time";
830 for (
int i = 0; i <
m_fields.size(); ++i)
852 const int nFields =
m_fields.size();
867 int stepp = step + 1;
872 for (
int i = 0; i < nFields; ++i)
886 cout <<
"-- Maximum L^2 residual: " << maxL2 << endl;
894 for (
int i = 0; i <
m_fields.size(); ++i)
908 boost::ignore_unused(step);
910 const int nFields =
m_fields.size();
917 for (
int i = 0; i < nFields; ++i)
935 for (
int i = 0; i < nFields; ++i)
937 reference[i] = (reference[i] == 0) ? 1 : reference[i];
938 L2[i] =
sqrt(residual[i] / reference[i]);
946 boost::ignore_unused(time);
948 if (&inarray != &outarray)
950 for (
int i = 0; i < inarray.size(); ++i)
959 "set-start-time",
"",
"Set the starting time of the simulation.");
963 "set-start-chknumber",
"",
964 "Set the starting number of the checkpoint file.");
#define ASSERTL0(condition, msg)
#define NEKERROR(type, msg)
Assert Level 0 – Fundamental assert which is used whether in FULLDEBUG, DEBUG or OPT compilation mode...
static std::shared_ptr< FieldIO > CreateForFile(const LibUtilities::SessionReaderSharedPtr session, const std::string &filename)
Construct a FieldIO object for a given input filename.
tBaseSharedPtr CreateInstance(tKey idKey, tParam... args)
Create an instance of the class referred to by idKey.
static std::string RegisterCmdLineArgument(const std::string &pName, const std::string &pShortName, const std::string &pDescription)
Registers a command-line argument with the session reader.
NekDouble TimePerTest(unsigned int n)
Returns amount of seconds per iteration in a test with n iterations.
A base class for describing how to solve specific equations.
int m_spacedim
Spatial dimension (>= expansion dim).
SOLVER_UTILS_EXPORT bool ParallelInTime()
Check if solver use Parallel-in-Time.
LibUtilities::CommSharedPtr m_comm
Communicator.
NekDouble m_timestep
Time step size.
int m_infosteps
Number of time steps between outputting status information.
NekDouble m_time
Current time of simulation.
Array< OneD, MultiRegions::ExpListSharedPtr > m_fields
Array holding all dependent variables.
NekDouble m_fintime
Finish time of the simulation.
NekDouble m_lastCheckTime
SOLVER_UTILS_EXPORT void Checkpoint_Output(const int n)
Write checkpoint file of m_fields.
NekDouble m_checktime
Time between checkpoints.
SOLVER_UTILS_EXPORT NekDouble GetTimeStep()
virtual SOLVER_UTILS_EXPORT void v_InitObject(bool DeclareFeld=true)
Initialisation object for EquationSystem.
NekDouble m_timestepMax
Time step size.
LibUtilities::SessionReaderSharedPtr m_session
The session reader.
int m_initialStep
Number of the step where the simulation should begin.
enum HomogeneousType m_HomogeneousType
SOLVER_UTILS_EXPORT int GetNpoints()
int m_nchk
Number of checkpoints written so far.
NekDouble m_TimeIncrementFactor
int m_steps
Number of steps to take.
LibUtilities::FieldMetaDataMap m_fieldMetaDataMap
Map to identify relevant solver info to dump in output fields.
SOLVER_UTILS_EXPORT void SetBoundaryConditions(NekDouble time)
Evaluates the boundary conditions at the given time.
virtual SOLVER_UTILS_EXPORT void v_GenerateSummary(SummaryList &l)
Virtual function for generating summary information.
int m_checksteps
Number of steps between checkpoints.
SOLVER_UTILS_EXPORT void SetInitialConditions(NekDouble initialtime=0.0, bool dumpInitialConditions=true, const int domain=0)
Initialise the data in the dependent fields.
SOLVER_UTILS_EXPORT int GetTotPoints()
LibUtilities::TimeIntegrationSchemeOperators m_ode
The time integration scheme operators to use.
NekDouble m_CFLGrowth
CFL growth rate.
bool m_explicitReaction
Indicates if explicit or implicit treatment of reaction is used.
Array< OneD, Array< OneD, NekDouble > > m_previousSolution
Storage for previous solution for steady-state check.
virtual SOLVER_UTILS_EXPORT bool v_UpdateTimeStepCheck()
bool m_CalcPhysicalAV
flag to update artificial viscosity
std::vector< std::pair< std::string, FilterSharedPtr > > m_filters
static std::string cmdSetStartTime
NekDouble m_cflSafetyFactor
CFL safety factor (comprise between 0 to 1).
LibUtilities::TimeIntegrationSchemeSharedPtr m_intScheme
Wrapper to the time integration scheme.
virtual SOLVER_UTILS_EXPORT ~UnsteadySystem()
Destructor.
NekDouble m_filterTimeWarning
Number of time steps between outputting status information.
NekDouble m_steadyStateTol
Tolerance to which steady state should be evaluated at.
int m_abortSteps
Number of steps between checks for abort conditions.
bool m_explicitAdvection
Indicates if explicit or implicit treatment of advection is used.
SOLVER_UTILS_EXPORT NekDouble MaxTimeStepEstimator()
Get the maximum timestep estimator for cfl control.
bool m_explicitDiffusion
Indicates if explicit or implicit treatment of diffusion is used.
virtual SOLVER_UTILS_EXPORT NekDouble v_GetTimeStep(const Array< OneD, const Array< OneD, NekDouble >> &inarray)
Return the timestep to be used for the next step in the time-marching loop.
virtual SOLVER_UTILS_EXPORT bool v_RequireFwdTrans()
virtual SOLVER_UTILS_EXPORT void v_DoInitialise() override
Sets up initial conditions.
bool CheckSteadyState(int step)
Calculate whether the system has reached a steady state by observing residuals to a user-defined tole...
virtual SOLVER_UTILS_EXPORT bool v_PostIntegrate(int step)
NekDouble m_CFLEnd
maximun cfl in cfl growth
SOLVER_UTILS_EXPORT void SVVVarDiffCoeff(const Array< OneD, Array< OneD, NekDouble >> vel, StdRegions::VarCoeffMap &varCoeffMap)
Evaluate the SVV diffusion coefficient according to Moura's paper where it should proportional to h t...
void InitializeSteadyState()
virtual SOLVER_UTILS_EXPORT void v_GenerateSummary(SummaryList &s) override
Print a summary of time stepping parameters.
virtual SOLVER_UTILS_EXPORT void v_SteadyStateResidual(int step, Array< OneD, NekDouble > &L2)
bool m_flagImplicitSolver
virtual SOLVER_UTILS_EXPORT bool v_PreIntegrate(int step)
SOLVER_UTILS_EXPORT void CheckForRestartTime(NekDouble &time, int &nchk)
SOLVER_UTILS_EXPORT void AppendOutput1D(Array< OneD, Array< OneD, NekDouble >> &solution1D)
Print the solution at each solution point in a txt file.
NekDouble m_steadyStateRes
SOLVER_UTILS_EXPORT void SteadyStateResidual(int step, Array< OneD, NekDouble > &L2)
static std::string cmdSetStartChkNum
NekDouble m_steadyStateRes0
std::vector< int > m_intVariables
bool m_flagUpdatePreconMat
virtual SOLVER_UTILS_EXPORT void v_InitObject(bool DeclareField=true) override
Init object for UnsteadySystem class.
int m_steadyStateSteps
Check for steady state at step interval.
int m_filtersInfosteps
Number of time steps between outputting filters information.
SOLVER_UTILS_EXPORT void DoDummyProjection(const Array< OneD, const Array< OneD, NekDouble >> &inarray, Array< OneD, Array< OneD, NekDouble >> &outarray, const NekDouble time)
Perform dummy projection.
bool m_homoInitialFwd
Flag to determine if simulation should start in homogeneous forward transformed state.
virtual SOLVER_UTILS_EXPORT void v_DoSolve() override
Solves an unsteady problem.
bool m_flagImplicitItsStatistics
TimeIntegrationSchemeFactory & GetTimeIntegrationSchemeFactory()
std::shared_ptr< FieldIO > FieldIOSharedPtr
std::string PortablePath(const boost::filesystem::path &path)
create portable path on different platforms for boost::filesystem path
std::shared_ptr< SessionReader > SessionReaderSharedPtr
static FieldMetaDataMap NullFieldMetaDataMap
static const NekDouble kNekZeroTol
std::vector< std::pair< std::string, std::string > > SummaryList
FilterFactory & GetFilterFactory()
void AddSummaryItem(SummaryList &l, const std::string &name, const std::string &value)
Adds a summary item to the summary info list.
std::shared_ptr< MeshGraph > MeshGraphSharedPtr
std::map< StdRegions::VarCoeffType, VarCoeffEntry > VarCoeffMap
The above copyright notice and this permission notice shall be included.
void Vsqrt(int n, const T *x, const int incx, T *y, const int incy)
sqrt y = sqrt(x)
void Vmul(int n, const T *x, const int incx, const T *y, const int incy, T *z, const int incz)
Multiply vector z = x*y.
void Vvtvp(int n, const T *w, const int incw, const T *x, const int incx, const T *y, const int incy, T *z, const int incz)
vvtvp (vector times vector plus vector): z = w*x + y
T Vsum(int n, const T *x, const int incx)
Subtract return sum(x)
void Smul(int n, const T alpha, const T *x, const int incx, T *y, const int incy)
Scalar multiply y = alpha*x.
int Nnan(int n, const T *x, const int incx)
Return number of NaN elements of x.
T Vmax(int n, const T *x, const int incx)
Return the maximum element in x – called vmax to avoid conflict with max.
void Vcopy(int n, const T *x, const int incx, T *y, const int incy)
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.
scalarT< T > sqrt(scalarT< T > in)
std::vector< NekDouble > freeParams