#include <one_d_mesh.template.h>
  
 Public Member Functions | |
| OneDMesh (const unsigned &n_element, const double &length, TimeStepper *time_stepper_pt=&Mesh::Default_TimeStepper) | |
| Constructor: Pass number of elements, n_element, length of domain, length, and pointer to timestepper (defaults to a Steady timestepper so we don't need to specify one in problems without time-dependence).  More... | |
| OneDMesh (const unsigned &n_element, const double &xmin, const double &xmax, TimeStepper *time_stepper_pt=&Mesh::Default_TimeStepper) | |
| Constructor: Pass number of elements, n_element, minimum coordinate, xmin, maximum coordinate, xmax, and a pointer to a timestepper.  More... | |
Protected Member Functions | |
| void | check_1d () const | 
| void | build_mesh (TimeStepper *time_stepper_pt=&Mesh::Default_TimeStepper) | 
| Generic mesh constuction routine, called by all constructors.  More... | |
Protected Attributes | |
| double | Xmin | 
| Minimum coordinate.  More... | |
| double | Xmax | 
| Maximum coordinate.  More... | |
| double | Length | 
| Length of the domain.  More... | |
| unsigned | N | 
| Number of elements.  More... | |
1D mesh consisting of N one-dimensional elements from the QElement family.
The mesh has two boundaries:
.
.There is one node on each of these boundaries.
Definition at line 56 of file one_d_mesh.template.h.
      
  | 
  inline | 
Constructor: Pass number of elements, n_element, length of domain, length, and pointer to timestepper (defaults to a Steady timestepper so we don't need to specify one in problems without time-dependence).
Definition at line 65 of file one_d_mesh.template.h.
      
  | 
  inline | 
Constructor: Pass number of elements, n_element, minimum coordinate, xmin, maximum coordinate, xmax, and a pointer to a timestepper.
Definition at line 77 of file one_d_mesh.template.h.
      
  | 
  protected | 
Generic mesh constuction routine, called by all constructors.
The generic mesh construction routine — this contains all the hard work and is called by all constructors
Definition at line 47 of file one_d_mesh.template.cc.
Referenced by oomph::OneDMesh< FSIHermiteBeamElement >::OneDMesh().
      
  | 
  inlineprotected | 
Mesh can only be built with 1D elements (but can be either T or Q so can't use the normal assert_geometric_element function.
Definition at line 90 of file one_d_mesh.template.h.
Referenced by oomph::OneDMesh< FSIHermiteBeamElement >::OneDMesh().
      
  | 
  protected | 
Length of the domain.
Definition at line 111 of file one_d_mesh.template.h.
      
  | 
  protected | 
Number of elements.
Definition at line 114 of file one_d_mesh.template.h.
      
  | 
  protected | 
Maximum coordinate.
Definition at line 108 of file one_d_mesh.template.h.
      
  | 
  protected | 
Minimum coordinate.
Definition at line 105 of file one_d_mesh.template.h.