fibre.cc File Reference

Classes

class  MeltSpinningProblem< ELEMENT >
 Melt spinning axisymmetric fluid interface problem in rectangular domain. More...
 

Namespaces

 Global_Physical_Variables
 Global variables.
 

Functions

int main (int argc, char *argv[])
 Driver for isothermal fibre spinning axisymmetric fluid problem. More...
 

Variables

double Global_Physical_Variables::Re = 0.1
 Reynolds number. More...
 
double Global_Physical_Variables::ReInvFr = 0.01
 Product of Reynolds number and inverse of Froude number. More...
 
double Global_Physical_Variables::Ca = 10.0
 Capillary number. More...
 
double Global_Physical_Variables::P_ext = 0.0
 External pressure. More...
 
Vector< doubleGlobal_Physical_Variables::G (3) = 1.0
 Direction of gravity. More...
 

Function Documentation

◆ main()

int main ( int argc  ,
char argv[] 
)

Driver for isothermal fibre spinning axisymmetric fluid problem.

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

527 {
528 
529  // Store command line arguments
530  CommandLineArgs::setup(argc,argv);
531 
532  // Number of elements in radial (r) direction
533  const unsigned n_r = 20;
534 
535  // Number of elements in axial (z) direction
536  const unsigned n_z = 22;
537 
538  // Width of domain
539  const double l_r = 1.0;
540 
541  // Height of fluid layer
542  const double h = 11.0;
543 
544  // Accept negative jacobian
545 
546  //FiniteElement::Accept_negative_jacobian = true;
547 
548  // Set direction of gravity (vertically downwards)
552 
553  // Set up the spine test problem with AxisymmetricQCrouzeixRaviartElements,
555  problem(n_r,n_z,l_r,h);
556 
557  // Run the steady simulation
558  problem.steady_run();
559 
560 } // End of main
Melt spinning axisymmetric fluid interface problem in rectangular domain.
Definition: fibre.cc:77
void setup(Time *time_pt)
Create all GeomObjects needed to define the cylinder and the flag.
Definition: turek_flag_non_fsi.cc:277
Vector< double > G(3)
Direction of gravity.
Definition: spherical_shell_convection.cc:62
Constructor for SteadyAxisymAdvectionDiffusion problem
Definition: steady_axisym_advection_diffusion.cc:213

References Global_Physical_Variables::G, problem, and Flag_definition::setup().