rayleigh_instability_soluble_surfactant.cc File Reference

Classes

class  ElasticAxisymmetricSolubleSurfactantTransportInterfaceElement< ELEMENT >
 
class  InterfaceProblem< ELEMENT, TIMESTEPPER >
 Single axisymmetric fluid interface problem in rectangular domain. More...
 

Namespaces

 Global_Physical_Variables
 Global variables.
 

Functions

int main (int argc, char *argv[])
 Driver code for single fluid axisymmetric horizontal interface problem. More...
 

Variables

double Global_Physical_Variables::Alpha_absorption = 1.0
 Alpha for absorption kinetics. More...
 
double Global_Physical_Variables::K = 0.01
 The ratio of adsorption-desorption times. More...
 
double Global_Physical_Variables::Pe = 10000.0
 Peclet number. More...
 
double Global_Physical_Variables::PeSt = Pe
 
double Global_Physical_Variables::Pe_reference_scale =1.0
 
Vector< doubleGlobal_Physical_Variables::G (3) = 1.0
 Direction of gravity. More...
 

Function Documentation

◆ main()

int main ( int argc  ,
char argv[] 
)

Driver code for single fluid axisymmetric horizontal interface problem.

//////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////

Maximum time

Duration of timestep

944 {
945 
946  // Store command line arguments
947  CommandLineArgs::setup(argc,argv);
948 
950  double t_max = 1000.0;
951 
953  const double dt = 0.1;
954 
955  // If we are doing validation run, use smaller number of timesteps
956  if(CommandLineArgs::Argc>1)
957  {
958  t_max = 0.5;
959  }
960 
961  // Number of elements in radial (r) direction
962  const unsigned n_r = 10;
963 
964  // Number of elements in axial (z) direction
965  const unsigned n_z = 80;
966 
967  // Height of domain
969 
970  // Set direction of gravity (vertically downwards)
974 
975  // Set up the spine test problem with AxisymmetricQCrouzeixRaviartElements,
976  // using the BDF<2> timestepper
978  problem(n_r,n_z,l_z);
979 
980  // Run the unsteady simulation
981  problem.unsteady_run(t_max,dt);
982 } // End of main
Single axisymmetric fluid interface problem in rectangular domain.
Definition: rayleigh_instability.cc:87
double Pi
Definition: two_d_biharmonic.cc:235
void setup(Time *time_pt)
Create all GeomObjects needed to define the cylinder and the flag.
Definition: turek_flag_non_fsi.cc:277
double Alpha
Scaling factor for wall thickness (to be used in an exercise)
Definition: unsteady_ring.cc:73
Vector< double > G(3)
Direction of gravity.
Definition: spherical_shell_convection.cc:62
int Argc
Number of arguments + 1.
Definition: oomph_utilities.cc:407
Constructor for SteadyAxisymAdvectionDiffusion problem
Definition: steady_axisym_advection_diffusion.cc:213

References Global_Physical_Variables::Alpha, oomph::CommandLineArgs::Argc, Global_Physical_Variables::G, oomph::MathematicalConstants::Pi, problem, and oomph::CommandLineArgs::setup().