DrivenCavityProblem< ELEMENT, MESH > Class Template Reference
+ Inheritance diagram for DrivenCavityProblem< ELEMENT, MESH >:

Public Member Functions

 DrivenCavityProblem ()
 Constructor. More...
 
 ~DrivenCavityProblem ()
 Destructor to clean up memory. More...
 
GeomObjectwall_pt ()
 Get pointer to wall. More...
 
void fix_pressure (const unsigned &ielem, const unsigned &jpdof, const double &pvalue)
 Fix pressure in element ielem at pressure dof jpdof and set to pvalue. More...
 
void actions_after_newton_solve ()
 Update the after solve (empty) More...
 
void actions_before_newton_solve ()
 
void actions_after_adapt ()
 
MESH * mesh_pt ()
 
void doc_solution (DocInfo &doc_info, ofstream &trace_file)
 Doc the solution. More...
 
void run (unsigned &next_istep)
 run parameter study More...
 
- Public Member Functions inherited from oomph::Problem
virtual void debug_hook_fct (const unsigned &i)
 
void set_analytic_dparameter (double *const &parameter_pt)
 
void unset_analytic_dparameter (double *const &parameter_pt)
 
bool is_dparameter_calculated_analytically (double *const &parameter_pt)
 
void set_analytic_hessian_products ()
 
void unset_analytic_hessian_products ()
 
bool are_hessian_products_calculated_analytically ()
 
void set_pinned_values_to_zero ()
 
bool distributed () const
 
virtual void actions_before_adapt ()
 
OomphCommunicatorcommunicator_pt ()
 access function to the oomph-lib communicator More...
 
const OomphCommunicatorcommunicator_pt () const
 access function to the oomph-lib communicator, const version More...
 
 Problem ()
 
 Problem (const Problem &dummy)=delete
 Broken copy constructor. More...
 
void operator= (const Problem &)=delete
 Broken assignment operator. More...
 
virtual ~Problem ()
 Virtual destructor to clean up memory. More...
 
Mesh *& mesh_pt ()
 Return a pointer to the global mesh. More...
 
Mesh *const & mesh_pt () const
 Return a pointer to the global mesh (const version) More...
 
Mesh *& mesh_pt (const unsigned &imesh)
 
Mesh *const & mesh_pt (const unsigned &imesh) const
 Return a pointer to the i-th submesh (const version) More...
 
unsigned nsub_mesh () const
 Return number of submeshes. More...
 
unsigned add_sub_mesh (Mesh *const &mesh_pt)
 
void flush_sub_meshes ()
 
void build_global_mesh ()
 
void rebuild_global_mesh ()
 
LinearSolver *& linear_solver_pt ()
 Return a pointer to the linear solver object. More...
 
LinearSolver *const & linear_solver_pt () const
 Return a pointer to the linear solver object (const version) More...
 
LinearSolver *& mass_matrix_solver_for_explicit_timestepper_pt ()
 
LinearSolvermass_matrix_solver_for_explicit_timestepper_pt () const
 
EigenSolver *& eigen_solver_pt ()
 Return a pointer to the eigen solver object. More...
 
EigenSolver *const & eigen_solver_pt () const
 Return a pointer to the eigen solver object (const version) More...
 
Time *& time_pt ()
 Return a pointer to the global time object. More...
 
Timetime_pt () const
 Return a pointer to the global time object (const version). More...
 
doubletime ()
 Return the current value of continuous time. More...
 
double time () const
 Return the current value of continuous time (const version) More...
 
TimeStepper *& time_stepper_pt ()
 
const TimeSteppertime_stepper_pt () const
 
TimeStepper *& time_stepper_pt (const unsigned &i)
 Return a pointer to the i-th timestepper. More...
 
ExplicitTimeStepper *& explicit_time_stepper_pt ()
 Return a pointer to the explicit timestepper. More...
 
unsigned long set_timestepper_for_all_data (TimeStepper *const &time_stepper_pt, const bool &preserve_existing_data=false)
 
virtual void shift_time_values ()
 Shift all values along to prepare for next timestep. More...
 
AssemblyHandler *& assembly_handler_pt ()
 Return a pointer to the assembly handler object. More...
 
AssemblyHandler *const & assembly_handler_pt () const
 Return a pointer to the assembly handler object (const version) More...
 
doubleminimum_dt ()
 Access function to min timestep in adaptive timestepping. More...
 
doublemaximum_dt ()
 Access function to max timestep in adaptive timestepping. More...
 
unsignedmax_newton_iterations ()
 Access function to max Newton iterations before giving up. More...
 
void problem_is_nonlinear (const bool &prob_lin)
 Access function to Problem_is_nonlinear. More...
 
doublemax_residuals ()
 
booltime_adaptive_newton_crash_on_solve_fail ()
 Access function for Time_adaptive_newton_crash_on_solve_fail. More...
 
doublenewton_solver_tolerance ()
 
void add_time_stepper_pt (TimeStepper *const &time_stepper_pt)
 
void set_explicit_time_stepper_pt (ExplicitTimeStepper *const &explicit_time_stepper_pt)
 
void initialise_dt (const double &dt)
 
void initialise_dt (const Vector< double > &dt)
 
Data *& global_data_pt (const unsigned &i)
 Return a pointer to the the i-th global data object. More...
 
void add_global_data (Data *const &global_data_pt)
 
void flush_global_data ()
 
