Chi-Tech
implicit_euler_time_intgr.cc
Go to the documentation of this file.
2
3#include "ChiObjectFactory.h"
4
5#define scint static_cast<int>
6
7namespace chi_math
8{
9
11
13{
16
17 // clang-format off
18 params.SetGeneralDescription("General implicit Euler Time Integration");
19 params.SetDocGroup("DocTimeIntegrations");
20 // clang-format on
21
22 params.ChangeExistingParamToOptional("method",
24 params.ChangeExistingParamToOptional("theta", 1.0);
25
26 return params;
27}
28
30 const chi::InputParameters& params)
32{
33}
34
35} // namespace chi_math
void SetDocGroup(const std::string &doc_group)
void SetGeneralDescription(const std::string &description)
void ChangeExistingParamToOptional(const std::string &name, T value, const std::string &doc_string="")
ImplicitEulerTimeIntegration(const chi::InputParameters &params)
static chi::InputParameters GetInputParameters()
static chi::InputParameters GetInputParameters()
#define scint
RegisterChiObject(chi_math, QuadratureGaussChebyshev)