Driver for RefineableSphereConvection test problem using a.
///////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////
373 problem.mesh_pt()->max_permitted_error() = 1.0e-3;
374 problem.mesh_pt()->min_permitted_error() = 1.0e-5;
377 problem.mesh_pt()->max_refinement_level() = 4;
378 problem.mesh_pt()->min_refinement_level() = 1;
381 problem.set_boundary_conditions(0.0);
384 unsigned max_adapt = 2;
387 problem.steady_newton_solve(max_adapt);
388 problem.doc_solution(doc_info);
399 problem.assign_initial_values_impulsive(dt);
402 unsigned n_steps = 100;
405 if(argc > 1) {n_steps = 5;}
408 for(
unsigned i=0;
i<n_steps;++
i)
410 problem.unsteady_newton_solve(dt);
411 problem.doc_solution(doc_info);
int i
Definition: BiCGSTAB_step_by_step.cpp:9
Convection in a spherical shell.
Definition: spherical_shell_convection.cc:71
Definition: oomph_utilities.h:499
void set_directory(const std::string &directory)
Definition: oomph_utilities.cc:298
Definition: spherical_buoyant_navier_stokes.h:62
double Ra
Rayleigh number.
Definition: spherical_shell_convection.cc:59
Vector< double > G(3)
Direction of gravity.
Definition: spherical_shell_convection.cc:62
Constructor for SteadyAxisymAdvectionDiffusion problem
Definition: steady_axisym_advection_diffusion.cc:213