LinearAlgebraDistribution *const & dof_distribution_pt () const
 Return the pointer to the dof distribution (read-only) More...
 
unsigned long ndof () const
 Return the number of dofs. More...
 
unsigned ntime_stepper () const
 Return the number of time steppers. More...
 
unsigned nglobal_data () const
 Return the number of global data values. More...
 
unsigned self_test ()
 Self-test: Check meshes and global data. Return 0 for OK. More...
 
void enable_store_local_dof_pt_in_elements ()
 
void disable_store_local_dof_pt_in_elements ()
 
unsigned long assign_eqn_numbers (const bool &assign_local_eqn_numbers=true)
 
void describe_dofs (std::ostream &out= *(oomph_info.stream_pt())) const
 
void enable_discontinuous_formulation ()
 
void disable_discontinuous_formulation ()
 
void get_dofs (DoubleVector &dofs) const
 
void get_dofs (const unsigned &t, DoubleVector &dofs) const
 Return vector of the t'th history value of all dofs. More...
 
void set_dofs (const DoubleVector &dofs)
 Set the values of the dofs. More...
 
void set_dofs (const unsigned &t, DoubleVector &dofs)
 Set the history values of the dofs. More...
 
void set_dofs (const unsigned &t, Vector< double * > &dof_pt)
 
void add_to_dofs (const double &lambda, const DoubleVector &increment_dofs)
 Add lambda x incremenet_dofs[l] to the l-th dof. More...
 
doubleglobal_dof_pt (const unsigned &i)
 
doubledof (const unsigned &i)
 i-th dof in the problem More...
 
double dof (const unsigned &i) const
 i-th dof in the problem (const version) More...
 
double *& dof_pt (const unsigned &i)
 Pointer to i-th dof in the problem. More...
 
doubledof_pt (const unsigned &i) const
 Pointer to i-th dof in the problem (const version) More...
 
virtual void get_inverse_mass_matrix_times_residuals (DoubleVector &Mres)
 
virtual void get_dvaluesdt (DoubleVector &f)
 
virtual void get_residuals (DoubleVector &residuals)
 Get the total residuals Vector for the problem. More...
 
virtual void get_jacobian (DoubleVector &residuals, DenseDoubleMatrix &jacobian)
 
virtual void get_jacobian (DoubleVector &residuals, CRDoubleMatrix &jacobian)
 
virtual void get_jacobian (DoubleVector &residuals, CCDoubleMatrix &jacobian)
 
virtual void get_jacobian (DoubleVector &residuals, SumOfMatrices &jacobian)
 
void get_fd_jacobian (DoubleVector &residuals, DenseMatrix< double > &jacobian)
 Get the full Jacobian by finite differencing. More...
 
void get_derivative_wrt_global_parameter (double *const &parameter_pt, DoubleVector &result)
 
void get_hessian_vector_products (DoubleVectorWithHaloEntries const &Y, Vector< DoubleVectorWithHaloEntries > const &C, Vector< DoubleVectorWithHaloEntries > &product)
 
void solve_eigenproblem (const unsigned &n_eval, Vector< std::complex< double >> &eigenvalue, Vector< DoubleVector > &eigenvector, const bool &steady=true)
 Solve the eigenproblem. More...
 
void solve_eigenproblem (const unsigned &n_eval, Vector< std::complex< double >> &eigenvalue, const bool &steady=true)
 
virtual void get_eigenproblem_matrices (CRDoubleMatrix &mass_matrix, CRDoubleMatrix &main_matrix, const double &shift=0.0)
 
void assign_eigenvector_to_dofs (DoubleVector &eigenvector)
 Assign the eigenvector passed to the function to the dofs. More...
 
void add_eigenvector_to_dofs (const double &epsilon, const DoubleVector &eigenvector)
 
void store_current_dof_values ()
 Store the current values of the degrees of freedom. More...
 
void restore_dof_values ()
 Restore the stored values of the degrees of freedom. More...
 
void enable_jacobian_reuse ()
 
void disable_jacobian_reuse ()
 Disable recycling of Jacobian in Newton iteration. More...
 
bool jacobian_reuse_is_enabled ()
 Is recycling of Jacobian in Newton iteration enabled? More...
 
booluse_predictor_values_as_initial_guess ()
 
void newton_solve ()
 Use Newton method to solve the problem. More...
 
void enable_globally_convergent_newton_method ()
 enable globally convergent Newton method More...
 
void disable_globally_convergent_newton_method ()
 disable globally convergent Newton method More...
 
void newton_solve (unsigned const &max_adapt)
 
void steady_newton_solve (unsigned const &max_adapt=0)
 
void copy (Problem *orig_problem_pt)
 
virtual Problemmake_copy ()
 
virtual void read (std::ifstream &restart_file, bool &unsteady_restart)
 
virtual void read (std::ifstream &restart_file)
 
virtual void dump (std::ofstream &dump_file) const
 
void dump (const std::string &dump_file_name) const
 
void delete_all_external_storage ()
 
virtual void symmetrise_eigenfunction_for_adaptive_pitchfork_tracking ()
 
doublebifurcation_parameter_pt () const
 
void get_bifurcation_eigenfunction (Vector< DoubleVector > &eigenfunction)
 
void activate_fold_tracking (double *const &parameter_pt, const bool &block_solve=true)
 
void activate_bifurcation_tracking (double *const &parameter_pt, const DoubleVector &eigenvector, const bool &block_solve=true)
 
