10#include "Teuchos_UnitTestHarness.hpp"
11#include "Teuchos_XMLParameterListHelpers.hpp"
12#include "Teuchos_TimeMonitor.hpp"
14#include "Tempus_config.hpp"
15#include "Tempus_IntegratorPseudoTransientForwardSensitivity.hpp"
16#include "Tempus_IntegratorPseudoTransientAdjointSensitivity.hpp"
18#include "Thyra_VectorStdOps.hpp"
19#include "Thyra_MultiVectorStdOps.hpp"
21#include "../TestModels/SteadyQuadraticModel.hpp"
23#include "Thyra_DefaultMultiVectorProductVector.hpp"
24#include "Thyra_DefaultProductVector.hpp"
31using Teuchos::getParametersFromXmlFile;
32using Teuchos::ParameterList;
34using Teuchos::sublist;
39 Teuchos::FancyOStream &out,
bool &success)
42 RCP<ParameterList> pList =
43 getParametersFromXmlFile(
"Tempus_ExplicitRK_SteadyQuadratic.xml");
46 RCP<ParameterList> scm_pl = sublist(pList,
"SteadyQuadraticModel",
true);
47 scm_pl->set(
"Use DfDp as Tangent", use_dfdp_as_tangent);
48 RCP<SteadyQuadraticModel<double> > model =
49 Teuchos::rcp(
new SteadyQuadraticModel<double>(scm_pl));
52 RCP<ParameterList> pl = sublist(pList,
"Tempus",
true);
53 ParameterList &sens_pl = pl->sublist(
"Sensitivities");
54 sens_pl.set(
"Use DfDp as Tangent", use_dfdp_as_tangent);
57 RCP<Tempus::IntegratorPseudoTransientForwardSensitivity<double> > integrator =
58 Tempus::createIntegratorPseudoTransientForwardSensitivity<double>(pl,
62 bool integratorStatus = integrator->advanceTime();
63 TEST_ASSERT(integratorStatus);
66 double time = integrator->getTime();
67 double timeFinal = pl->sublist(
"Demo Integrator")
68 .sublist(
"Time Step Control")
69 .get<
double>(
"Final Time");
70 TEST_FLOATING_EQUALITY(time, timeFinal, 1.0e-14);
73 RCP<const Thyra::VectorBase<double> > x_vec = integrator->getX();
74 RCP<const Thyra::MultiVectorBase<double> > DxDp_vec = integrator->getDxDp();
75 const double x = Thyra::get_ele(*x_vec, 0);
76 const double dxdb = Thyra::get_ele(*(DxDp_vec->col(0)), 0);
77 const double x_exact = model->getSteadyStateSolution();
78 const double dxdb_exact = model->getSteadyStateSolutionSensitivity();
80 TEST_FLOATING_EQUALITY(x, x_exact, 1.0e-6);
81 TEST_FLOATING_EQUALITY(dxdb, dxdb_exact, 1.0e-6);
99 RCP<ParameterList> pList =
100 getParametersFromXmlFile(
"Tempus_ExplicitRK_SteadyQuadratic.xml");
103 RCP<ParameterList> scm_pl = sublist(pList,
"SteadyQuadraticModel",
true);
104 RCP<SteadyQuadraticModel<double> > model =
108 RCP<ParameterList> pl = sublist(pList,
"Tempus",
true);
112 RCP<Tempus::IntegratorPseudoTransientAdjointSensitivity<double> > integrator =
113 Tempus::integratorPseudoTransientAdjointSensitivity<double>(pl, model);
116 bool integratorStatus = integrator->advanceTime();
117 TEST_ASSERT(integratorStatus);
120 double time = integrator->getTime();
121 double timeFinal = pl->sublist(
"Demo Integrator")
122 .sublist(
"Time Step Control")
123 .get<
double>(
"Final Time");
124 TEST_FLOATING_EQUALITY(time, timeFinal, 1.0e-14);
127 RCP<const Thyra::VectorBase<double> > x_vec = integrator->getX();
128 RCP<const Thyra::MultiVectorBase<double> > DxDp_vec = integrator->getDgDp();
129 const double x = Thyra::get_ele(*x_vec, 0);
130 const double dxdb = Thyra::get_ele(*(DxDp_vec->col(0)), 0);
131 const double x_exact = model->getSteadyStateSolution();
132 const double dxdb_exact = model->getSteadyStateSolutionSensitivity();
134 TEST_FLOATING_EQUALITY(x, x_exact, 1.0e-6);
135 TEST_FLOATING_EQUALITY(dxdb, dxdb_exact, 1.0e-6);
Simple quadratic equation with a stable steady-state.
TEUCHOS_UNIT_TEST(BackwardEuler, SinCos_ASA)
void test_pseudotransient_fsa(const bool use_dfdp_as_tangent, Teuchos::FancyOStream &out, bool &success)