36class TimeIntBDFDualSplitting :
public TimeIntBDF<dim, Number>
39 using BoostInputArchiveType = TimeIntBase::BoostInputArchiveType;
40 using BoostOutputArchiveType = TimeIntBase::BoostOutputArchiveType;
42 typedef TimeIntBDF<dim, Number> Base;
44 typedef typename Base::VectorType VectorType;
49 TimeIntBDFDualSplitting(std::shared_ptr<Operator> operator_in,
53 MPI_Comm
const & mpi_comm_in,
54 bool const is_test_in);
56 virtual ~TimeIntBDFDualSplitting()
61 postprocessing_stability_analysis();
64 print_iterations()
const final;
67 get_velocity()
const final;
70 get_velocity_np()
const final;
73 get_pressure()
const final;
76 get_pressure_np()
const final;
80 allocate_vectors()
final;
83 setup_derived()
final;
86 read_restart_vectors(BoostInputArchiveType & ia)
final;
89 write_restart_vectors(BoostOutputArchiveType & oa)
const final;
92 do_timestep_solve()
final;
95 prepare_vectors_for_next_timestep()
final;
101 evaluate_convective_term();
104 update_time_integrator_constants()
final;
107 initialize_current_solution()
final;
110 initialize_former_multistep_dof_vectors()
final;
113 initialize_velocity_dbc();
119 rhs_pressure(VectorType & rhs)
const;
125 rhs_projection(VectorType & rhs)
const;
134 rhs_viscous(VectorType & rhs,
135 VectorType
const & velocity_mass_operator,
136 VectorType
const & transport_velocity)
const;
139 solve_steady_problem()
final;
145 get_velocity(
unsigned int i )
const final;
148 get_pressure(
unsigned int i )
const final;
151 set_velocity(VectorType
const & velocity,
unsigned int const i )
final;
154 set_pressure(VectorType
const & pressure,
unsigned int const i )
final;
156 std::shared_ptr<Operator> pde_operator;
158 std::vector<VectorType> velocity;
160 VectorType velocity_np;
162 std::vector<VectorType> pressure;
164 VectorType pressure_np;
166 std::vector<VectorType> velocity_dbc;
167 VectorType velocity_dbc_np;
170 VectorType pressure_last_iter;
171 VectorType velocity_projection_last_iter;
172 VectorType velocity_viscous_last_iter;
175 std::pair<
unsigned int ,
unsigned long long >
177 std::pair<
unsigned int ,
unsigned long long >
178 iterations_projection;
181 std::tuple<unsigned long long, unsigned long long> >
184 std::pair<
unsigned int ,
unsigned long long > iterations_penalty;
185 std::pair<
unsigned int ,
unsigned long long > iterations_mass;
Definition postprocessor_interface.h:34