void activate_bifurcation_tracking (double *const &parameter_pt, const DoubleVector &eigenvector, const DoubleVector &normalisation, const bool &block_solve=true)
 
void activate_pitchfork_tracking (double *const &parameter_pt, const DoubleVector &symmetry_vector, const bool &block_solve=true)
 
void activate_hopf_tracking (double *const &parameter_pt, const bool &block_solve=true)
 
void activate_hopf_tracking (double *const &parameter_pt, const double &omega, const DoubleVector &null_real, const DoubleVector &null_imag, const bool &block_solve=true)
 
void deactivate_bifurcation_tracking ()
 
void reset_assembly_handler_to_default ()
 Reset the system to the standard non-augemented state. More...
 
double arc_length_step_solve (double *const &parameter_pt, const double &ds, const unsigned &max_adapt=0)
 
double arc_length_step_solve (Data *const &data_pt, const unsigned &data_index, const double &ds, const unsigned &max_adapt=0)
 
void reset_arc_length_parameters ()
 
intsign_of_jacobian ()
 
void explicit_timestep (const double &dt, const bool &shift_values=true)
 Take an explicit timestep of size dt. More...
 
void unsteady_newton_solve (const double &dt)
 
void unsteady_newton_solve (const double &dt, const bool &shift_values)
 
void unsteady_newton_solve (const double &dt, const unsigned &max_adapt, const bool &first, const bool &shift=true)
 
double doubly_adaptive_unsteady_newton_solve (const double &dt, const double &epsilon, const unsigned &max_adapt, const bool &first, const bool &shift=true)
 
double doubly_adaptive_unsteady_newton_solve (const double &dt, const double &epsilon, const unsigned &max_adapt, const unsigned &suppress_resolve_after_spatial_adapt_flag, const bool &first, const bool &shift=true)
 
double adaptive_unsteady_newton_solve (const double &dt_desired, const double &epsilon)
 
double adaptive_unsteady_newton_solve (const double &dt_desired, const double &epsilon, const bool &shift_values)
 
void assign_initial_values_impulsive ()
 
void assign_initial_values_impulsive (const double &dt)
 
void calculate_predictions ()
 Calculate predictions. More...
 
void enable_mass_matrix_reuse ()
 
void disable_mass_matrix_reuse ()
 
bool mass_matrix_reuse_is_enabled ()
 Return whether the mass matrix is being reused. More...
 
void refine_uniformly (const Vector< unsigned > &nrefine_for_mesh)
 
void refine_uniformly (const Vector< unsigned > &nrefine_for_mesh, DocInfo &doc_info)
 
void refine_uniformly_and_prune (const Vector< unsigned > &nrefine_for_mesh)
 
void refine_uniformly_and_prune (const Vector< unsigned > &nrefine_for_mesh, DocInfo &doc_info)
 
void refine_uniformly (DocInfo &doc_info)
 
void refine_uniformly_and_prune (DocInfo &doc_info)
 
void refine_uniformly ()
 
void refine_uniformly (const unsigned &i_mesh, DocInfo &doc_info)
 Do uniform refinement for submesh i_mesh with documentation. More...
 
void refine_uniformly (const unsigned &i_mesh)
 Do uniform refinement for submesh i_mesh without documentation. More...
 
void p_refine_uniformly (const Vector< unsigned > &nrefine_for_mesh)
 
void p_refine_uniformly (const Vector< unsigned > &nrefine_for_mesh, DocInfo &doc_info)
 
void p_refine_uniformly_and_prune (const Vector< unsigned > &nrefine_for_mesh)
 
void p_refine_uniformly_and_prune (const Vector< unsigned > &nrefine_for_mesh, DocInfo &doc_info)
 
void p_refine_uniformly (DocInfo &doc_info)
 
void p_refine_uniformly_and_prune (DocInfo &doc_info)
 
void p_refine_uniformly ()
 
void p_refine_uniformly (const unsigned &i_mesh, DocInfo &doc_info)
 Do uniform p-refinement for submesh i_mesh with documentation. More...
 
void p_refine_uniformly (const unsigned &i_mesh)
 Do uniform p-refinement for submesh i_mesh without documentation. More...
 
void refine_selected_elements (const Vector< unsigned > &elements_to_be_refined)
 
void refine_selected_elements (const Vector< RefineableElement * > &elements_to_be_refined_pt)
 
void refine_selected_elements (const unsigned &i_mesh, const Vector< unsigned > &elements_to_be_refined)
 
void refine_selected_elements (const unsigned &i_mesh, const Vector< RefineableElement * > &elements_to_be_refined_pt)
 
void refine_selected_elements (const Vector< Vector< unsigned >> &elements_to_be_refined)
 
void refine_selected_elements (const Vector< Vector< RefineableElement * >> &elements_to_be_refined_pt)
 
void p_refine_selected_elements (const Vector< unsigned > &elements_to_be_refined)
 
void p_refine_selected_elements (const Vector< PRefineableElement * > &elements_to_be_refined_pt)
 
void p_refine_selected_elements (const unsigned &i_mesh, const Vector< unsigned > &elements_to_be_refined)
 
void p_refine_selected_elements (const unsigned &i_mesh, const Vector< PRefineableElement * > &elements_to_be_refined_pt)
 
void p_refine_selected_elements (const Vector< Vector< unsigned >> &elements_to_be_refined)
 
void p_refine_selected_elements (const Vector< Vector< PRefineableElement * >> &elements_to_be_refined_pt)
 
