~ubuntu-branches/ubuntu/trusty/rheolef/trusty

« back to all changes in this revision

Viewing changes to nfem/basis/P0_numbering_v1.cc

  • Committer: Package Import Robot
  • Author(s): Pierre Saramito
  • Date: 2012-04-06 09:12:21 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20120406091221-m58me99p1nxqui49
Tags: 6.0-1
* New upstream release 6.0 (major changes):
  - massively distributed and parallel support
  - full FEM characteristic method (Lagrange-Gakerkin method) support
  - enhanced users documentation 
  - source code supports g++-4.7 (closes: #667356)
* debian/control: dependencies for MPI distributed solvers added
* debian/rules: build commands simplified
* debian/librheolef-dev.install: man1/* to man9/* added
* debian/changelog: package description rewritted (closes: #661689)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
///
 
2
/// This file is part of Rheolef.
 
3
///
 
4
/// Copyright (C) 2000-2009 Pierre Saramito <Pierre.Saramito@imag.fr>
 
5
///
 
6
/// Rheolef is free software; you can redistribute it and/or modify
 
7
/// it under the terms of the GNU General Public License as published by
 
8
/// the Free Software Foundation; either version 2 of the License, or
 
9
/// (at your option) any later version.
 
10
///
 
11
/// Rheolef is distributed in the hope that it will be useful,
 
12
/// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
/// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
/// GNU General Public License for more details.
 
15
///
 
16
/// You should have received a copy of the GNU General Public License
 
17
/// along with Rheolef; if not, write to the Free Software
 
18
/// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
19
///
 
20
/// =========================================================================
 
21
#include "P0_numbering.h"
 
22
namespace rheolef {
 
23
using namespace std;
 
24
 
 
25
std::string
 
26
numbering_P0::name() const
 
27
{
 
28
  return "P0";
 
29
}
 
30
numbering_P0::size_type
 
31
numbering_P0::idof (
 
32
        const size_type*      mesh_n_geo,
 
33
        const size_type*      mesh_n_element,
 
34
        const geo_element&    K, 
 
35
        size_type             i_dof_local) const
 
36
{
 
37
        return K.index();
 
38
}
 
39
void
 
40
numbering_P0::idof (
 
41
        const size_type*      mesh_n_geo,
 
42
        const size_type*      mesh_n_element,
 
43
        const geo_element&    K, 
 
44
        vector<size_type>&    i_dof) const
 
45
{
 
46
  i_dof[0] = numbering_P0::idof (mesh_n_geo, mesh_n_element, K, 0);
 
47
 
 
48
#ifdef TO_CLEAN
 
49
  for (size_type i_dof_local = 0; i_dof_local < K.size(); i_dof_local++)
 
50
    i_dof[i_dof_local] 
 
51
     = numbering_P0::idof (mesh_n_geo, mesh_n_element, K, i_dof_local);
 
52
#endif // TO_CLEAN
 
53
}
 
54
numbering_P0::size_type
 
55
numbering_P0::ndof (
 
56
              size_type  mesh_map_dimension,
 
57
        const size_type* mesh_n_geo,
 
58
        const size_type* mesh_n_element) const
 
59
{
 
60
        // number of elments 
 
61
        return mesh_n_geo [mesh_map_dimension];
 
62
}
 
63
bool
 
64
numbering_P0::is_continuous () const
 
65
{
 
66
        return false;
 
67
}
 
68
 
 
69
} // namespace rheolef