DOLFIN
DOLFIN C++ interface
Toggle main menu visibility
Loading...
Searching...
No Matches
dolfin
generation
UnitIntervalMesh.h
1
// Copyright (C) 2007 Kristian B. Oelgaard
2
//
3
// This file is part of DOLFIN.
4
//
5
// DOLFIN is free software: you can redistribute it and/or modify
6
// it under the terms of the GNU Lesser General Public License as published by
7
// the Free Software Foundation, either version 3 of the License, or
8
// (at your option) any later version.
9
//
10
// DOLFIN is distributed in the hope that it will be useful,
11
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
// GNU Lesser General Public License for more details.
14
//
15
// You should have received a copy of the GNU Lesser General Public License
16
// along with DOLFIN. If not, see <http://www.gnu.org/licenses/>.
17
//
18
// Modified by Anders Logg, 2010.
19
// Modified by Benjamin Kehlet 2012
20
// Modified by Mikael Mortensen, 2014
21
//
22
// First added: 2007-11-23
23
// Last changed: 2014-02-17
24
25
#ifndef __UNIT_INTERVAL_MESH_H
26
#define __UNIT_INTERVAL_MESH_H
27
28
#include <cstddef>
29
#include <dolfin/common/MPI.h>
30
#include "IntervalMesh.h"
31
32
namespace
dolfin
33
{
34
38
39
class
UnitIntervalMesh
:
public
IntervalMesh
40
{
41
public
:
42
52
static
Mesh
create
(std::size_t n)
53
{
return
create
(MPI_COMM_WORLD, n); }
54
67
static
Mesh
create
(MPI_Comm comm, std::size_t n)
68
{
return
IntervalMesh::create
(comm, n, {{0.0, 1.0}}); }
69
79
UnitIntervalMesh
(std::size_t nx) :
UnitIntervalMesh
(MPI_COMM_WORLD, nx) {}
80
93
UnitIntervalMesh
(MPI_Comm comm, std::size_t nx)
94
:
IntervalMesh
(comm, nx, 0.0, 1.0) {}
95
96
};
97
98
}
99
100
#endif
dolfin::IntervalMesh::IntervalMesh
IntervalMesh(std::size_t n, double a, double b)
Definition
IntervalMesh.cpp:29
dolfin::IntervalMesh::create
static Mesh create(std::size_t n, std::array< double, 2 > x)
Definition
IntervalMesh.h:49
dolfin::Mesh
Definition
Mesh.h:83
dolfin::UnitIntervalMesh::UnitIntervalMesh
UnitIntervalMesh(MPI_Comm comm, std::size_t nx)
Definition
UnitIntervalMesh.h:93
dolfin::UnitIntervalMesh::create
static Mesh create(std::size_t n)
Definition
UnitIntervalMesh.h:52
dolfin::UnitIntervalMesh::create
static Mesh create(MPI_Comm comm, std::size_t n)
Definition
UnitIntervalMesh.h:67
dolfin::UnitIntervalMesh::UnitIntervalMesh
UnitIntervalMesh(std::size_t nx)
Definition
UnitIntervalMesh.h:79
dolfin
Definition
adapt.h:30
Generated by
1.17.0