unsigned unrefine_uniformly ()
 
unsigned unrefine_uniformly (const unsigned &i_mesh)
 
void p_unrefine_uniformly (DocInfo &doc_info)
 
void p_unrefine_uniformly (const unsigned &i_mesh, DocInfo &doc_info)
 Do uniform p-unrefinement for submesh i_mesh without documentation. More...
 
void adapt (unsigned &n_refined, unsigned &n_unrefined)
 
void adapt ()
 
void p_adapt (unsigned &n_refined, unsigned &n_unrefined)
 
void p_adapt ()
 
void adapt_based_on_error_estimates (unsigned &n_refined, unsigned &n_unrefined, Vector< Vector< double >> &elemental_error)
 
void adapt_based_on_error_estimates (Vector< Vector< double >> &elemental_error)
 
void get_all_error_estimates (Vector< Vector< double >> &elemental_error)
 
void doc_errors (DocInfo &doc_info)
 Get max and min error for all elements in submeshes. More...
 
void doc_errors ()
 Get max and min error for all elements in submeshes. More...
 
void enable_info_in_newton_solve ()
 
void disable_info_in_newton_solve ()
 Disable the output of information when in the newton solver. More...
 
- Public Member Functions inherited from oomph::ExplicitTimeSteppableObject
 ExplicitTimeSteppableObject ()
 Empty constructor. More...
 
 ExplicitTimeSteppableObject (const ExplicitTimeSteppableObject &)=delete
 Broken copy constructor. More...
 
void operator= (const ExplicitTimeSteppableObject &)=delete
 Broken assignment operator. More...
 
virtual ~ExplicitTimeSteppableObject ()
 Empty destructor. More...
 
virtual void actions_before_explicit_stage ()
 
virtual void actions_after_explicit_stage ()
 

Private Attributes

GeomObjectWall_pt
 Pointer to wall. More...
 

Additional Inherited Members

- Public Types inherited from oomph::Problem
typedef void(* SpatialErrorEstimatorFctPt) (Mesh *&mesh_pt, Vector< double > &elemental_error)
 Function pointer for spatial error estimator. More...
 
typedef void(* SpatialErrorEstimatorWithDocFctPt) (Mesh *&mesh_pt, Vector< double > &elemental_error, DocInfo &doc_info)
 Function pointer for spatial error estimator with doc. More...
 
- Public Attributes inherited from oomph::Problem
bool Shut_up_in_newton_solve
 
- Static Public Attributes inherited from oomph::Problem
static bool Suppress_warning_about_actions_before_read_unstructured_meshes
 
- Protected Types inherited from oomph::Problem
enum  Assembly_method {
  Perform_assembly_using_vectors_of_pairs , Perform_assembly_using_two_vectors , Perform_assembly_using_maps , Perform_assembly_using_lists ,
  Perform_assembly_using_two_arrays
}
 Enumerated flags to determine which sparse assembly method is used. More...
 
- Protected Member Functions inherited from oomph::Problem
unsigned setup_element_count_per_dof ()
 
virtual void sparse_assemble_row_or_column_compressed (Vector< int * > &column_or_row_index, Vector< int * > &row_or_column_start, Vector< double * > &value, Vector< unsigned > &nnz, Vector< double * > &residual, bool compressed_row_flag)
 
virtual void actions_before_newton_convergence_check ()
 
virtual void actions_before_newton_step ()
 
virtual void actions_after_newton_step ()
 
virtual void actions_before_implicit_timestep ()
 
virtual void actions_after_implicit_timestep ()
 
virtual void actions_after_implicit_timestep_and_error_estimation ()
 
virtual void actions_before_explicit_timestep ()
 Actions that should be performed before each explicit time step. More...
 
virtual void actions_after_explicit_timestep ()
 Actions that should be performed after each explicit time step. More...
 
virtual void actions_before_read_unstructured_meshes ()
 
virtual void actions_after_read_unstructured_meshes ()
 
virtual void actions_after_change_in_global_parameter (double *const &parameter_pt)
 
virtual void actions_after_change_in_bifurcation_parameter ()
 
virtual void actions_after_parameter_increase (double *const &parameter_pt)
 
doubledof_derivative (const unsigned &i)
 
doubledof_current (const unsigned &i)
 
virtual void set_initial_condition ()
 
virtual double global_temporal_error_norm ()
 
unsigned newton_solve_continuation (double *const &parameter_pt)
 
unsigned newton_solve_continuation (double *const &parameter_pt, DoubleVector &z)
 
void calculate_continuation_derivatives (double *const &parameter_pt)
 
void calculate_continuation_derivatives (const DoubleVector &z)
 
void calculate_continuation_derivatives_fd (double *const &parameter_pt)
 
bool does_pointer_correspond_to_problem_data (double *const &parameter_pt)
 
void set_consistent_pinned_values_for_continuation ()
 
- Protected Attributes inherited from oomph::Problem
Vector< Problem * > Copy_of_problem_pt
 
std::map< double *, boolCalculate_dparameter_analytic
 
bool Calculate_hessian_products_analytic
 
LinearAlgebraDistributionDof_distribution_pt
 
Vector< double * > Dof_pt
 Vector of pointers to dofs. More...
 
DoubleVectorWithHaloEntries Element_count_per_dof
 
double Relaxation_factor
 
double Newton_solver_tolerance
 
unsigned Max_newton_iterations
 Maximum number of Newton iterations. More...
 
