14 #include "Thyra_VectorStdOps.hpp"
16 #include "Tempus_IntegratorBasic.hpp"
20 #include "../TestModels/SinCosModel.hpp"
21 #include "../TestModels/VanDerPolModel.hpp"
22 #include "../TestUtils/Tempus_ConvergenceTestUtils.hpp"
27 namespace Tempus_Test {
29 using Teuchos::getParametersFromXmlFile;
32 using Teuchos::sublist;
42 std::vector<double> StepSize;
43 std::vector<double> ErrorNorm;
44 const int nTimeStepSizes = 7;
47 for (
int n = 0; n < nTimeStepSizes; n++) {
50 getParametersFromXmlFile(
"Tempus_PhysicsState_SinCos.xml");
68 .
set(
"Initial Time Step", dt);
70 Tempus::createIntegratorBasic<double>(pl, model);
76 integrator->setStepper(physicsStepper);
77 order = integrator->getStepper()->getOrder();
84 model->getNominalValues().get_x()->clone_v();
85 integrator->initializeSolutionHistory(0.0, x0);
91 integrator->getSolutionHistory()->getCurrentState()->setPhysicsState(pSC);
94 bool integratorStatus = integrator->advanceTime();
99 integrator->getSolutionHistory()->getCurrentState()->getPhysicsState();
106 double time = integrator->getTime();
107 double timeFinal = pl->sublist(
"Demo Integrator")
108 .sublist(
"Time Step Control")
109 .
get<
double>(
"Final Time");
115 model->getExactSolution(time).get_x();
119 std::ofstream ftmp(
"Tempus_ForwardEuler_SinCos.dat");
121 integrator->getSolutionHistory();
123 for (
int i = 0; i < solutionHistory->getNumStates(); i++) {
125 double time_i = solutionState->getTime();
127 x_exact_plot = model->getExactSolution(time_i).get_x();
128 ftmp << time_i <<
" " << Thyra::get_ele(*(x_plot), 0) <<
" "
129 << Thyra::get_ele(*(x_plot), 1) <<
" "
130 << Thyra::get_ele(*(x_exact_plot), 0) <<
" "
131 << Thyra::get_ele(*(x_exact_plot), 1) << std::endl;
138 Thyra::V_StVpStV(xdiff.
ptr(), 1.0, *x_exact, -1.0, *(x));
139 StepSize.push_back(dt);
140 const double L2norm = Thyra::norm_2(*xdiff);
141 ErrorNorm.push_back(L2norm);
145 double slope = computeLinearRegressionLogLog<double>(StepSize, ErrorNorm);
146 out <<
" Stepper = ForwardEuler" << std::endl;
147 out <<
" =========================" << std::endl;
148 out <<
" Expected order: " << order << std::endl;
149 out <<
" Observed order: " << slope << std::endl;
150 out <<
" =========================" << std::endl;
154 std::ofstream ftmp(
"Tempus_ForwardEuler_SinCos-Error.dat");
155 double error0 = 0.8 * ErrorNorm[0];
156 for (
int n = 0; n < nTimeStepSizes; n++) {
157 ftmp << StepSize[n] <<
" " << ErrorNorm[n] <<
" "
158 << error0 * (pow(StepSize[n] / StepSize[0], order)) << std::endl;
This is a Forward Euler time stepper to test the PhysicsState.
#define TEST_FLOATING_EQUALITY(v1, v2, tol)
Sine-Cosine model problem from Rythmos. This is a canonical Sine-Cosine differential equation with a...
ParameterList & set(std::string const &name, T &&value, std::string const &docString="", RCP< const ParameterEntryValidator > const &validator=null)
TEUCHOS_UNIT_TEST(BackwardEuler, SinCos_ASA)
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
static void summarize(Ptr< const Comm< int > > comm, std::ostream &out=std::cout, const bool alwaysWriteLocal=false, const bool writeGlobalStats=true, const bool writeZeroTimers=true, const ECounterSetOp setOp=Intersection, const std::string &filter="", const bool ignoreZeroTimers=false)
SolutionHistory is basically a container of SolutionStates. SolutionHistory maintains a collection of...
PhysicsStateCounter is a simple PhysicsState that counts steps.
ParameterList & sublist(const std::string &name, bool mustAlreadyExist=false, const std::string &docString="")
#define TEST_EQUALITY(v1, v2)
Solution state for integrators and steppers.