Memosa-FVM  0.2
Prism.h
Go to the documentation of this file.
1 // This file os part of FVM
2 // Copyright (c) 2012 FVM Authors
3 // See LICENSE file for terms.
4 
5 #ifndef _PRISM_H_
6 #define _PRISM_H_
7 
8 #include "Cell.h"
9 
10 struct Prism
11 {
12 public:
13 
14  enum{numFaces = 5};
15  enum{numNodes = 6};
16 
17  static unsigned int faceNodeCount[numFaces];
18  static unsigned int faceNodes[numFaces][4];
19 
20 };
21 
22 
23 #endif
static unsigned int faceNodeCount[numFaces]
Definition: Prism.h:17
static unsigned int faceNodes[numFaces][4]
Definition: Prism.h:18
Definition: Prism.h:10