unsigned Nnewton_iter_taken
 
Vector< doubleMax_res
 Maximum residuals at start and after each newton iteration. More...
 
double Max_residuals
 
bool Time_adaptive_newton_crash_on_solve_fail
 
bool Jacobian_reuse_is_enabled
 Is re-use of Jacobian in Newton iteration enabled? Default: false. More...
 
bool Jacobian_has_been_computed
 
bool Problem_is_nonlinear
 
bool Pause_at_end_of_sparse_assembly
 
bool Doc_time_in_distribute
 
unsigned Sparse_assembly_method
 
unsigned Sparse_assemble_with_arrays_initial_allocation
 
unsigned Sparse_assemble_with_arrays_allocation_increment
 
Vector< Vector< unsigned > > Sparse_assemble_with_arrays_previous_allocation
 
double Numerical_zero_for_sparse_assembly
 
double FD_step_used_in_get_hessian_vector_products
 
bool Mass_matrix_reuse_is_enabled
 
bool Mass_matrix_has_been_computed
 
bool Discontinuous_element_formulation
 
double Minimum_dt
 Minimum desired dt: if dt falls below this value, exit. More...
 
double Maximum_dt
 Maximum desired dt. More...
 
double DTSF_max_increase
 
double DTSF_min_decrease
 
double Minimum_dt_but_still_proceed
 
bool Scale_arc_length
 Boolean to control whether arc-length should be scaled. More...
 
double Desired_proportion_of_arc_length
 Proportion of the arc-length to taken by the parameter. More...
 
double Theta_squared
 
int Sign_of_jacobian
 Storage for the sign of the global Jacobian. More...
 
double Continuation_direction
 
double Parameter_derivative
 Storage for the derivative of the global parameter wrt arc-length. More...
 
double Parameter_current
 Storage for the present value of the global parameter. More...
 
bool Use_continuation_timestepper
 Boolean to control original or new storage of dof stuff. More...
 
unsigned Dof_derivative_offset
 
unsigned Dof_current_offset
 
Vector< doubleDof_derivative
 Storage for the derivative of the problem variables wrt arc-length. More...
 
Vector< doubleDof_current
 Storage for the present values of the variables. More...
 
double Ds_current
 Storage for the current step value. More...
 
unsigned Desired_newton_iterations_ds
 
double Minimum_ds
 Minimum desired value of arc-length. More...
 
bool Bifurcation_detection
 Boolean to control bifurcation detection via determinant of Jacobian. More...
 
bool Bisect_to_find_bifurcation
 Boolean to control wheter bisection is used to located bifurcation. More...
 
bool First_jacobian_sign_change
 Boolean to indicate whether a sign change has occured in the Jacobian. More...
 
bool Arc_length_step_taken
 Boolean to indicate whether an arc-length step has been taken. More...
 
bool Use_finite_differences_for_continuation_derivatives
 
OomphCommunicatorCommunicator_pt
 The communicator for this problem. More...
 
bool Always_take_one_newton_step
 
double Timestep_reduction_factor_after_nonconvergence
 
bool Keep_temporal_error_below_tolerance
 
- Static Protected Attributes inherited from oomph::Problem
static ContinuationStorageScheme Continuation_time_stepper
 Storage for the single static continuation timestorage object. More...
 

Detailed Description

template<class ELEMENT, class MESH>
class DrivenCavityProblem< ELEMENT, MESH >

///////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////// Driven cavity problem in deformable ring domain.

Tecplot documentation:

  • 2DNavierStokesSolution.mcr documents the solution (no surprise!)

If refinement process was doced:

  • 2DNavierStokesZ2Errors.mcr documents the error reduction during mesh refinement
  • quadtree mesh refinement can be traced with various other generic tecplot macros.

Constructor & Destructor Documentation

◆ DrivenCavityProblem()

template<class ELEMENT , class MESH >
DrivenCavityProblem< ELEMENT, MESH >::DrivenCavityProblem

Constructor.

Constructor for DrivenCavity problem on deformable ring mesh

