36class TimeIntBDFPressureCorrection :
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 TimeIntBDFPressureCorrection(std::shared_ptr<Operator> operator_in,
53 MPI_Comm
const & mpi_comm_in,
54 bool const is_test_in);
56 virtual ~TimeIntBDFPressureCorrection()
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 update_time_integrator_constants()
final;
89 initialize_current_solution()
final;
92 initialize_former_multistep_dof_vectors()
final;
95 read_restart_vectors(BoostInputArchiveType & ia)
final;
98 write_restart_vectors(BoostOutputArchiveType & oa)
const final;
101 initialize_pressure_on_boundary();
104 do_timestep_solve()
final;
107 solve_steady_problem()
final;
116 rhs_momentum(VectorType & rhs, VectorType
const & transport_velocity);
119 pressure_step(VectorType & pressure_increment);
122 projection_step(VectorType
const & pressure_increment);
125 evaluate_convective_term();
128 rhs_projection(VectorType & rhs, VectorType
const & pressure_increment)
const;
131 pressure_update(VectorType
const & pressure_increment);
134 calculate_chi(
double & chi)
const;
137 rhs_pressure(VectorType & rhs)
const;
140 prepare_vectors_for_next_timestep()
final;
143 get_velocity(
unsigned int i )
const final;
146 get_pressure(
unsigned int i )
const final;
149 set_velocity(VectorType
const & velocity,
unsigned int const i )
final;
152 set_pressure(VectorType
const & pressure,
unsigned int const i )
final;
154 std::shared_ptr<Operator> pde_operator;
156 VectorType velocity_np;
157 std::vector<VectorType> velocity;
159 VectorType pressure_np;
160 std::vector<VectorType> pressure;
163 unsigned int order_pressure_extrapolation;
169 std::vector<VectorType> pressure_dbc;
172 VectorType pressure_increment_last_iter;
173 VectorType velocity_momentum_last_iter;
174 VectorType velocity_projection_last_iter;
179 std::tuple<unsigned long long, unsigned long long> >
181 std::pair<
unsigned int ,
unsigned long long >
183 std::pair<
unsigned int ,
unsigned long long >
184 iterations_projection;
Definition postprocessor_interface.h:34