37class TimeIntBDFDualSplitting :
public TimeIntBDF<dim, Number>
40 using BoostInputArchiveType = TimeIntBase::BoostInputArchiveType;
41 using BoostOutputArchiveType = TimeIntBase::BoostOutputArchiveType;
43 typedef TimeIntBDF<dim, Number> Base;
45 typedef typename Base::VectorType VectorType;
50 TimeIntBDFDualSplitting(std::shared_ptr<Operator> operator_in,
54 MPI_Comm
const & mpi_comm_in,
55 bool const is_test_in);
57 virtual ~TimeIntBDFDualSplitting()
62 postprocessing_stability_analysis();
65 print_iterations()
const final;
68 get_velocity()
const final;
71 get_velocity_np()
const final;
74 get_pressure()
const final;
77 get_pressure_np()
const final;
81 allocate_vectors()
final;
84 setup_derived()
final;
87 read_restart_vectors(BoostInputArchiveType & ia)
final;
90 write_restart_vectors(BoostOutputArchiveType & oa)
const final;
93 do_timestep_solve()
final;
96 prepare_vectors_for_next_timestep()
final;
102 evaluate_convective_term();
105 update_time_integrator_constants()
final;
108 initialize_current_solution()
final;
111 initialize_former_multistep_dof_vectors()
final;
114 initialize_velocity_dbc();
120 rhs_pressure(VectorType & rhs)
const;
126 rhs_projection(VectorType & rhs)
const;
135 rhs_viscous(VectorType & rhs,
136 VectorType
const & velocity_mass_operator,
137 VectorType
const & transport_velocity)
const;
140 solve_steady_problem()
final;
146 get_velocity(
unsigned int i )
const final;
149 get_pressure(
unsigned int i )
const final;
152 set_velocity(VectorType
const & velocity,
unsigned int const i )
final;
155 set_pressure(VectorType
const & pressure,
unsigned int const i )
final;
157 std::shared_ptr<Operator> pde_operator;
159 std::vector<VectorType> velocity;
161 VectorType velocity_np;
163 std::vector<VectorType> pressure;
165 VectorType pressure_np;
167 std::vector<VectorType> velocity_dbc;
168 VectorType velocity_dbc_np;
171 VectorType pressure_last_iter;
172 VectorType velocity_projection_last_iter;
173 VectorType velocity_viscous_last_iter;
176 std::pair<
unsigned int ,
unsigned long long >
178 std::pair<
unsigned int ,
unsigned long long >
179 iterations_projection;
182 std::tuple<unsigned long long, unsigned long long> >
185 std::pair<
unsigned int ,
unsigned long long > iterations_penalty;
186 std::pair<
unsigned int ,
unsigned long long > iterations_mass;
Definition postprocessor_interface.h:37