187 {
188 
189  // Build a linear solver: Use HSL's MA42 frontal solver
190  //linear_solver_pt() = new HSL_MA42;
191 
192  // Switch off full doc for frontal solver
193  //static_cast<HSL_MA42*>(linear_solver_pt())->disable_doc_stats();
194 
195  // Half axes for ellipse
196  double a_ellipse=1.0;
197  double b_ellipse=1.0;
198 
199  // Setup elliptical ring
200  Wall_pt=new Ellipse(a_ellipse,b_ellipse);
201 
202  // End points for wall
203  double xi_lo=0.0;
204  double xi_hi=2.0*atan(1.0);
205 
206  //Now create the mesh
207  double fract_mid=0.4;
208  Problem::mesh_pt() = new MESH(Wall_pt,xi_lo,fract_mid,xi_hi);
209 
210  // Set error estimator
212  mesh_pt()->spatial_error_estimator_pt()=error_estimator_pt;
213 
214  // Set the boundary conditions for this problem: All nodes are
215  // free by default -- just pin the ones that have Dirichlet conditions
216  // here.
217  unsigned num_bound = mesh_pt()->nboundary();
218  for(unsigned long ibound=0;ibound<num_bound;ibound++)
219  {
220  unsigned num_nod= mesh_pt()->nboundary_node(ibound);
221  for (unsigned inod=0;inod<num_nod;inod++)
222  {
223  // Loop over values (u and v velocities)
224  for (unsigned i=0;i<2;i++)
225  {
226  mesh_pt()->boundary_node_pt(ibound,inod)->pin(i);
227  }
228  }
229  }
230 
231  // Complete the build of all elements so they are fully functional
232  //Find number of elements in mesh
233  unsigned Nelement = mesh_pt()->nelement();
234 
235  // Loop over the elements to set up element-specific
236  // things that cannot be handled by constructor
237  for(unsigned i=0;i<Nelement;i++)
238  {
239  // Upcast from GeneralisedElement to the present element
240  ELEMENT *el_pt = dynamic_cast<ELEMENT*>(mesh_pt()->element_pt(i));
241 
242  //Set the Reynolds number, etc
243  el_pt->re_pt() = &Global_Physical_Variables::Re;
244  el_pt->re_st_pt() = &Global_Physical_Variables::ReSt;
245 
246  // Free all internal pressure dofs (to make sure we don't
247  // accidentally pin two after refinement)
248  unsigned num_internals=el_pt->ninternal_data();
249  for (unsigned iint=0;iint<num_internals;iint++)
250  {
251  unsigned nvals=el_pt->internal_data_pt(iint)->nvalue();
252  for (unsigned ival=0;ival<nvals;ival++)
253  {
254  el_pt->internal_data_pt(iint)->unpin(ival);
255  }
256  }
257  }
258 
259  // Pin redudant pressure dofs
261  pin_redundant_nodal_pressures(mesh_pt()->element_pt());
262 
263  // Now set the pressure in final element at 'node' 0 to 0.0
264  fix_pressure(0,0,0.0);
265 
266  //Attach the boundary conditions to the mesh
267  cout <<"Number of equations: " << assign_eqn_numbers() << std::endl;
268 
269 
270 }
int i
Definition: BiCGSTAB_step_by_step.cpp:9
void fix_pressure(const unsigned &ielem, const unsigned &jpdof, const double &pvalue)
Fix pressure in element ielem at pressure dof jpdof and set to pvalue.
Definition: circular_driven_cavity_driver.cc:103
MESH * mesh_pt()
Definition: circular_driven_cavity_driver.cc:159
GeomObject * Wall_pt
Pointer to wall.
Definition: circular_driven_cavity_driver.cc:175
Definition: geom_objects.h:644
unsigned long assign_eqn_numbers(const bool &assign_local_eqn_numbers=true)
Definition: problem.cc:1989
Definition: refineable_navier_stokes_elements.h:322
Definition: error_estimator.h:266
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC bfloat16 atan(const bfloat16 &a)
Definition: BFloat16.h:636
double ReSt
Womersley number.
Definition: rayleigh_instability.cc:56
double Re
Reynolds number.
Definition: fibre.cc:55
Z2ErrorEstimator * error_estimator_pt
Definition: MortaringCantileverCompareToNonMortaring.cpp:190

References Eigen::bfloat16_impl::atan(), MeshRefinement::error_estimator_pt, i, Global_Physical_Variables::Re, and Global_Physical_Variables::ReSt.

◆ ~DrivenCavityProblem()

template<class ELEMENT , class MESH >
DrivenCavityProblem< ELEMENT, MESH >::~DrivenCavityProblem

Destructor to clean up memory.

Destructor for DrivenCavity problem on deformable ring mesh

280 {
281 
282  // Timestepper gets killed in general problem destructor
283 
284  // Mesh gets killed in general problem destructor
285 
286 }

Member Function Documentation

◆ actions_after_adapt()

template<class ELEMENT , class MESH >
void DrivenCavityProblem< ELEMENT, MESH >::actions_after_adapt
virtual

Finish problem setup: Setup element-specific things (source fct pointers etc.)

Finish build of DrivenCavity problem on deformable ring mesh

Loop over elements and

  • setup pointers to physical parameters (Re, St, etc.)
  • free internal pressure variables

Then choose one element and fix an internal pressure degree.

Reimplemented from oomph::Problem.

304 {
305 
306  //Find number of elements in mesh
307  unsigned Nelement = mesh_pt()->nelement();
308 
309  // Loop over the elements to set up element-specific
310  // things that cannot be handled by constructor
311  for(unsigned i=0;i<Nelement;i++)
312  {
313 
314  // Upcast from GeneralisedElement to the present element
315  ELEMENT *el_pt = dynamic_cast<ELEMENT*>(mesh_pt()->element_pt(i));
316 
317  // Free all internal pressure dofs (to make sure we don't
318  // accidentally pin two after refinement)
319  unsigned num_internals=el_pt->ninternal_data();
320  for (unsigned iint=0;iint<num_internals;iint++)
321  {
322  unsigned nvals=el_pt->internal_data_pt(iint)->nvalue();
323  for (unsigned ival=0;ival<nvals;ival++)
324  {
325  el_pt->internal_data_pt(iint)->unpin(ival);
326  }
327  }
328  }
329 
330  // Pin redudant pressure dofs
332  pin_redundant_nodal_pressures(mesh_pt()->element_pt());
333 
334  // Now set the pressure in final element at 'node' 0 to 0.0
335  fix_pressure(0,0,0.0);
336 
337 }

References i.

◆ actions_after_newton_solve()

template<class ELEMENT , class MESH >
void DrivenCavityProblem< ELEMENT, MESH >::actions_after_newton_solve ( )
inlinevirtual

Update the after solve (empty)

