Toggle navigation
Documentation
Big picture
The finite element method
The data structure
Not-so-quick guide
Optimisation
Order of action functions
Example codes and tutorials
List of example codes and tutorials
Meshing
Solvers
MPI parallel processing
Post-processing/visualisation
Other
Change log
Creating documentation
Coding conventions
Index
FAQ
Installation
Installation guide
Copyright
About
People
Contact/Get involved
Publications
Acknowledgements
Picture show
Go
src
meshes
horizontal_single_layer_spine_mesh.template.h
Go to the documentation of this file.
1
// LIC// ====================================================================
2
// LIC// This file forms part of oomph-lib, the object-oriented,
3
// LIC// multi-physics finite-element library, available
4
// LIC// at http://www.oomph-lib.org.
5
// LIC//
6
// LIC// Copyright (C) 2006-2024 Matthias Heil and Andrew Hazel
7
// LIC//
8
// LIC// This library is free software; you can redistribute it and/or
9
// LIC// modify it under the terms of the GNU Lesser General Public
10
// LIC// License as published by the Free Software Foundation; either
11
// LIC// version 2.1 of the License, or (at your option) any later version.
12
// LIC//
13
// LIC// This library is distributed in the hope that it will be useful,
14
// LIC// but WITHOUT ANY WARRANTY; without even the implied warranty of
15
// LIC// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16
// LIC// Lesser General Public License for more details.
17
// LIC//
18
// LIC// You should have received a copy of the GNU Lesser General Public
19
// LIC// License along with this library; if not, write to the Free Software
20
// LIC// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21
// LIC// 02110-1301 USA.
22
// LIC//
23
// LIC// The authors may be contacted at oomph-lib@maths.man.ac.uk.
24
// LIC//
25
// LIC//====================================================================
26
#ifndef OOMPH_HORIZONTAL_SINGLE_LAYER_SPINE_MESH_HEADER
27
#define OOMPH_HORIZONTAL_SINGLE_LAYER_SPINE_MESH_HEADER
28
29
// oomph-lib includes
30
#include "../generic/spines.h"
31
#include "
rectangular_quadmesh.template.h
"
32
33
// Created by Francisco
34
35
namespace
oomph
36
{
37
//======================================================================
38
/// Horizontal Single-layer spine mesh class derived from standard 2D mesh.
39
/// The mesh contains a layer of spinified fluid elements (of type ELEMENT;
40
/// e.g SpineElement<QCrouzeixRaviartElement<2>)
41
/// and the information required to update their position. Additional
42
/// equations must be specified in order to determine how the spines move.
43
//======================================================================
44
template
<
class
ELEMENT>
45
class
HorizontalSingleLayerSpineMesh
:
public
RectangularQuadMesh
<ELEMENT>,
46
public
SpineMesh
47
{
48
public
:
49
/// Constructor: Pass number of elements in x-direction, number of
50
/// elements in y-direction, axial length, height of layer, and pointer
51
/// to timestepper (defaults to Steady timestepper)
52
HorizontalSingleLayerSpineMesh
(
53
const
unsigned
&
nx
,
54
const
unsigned
&
ny
,
55
const
double
& lx,
56
const
double
& h,
57
TimeStepper* time_stepper_pt = &Mesh::Default_TimeStepper);
58
59
60
/// General node update function implements pure virtual function
61
/// defined in SpineMesh base class and performs specific node update
62
/// actions: along vertical spines
63
virtual
void
spine_node_update
(SpineNode* spine_node_pt)
64
{
65
// Get fraction along the spine
66
double
W = spine_node_pt->fraction();
67
// Get spine height
68
double
H
= spine_node_pt->h();
69
// Set the value of y
70
// spine_node_pt->x(0) = this->Xmin + W*H;
71
spine_node_pt->x(0) = W *
H
;
72
}
73
74
75
protected
:
76
/// Helper function to actually build the single-layer spine mesh
77
/// (called from various constructors)
78
virtual
void
build_horizontal_single_layer_mesh
(
79
TimeStepper* time_stepper_pt);
80
};
81
82
}
// namespace oomph
83
84
#endif
oomph::HorizontalSingleLayerSpineMesh
Horizontal Single-layer spine mesh class derived from standard 2D mesh. The mesh contains a layer of ...
Definition:
horizontal_single_layer_spine_mesh.template.h:47
oomph::HorizontalSingleLayerSpineMesh::spine_node_update
virtual void spine_node_update(SpineNode *spine_node_pt)
General node update function implements pure virtual function defined in SpineMesh base class and per...
Definition:
horizontal_single_layer_spine_mesh.template.h:63
oomph::HorizontalSingleLayerSpineMesh::HorizontalSingleLayerSpineMesh
HorizontalSingleLayerSpineMesh(const unsigned &nx, const unsigned &ny, const double &lx, const double &h, TimeStepper *time_stepper_pt=&Mesh::Default_TimeStepper)
Constructor: Pass number of elements in x-direction, number of elements in y-direction,...
Definition:
horizontal_single_layer_spine_mesh.template.cc:47
oomph::HorizontalSingleLayerSpineMesh::build_horizontal_single_layer_mesh
virtual void build_horizontal_single_layer_mesh(TimeStepper *time_stepper_pt)
Helper function to actually build the single-layer spine mesh (called from various constructors)
Definition:
horizontal_single_layer_spine_mesh.template.cc:75
oomph::RectangularQuadMesh
RectangularQuadMesh is a two-dimensional mesh of Quad elements with Nx elements in the "x" (horizonal...
Definition:
rectangular_quadmesh.template.h:59
oomph::RectangularQuadMesh::ny
const unsigned & ny() const
Return number of elements in y direction.
Definition:
rectangular_quadmesh.template.h:231
oomph::RectangularQuadMesh::nx
const unsigned & nx() const
Return number of elements in x direction.
Definition:
rectangular_quadmesh.template.h:224
Global_Physical_Variables::H
double H
Non-dimensional wall thickness. As in Jensen & Heil (2003) paper.
Definition:
fsi_collapsible_channel.cc:198
oomph
////////////////////////////////////////////////////////////////////// //////////////////////////////...
Definition:
annular_domain.h:35
rectangular_quadmesh.template.h