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

« back to all changes in this revision

Viewing changes to nfem/basis/edge.icc

  • 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
 
#ifndef _RHEO_EDGE_ICC
2
 
#define _RHEO_EDGE_ICC
3
 
 
4
 
/*Class:edge
5
 
NAME: @code{edge} - Edge reference element
6
 
@cindex edge
7
 
@cindex reference element
8
 
DESCRIPTION:
9
 
@noindent
10
 
  The edge reference element is K = [0,1].
11
 
@noindent
12
 
@example
13
 
      0---------1   x  
14
 
@end example
15
 
DATE: 4 November 2000
16
 
AUTHOR: Pierre.Saramito@imag.fr
17
 
END: */
18
 
 
19
 
//<edge:
20
 
const size_t dimension = 1;
21
 
const size_t measure = 1;
22
 
const size_t n_vertex = 2;
23
 
const Float vertex [n_vertex][dimension] = {
24
 
        { 0 },
25
 
        { 1 } };
26
 
//>edge:
27
 
#endif // _RHEO_EDGE_ICC