Reimplemented from oomph::Problem.

114  {}

◆ actions_before_newton_solve()

template<class ELEMENT , class MESH >
void DrivenCavityProblem< ELEMENT, MESH >::actions_before_newton_solve ( )
inlinevirtual

Update the problem specs before solve. Re-set velocity boundary conditions.

Reimplemented from oomph::Problem.

121  {
122 
123  // Setup tangential flow along boundary 0:
124  unsigned ibound=0;
125  unsigned num_nod= mesh_pt()->nboundary_node(ibound);
126  for (unsigned inod=0;inod<num_nod;inod++)
127  {
128  unsigned i=0;
129  mesh_pt()->boundary_node_pt(ibound,inod)->set_value(i,1.0);
130  }
131 
132  // Overwrite with no flow along the other boundaries
133  unsigned num_bound = mesh_pt()->nboundary();
134  for(unsigned long ibound=1;ibound<num_bound;ibound++)
135  {
136  unsigned num_nod= mesh_pt()->nboundary_node(ibound);
137  for (unsigned inod=0;inod<num_nod;inod++)
138  {
139  for (unsigned i=0;i<2;i++)
140  {
141  mesh_pt()->boundary_node_pt(ibound,inod)->set_value(i,0.0);
142  }
143  }
144  }
145 
146  }

References i.

◆ doc_solution()

template<class ELEMENT , class MESH >
void DrivenCavityProblem< ELEMENT, MESH >::doc_solution ( DocInfo doc_info,
ofstream &  trace_file 
)

Doc the solution.

Doc the solution

Process with

  • 2DNavierStokesSolution.mcr
354 {
355 
356  ofstream some_file;
357  char filename[100];
358 
359  // Number of plot points
360  unsigned npts;
361  npts=5;
362 
363  // Output solution
364  sprintf(filename,"%s/soln%i.dat",doc_info.directory().c_str(),
365  doc_info.number());
366  some_file.open(filename);
367  mesh_pt()->output(some_file,npts);
368  some_file.close();
369 
370 
371  // Find first element in unrefined mesh
372  ELEMENT* el_pt=dynamic_cast<ELEMENT*>(dynamic_cast<ELEMENT*>(mesh_pt()->element_pt(0))->
373  quadtree_pt()->root_pt()->object_pt());
374 
375  // Number of nodes
376  unsigned Nnode=el_pt->nnode();
377 
378  // Write trace file
379  trace_file << mesh_pt()->nelement() << " "
380  << el_pt->nodal_position(Nnode-1,0) << " "
381  << el_pt->nodal_position(Nnode-1,1) << " "
382  << el_pt->u_nst(Nnode-1,0) << " "
383  << el_pt->u_nst(Nnode-1,1) << " "
384  << std::endl;
385 
386  }
std::string directory() const
Output directory.
Definition: oomph_utilities.h:524
unsigned & number()
Number used (e.g.) for labeling output files.
Definition: oomph_utilities.h:554
string filename
Definition: MergeRestartFiles.py:39

References oomph::DocInfo::directory(), MergeRestartFiles::filename, and oomph::DocInfo::number().

◆ fix_pressure()

template<class ELEMENT , class MESH >
void DrivenCavityProblem< ELEMENT, MESH >::fix_pressure ( const unsigned ielem,
const unsigned jpdof,
const double pvalue 
)
inline

Fix pressure in element ielem at pressure dof jpdof and set to pvalue.

105  {
106  //Fix the pressure at that element
107  dynamic_cast<ELEMENT *>(mesh_pt()->element_pt(ielem))->
108  fix_pressure(jpdof,pvalue);
109  }

◆ mesh_pt()

template<class ELEMENT , class MESH >
MESH* DrivenCavityProblem< ELEMENT, MESH >::mesh_pt ( )
inline
160  {
161  return dynamic_cast<MESH*>(Problem::mesh_pt());
162  }

◆ run()

template<class ELEMENT , class MESH >
void DrivenCavityProblem< ELEMENT, MESH >::run ( unsigned next_istep)

run parameter study

Run parameter study. Pass number of next step for consecutive numbering of result files.

