37class TimeIntBDFPressureCorrection :
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 TimeIntBDFPressureCorrection(std::shared_ptr<Operator> operator_in,
54 MPI_Comm
const & mpi_comm_in,
55 bool const is_test_in);
57 virtual ~TimeIntBDFPressureCorrection()
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 update_time_integrator_constants()
final;
90 initialize_current_solution()
final;
93 initialize_former_multistep_dof_vectors()
final;
96 get_vectors_serialization(std::vector<VectorType const *> & vectors_velocity,
97 std::vector<VectorType const *> & vectors_pressure)
const final;
100 set_vectors_deserialization(std::vector<VectorType>
const & vectors_velocity,
101 std::vector<VectorType>
const & vectors_pressure)
final;
104 update_after_deserialization()
final;
107 initialize_pressure_on_boundary();
110 do_timestep_solve()
final;
113 solve_steady_problem()
final;
122 rhs_momentum(VectorType & rhs, VectorType
const & transport_velocity);
125 pressure_step(VectorType & pressure_increment);
128 projection_step(VectorType
const & pressure_increment);
131 evaluate_convective_term();
134 rhs_projection(VectorType & rhs, VectorType
const & pressure_increment)
const;
137 pressure_update(VectorType
const & pressure_increment);
140 calculate_chi(
double & chi)
const;
143 rhs_pressure(VectorType & rhs)
const;
146 prepare_vectors_for_next_timestep()
final;
149 get_velocity(
unsigned int i )
const final;
152 get_pressure(
unsigned int i )
const final;
155 set_velocity(VectorType
const & velocity,
unsigned int const i )
final;
158 set_pressure(VectorType
const & pressure,
unsigned int const i )
final;
160 std::shared_ptr<Operator> pde_operator;
162 VectorType velocity_np;
163 std::vector<VectorType> velocity;
165 VectorType pressure_np;
166 std::vector<VectorType> pressure;
169 unsigned int order_pressure_extrapolation;
175 std::vector<VectorType> pressure_dbc;
178 VectorType pressure_increment_last_iter;
179 VectorType velocity_momentum_last_iter;
180 VectorType velocity_projection_last_iter;
185 std::tuple<unsigned long long, unsigned long long> >
187 std::pair<
unsigned int ,
unsigned long long >
189 std::pair<
unsigned int ,
unsigned long long >
190 iterations_projection;
Definition postprocessor_interface.h:37