OpenFCST: The open-source Fuel Cell Simulation Toolbox
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
app_shop.h
Go to the documentation of this file.
1 //---------------------------------------------------------------------------
2 // $Id: app_shop.h 1348 2013-08-16 00:45:07Z secanell $
3 //
4 // Copyright (C) 2006, 2007, 2008, 2009 by Guido Kanschat
5 //
6 // This file is subject to QPL and may not be distributed
7 // without copyright and license information. Please refer
8 // to the file deal.II/doc/license.html for the text and
9 // further information on this license.
10 //
11 //---------------------------------------------------------------------------
12 
13 #ifndef __appshop__app_shop_h
14 #define __appshop__app_shop_h
15 
16 #include <fe/fe_values.h>
17 
18 namespace dealii
19 {
20  template <int,int, typename number> class Tensor;
21  template <class> class VectorSlice;
22  template <typename number> class Vector;
23  template <typename number> class BlockVector;
24  template <typename number> class FullMatrix;
25 }
26 
27 using namespace dealii;
28 
29 #include <vector>
30 
31 
41 namespace AppShop
42 {
48  inline unsigned int symm_dim(unsigned int dim)
49  {
50  return (dim*(dim+1))/2;
51  }
52 
56  namespace Matrix
57  {
61  namespace Cell
62  {
63  }
67  namespace Boundary
68  {
69  }
73  namespace Face
74  {
75  }
76  }
80  namespace Residual
81  {
85  namespace Cell
86  {
87  }
91  namespace Boundary
92  {
93  }
97  namespace Face
98  {
99  }
100  }
101 }
102 
103 #endif