399 {
400  // Label for output
401  //-----------------
402  DocInfo doc_info;
403 
404  // Output directory
405  doc_info.set_directory("RESLT");
406 
407  // Step number
408  doc_info.number()=next_istep;
409 
410 
411  // Doc refinement targets
412  mesh_pt()->doc_adaptivity_targets(cout);
413 
414  // Initial refinement/mesh deformation
415  //------------------------------------
416  // Refine once uniformly
418 
419  // Refine once uniformly with doc
420  refine_uniformly(doc_info);
421 
422  // Deform wall
423  static_cast<Ellipse*>(wall_pt())->set_A_ellips(1.5);
424  static_cast<Ellipse*>(wall_pt())->set_B_ellips(1.0);
425 
426  // Update mesh
427  mesh_pt()->node_update();
428 
429  // Check mesh update
430  cout << "Self test of algebraic-node-based mesh update: "
431  << mesh_pt()->self_test() << std::endl;
432 
433 
434  // Setup parameters for problem adaptation
435  //----------------------------------------
436 
437  // Don't allow refinement to drop under given level
438  mesh_pt()->min_refinement_level()=2;
439 
440  // Don't allow refinement beyond given level
441  mesh_pt()->max_refinement_level()=5;
442 
443  // Get max/min refinement levels in mesh
444  unsigned min_refinement_level;
445  unsigned max_refinement_level;
446  mesh_pt()->get_refinement_levels(min_refinement_level,
447  max_refinement_level);
448 
449  cout << "\n Initial mesh: min/max refinement levels: "
450  << min_refinement_level << " " << max_refinement_level << std::endl << std::endl;
451 
452 
453 
454 
455  // Open trace file
456  //----------------
457  ofstream trace_file;
458 
459  // Open trace file
460  char filename[100];
461  sprintf(filename,"%s/trace%i.dat",doc_info.directory().c_str(),next_istep);
462  trace_file.open(filename);
463  trace_file << "# Driven cavity validation " << std::endl;
464  trace_file << "# # of nodes along element edge "
465  << dynamic_cast<ELEMENT*>(mesh_pt()->finite_element_pt(0))
466  ->nnode_1d() << std::endl;
467  trace_file << "# err_max " << mesh_pt()->max_permitted_error() << std::endl;
468  trace_file << "# err_min " << mesh_pt()->min_permitted_error() << std::endl;
469  trace_file << "# min_refinement_level "
470  << mesh_pt()->min_refinement_level() << std::endl;
471  trace_file << "# max_refinement_level "
472  << mesh_pt()->max_refinement_level() << std::endl;
473  trace_file << "# A_ellips " <<
474  static_cast<Ellipse*>(wall_pt())->a_ellips()<< std::endl;
475  trace_file << "# B_ellips " <<
476  static_cast<Ellipse*>(wall_pt())->b_ellips()<< std::endl;
477  trace_file << "# initial # elements "
478  << mesh_pt()->nelement() << std::endl;
479 
480 
481 
482 
483  // Solve the problem on the initial mesh
484  //---------------------------------------
485  newton_solve();
486 
487 
488  //Output solution
489  doc_solution(doc_info,trace_file);
490 
491 
492  // Loop over two different wall shapes
493  //------------------------------------
494  for (unsigned istep=0;istep<2;istep++)
495  {
496 
497  // Adapt a few times
498  unsigned n_adapt=2;
499 
500  for (unsigned iadapt=0;iadapt<n_adapt;iadapt++)
501  {
502 
503  unsigned n_refined;
504  unsigned n_unrefined;
505 
506  // Adapt problem
507  adapt(n_refined,n_unrefined);
508 
509 
510  // Doc max/min refinement levels
511  mesh_pt()->get_refinement_levels(min_refinement_level,
512  max_refinement_level);
513  cout << "\n Adapted mesh: min/max refinement levels: "
514  << min_refinement_level << " "
515  << max_refinement_level << std::endl << std::endl;
516 
517 
518  // Check convergence of adaptation cycle
519  if ((n_refined==0)&&(n_unrefined==0))
520  {
521  cout << "\n\n----------------------------------------\n";
522  cout <<"Solution is fully converged.\n";
523  cout << "----------------------------------------\n \n";
524  break;
525  }
526 
527  //Increment counter for solutions
528  next_istep++;
529  doc_info.number()++;
530 
531  // Solve the problem again
532  newton_solve();
533 
534  //Output solution
535  doc_solution(doc_info,trace_file);
536 
537  }
538 
539 
540 
541  // Change wall and update mesh
542  //----------------------------
543 
544  cout << "\n-----------------------" << std::endl;
545  cout << "Changing wall shape " << std::endl;
546  cout << "-----------------------" << std::endl;
547  static_cast<Ellipse*>(wall_pt())->set_A_ellips(0.9);
548  static_cast<Ellipse*>(wall_pt())->set_B_ellips(1.1);
549 
550  // Update mesh in response to change in wall
551  mesh_pt()->node_update();
552 
553  // Doc in trace file
554  trace_file << "# A_ellips " <<
555  static_cast<Ellipse*>(wall_pt())->a_ellips()<< std::endl;
556  trace_file << "# B_ellips " <<
557  static_cast<Ellipse*>(wall_pt())->b_ellips()<< std::endl;
558 
559 
560  // Check mesh update
561  cout << "Max. error in algebraic-node-based mesh update: "
562  << mesh_pt()->self_test() << std::endl;
563 
564 
565  } // end of loop over different orientations
566 
567  next_istep++;
568 
569 }
GeomObject * wall_pt()
Get pointer to wall.
Definition: circular_driven_cavity_driver.cc:93
void doc_solution(DocInfo &doc_info, ofstream &trace_file)
Doc the solution.
Definition: circular_driven_cavity_driver.cc:352
Definition: oomph_utilities.h:499
void set_directory(const std::string &directory)
Definition: oomph_utilities.cc:298
void adapt()
Definition: problem.h:2859
void newton_solve()
Use Newton method to solve the problem.
Definition: problem.cc:8783
void refine_uniformly()
Definition: problem.h:2640

References oomph::DocInfo::directory(), MergeRestartFiles::filename, oomph::DocInfo::number(), and oomph::DocInfo::set_directory().

Referenced by main().

◆ wall_pt()

template<class ELEMENT , class MESH >
GeomObject* DrivenCavityProblem< ELEMENT, MESH >::wall_pt ( )
inline

Get pointer to wall.

94  {
95  return Wall_pt;
96  }

Member Data Documentation

◆ Wall_pt

template<class ELEMENT , class MESH >
GeomObject* DrivenCavityProblem< ELEMENT, MESH >::Wall_pt
private

Pointer to wall.


The documentation for this class was generated from the following file: