39 int main(
int argc,
char *argv[])
41 const char *new_mesh_file =
"mobius-strip.mesh";
47 bool visualization =
true;
50 args.
AddOption(&new_mesh_file,
"-m",
"--mesh-out-file",
51 "Output Mesh file to write.");
52 args.
AddOption(&nx,
"-nx",
"--num-elements-x",
53 "Number of elements in x-direction.");
54 args.
AddOption(&ny,
"-ny",
"--num-elements-y",
55 "Number of elements in y-direction.");
56 args.
AddOption(&order,
"-o",
"--mesh-order",
57 "Order (polynomial degree) of the mesh elements.");
58 args.
AddOption(&close_strip,
"-c",
"--close-strip",
59 "How to close the strip: 0 - open, 1 - closed, 2 - twisted.");
60 args.
AddOption(&dg_mesh,
"-dm",
"--discont-mesh",
"-cm",
"--cont-mesh",
61 "Use discontinuous or continuous space for the mesh nodes.");
63 "Number of twists of the strip.");
64 args.
AddOption(&visualization,
"-vis",
"--visualization",
"-no-vis",
66 "Enable or disable GLVis visualization.");
78 Mesh mesh = Mesh::MakeCartesian2D(nx, ny, el_type, 1, 2*M_PI, 2.0);
85 for (
int i = 0; i < v2v.Size(); i++)
90 for (
int j = 0; j <= ny; j++)
92 int v_old = nx + j * (nx + 1);
93 int v_new = ((close_strip == 1) ? j : (ny - j)) * (nx + 1);
97 for (
int i = 0; i < mesh.
GetNE(); i++)
102 for (
int j = 0; j < nv; j++)
108 for (
int i = 0; i < mesh.
GetNBE(); i++)
113 for (
int j = 0; j < nv; j++)
130 for (
int i = 0; i < nodes.
Size(); i++)
132 if (std::abs(nodes(i)) < 1e-12)
138 ofstream ofs(new_mesh_file);
148 sol_sock.precision(8);
149 sol_sock <<
"mesh\n" << mesh << flush;
157 double a = 1.0 + 0.5 * (x[1] - 1.0) * cos(
num_twists * x[0] );
160 p[0] =
a * cos( x[0] );
161 p[1] =
a * sin( x[0] );
162 p[2] = 0.5 * (x[1] - 1.0) * sin(
num_twists * x[0] );
Class for grid function - Vector with associated FE space.
void mobius_trans(const Vector &x, Vector &p)
virtual void GetVertices(Array< int > &v) const =0
Returns element's vertices.
void PrintOptions(std::ostream &out) const
Print the options.
void PrintUsage(std::ostream &out) const
Print the usage message.
int Size() const
Returns the size of the vector.
void Transform(void(*f)(const Vector &, Vector &))
const Element * GetElement(int i) const
Return pointer to the i'th element object.
bool Good() const
Return true if the command line options were parsed successfully.
void RemoveInternalBoundaries()
int GetNBE() const
Returns number of boundary elements.
int GetNV() const
Returns number of vertices. Vertices are only at the corners of elements, where you would expect them...
void Parse()
Parse the command-line options. Note that this function expects all the options provided through the ...
virtual void SetCurvature(int order, bool discont=false, int space_dim=-1, int ordering=1)
Set the curvature of the mesh nodes using the given polynomial degree.
Type
Constants for the classes derived from Element.
int main(int argc, char *argv[])
double p(const Vector &x, double t)
void RemoveUnusedVertices()
Remove unused vertices and rebuild mesh connectivity.
void AddOption(bool *var, const char *enable_short_name, const char *enable_long_name, const char *disable_short_name, const char *disable_long_name, const char *description, bool required=false)
Add a boolean option and set 'var' to receive the value. Enable/disable tags are used to set the bool...
int GetNE() const
Returns number of elements.
virtual int GetNVertices() const =0
virtual void Print(std::ostream &os=mfem::out) const
void GetNodes(Vector &node_coord) const
const Element * GetBdrElement(int i) const
Return pointer to the i'th boundary element object.
Abstract data type element.