axi_static_cap.cc File Reference
#include "generic.h"
#include "axisym_navier_stokes.h"
#include "fluid_interface.h"
#include "constitutive.h"
#include "solid.h"
#include "meshes/single_layer_spine_mesh.h"

Classes

class  CapProblem< ELEMENT >
 
class  PseudoSolidCapProblem< ELEMENT >
 

Namespaces

 Global_Physical_Variables
 Global variables.
 

Functions

void Global_Physical_Variables::wall_unit_normal_fct (const Vector< double > &x, Vector< double > &normal)
 Function that specifies the wall unit normal. More...
 
int main ()
 Main driver: Build problem and initiate parameter study. More...
 

Variables

Vector< doubleGlobal_Physical_Variables::Wall_normal
 Direction of the wall normal vector. More...
 

Function Documentation

◆ main()

int main ( )

Main driver: Build problem and initiate parameter study.

1024 {
1025 
1026  // Solve the problem twice, once hijacking an internal, once
1027  // hijacking the external pressure
1028  for (unsigned i=0;i<2;i++)
1029  {
1030 
1031  bool hijack_internal=false;
1032  if (i==1) hijack_internal=true;
1033  //Construct the problem
1035  problem(hijack_internal);
1036 
1037  string dir_name="RESLT_hijacked_external";
1038  if (i==1) dir_name="RESLT_hijacked_internal";
1039 
1040  //Do parameter study
1041  problem.parameter_study(dir_name);
1042 
1043  }
1044 
1045 
1046  // Solve the pseudosolid problem twice, once hijacking an internal, once
1047  // hijacking the external pressure
1048  for (unsigned i=0;i<2;i++)
1049  {
1050  bool hijack_internal=false;
1051  if (i==1) hijack_internal=true;
1052  //Construct the problem
1055  QPVDElementWithPressure<2> > > > problem(hijack_internal);
1056 
1057  string dir_name="RESLT_elastic_hijacked_external";
1058  if (i==1) dir_name="RESLT_elastic_hijacked_internal";
1059 
1060  //Do parameter study
1061  problem.parameter_study(dir_name);
1062  }
1063 
1064 } //end_of_main
int i
Definition: BiCGSTAB_step_by_step.cpp:9
Definition: axi_static_cap.cc:78
Definition: axi_static_cap.cc:513
Definition: axisym_navier_stokes_elements.h:1234
Definition: hijacked_elements.h:132
Definition: pseudosolid_node_update_elements.h:58
Definition: solid_elements.h:1332
Constructor for SteadyAxisymAdvectionDiffusion problem
Definition: steady_axisym_advection_diffusion.cc:213

References i, and problem.