change licence dates, fixed in/out side colours, started symbolic bcs
[engrid.git] / guidivideboundarylayer.h
blobc8dcea2bf7f76394c980ae3786c92c9bb6c56b88
1 //
2 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
3 // + +
4 // + This file is part of enGrid. +
5 // + +
6 // + Copyright 2008,2009 Oliver Gloth +
7 // + +
8 // + enGrid is free software: you can redistribute it and/or modify +
9 // + it under the terms of the GNU General Public License as published by +
10 // + the Free Software Foundation, either version 3 of the License, or +
11 // + (at your option) any later version. +
12 // + +
13 // + enGrid is distributed in the hope that it will be useful, +
14 // + but WITHOUT ANY WARRANTY; without even the implied warranty of +
15 // + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +
16 // + GNU General Public License for more details. +
17 // + +
18 // + You should have received a copy of the GNU General Public License +
19 // + along with enGrid. If not, see <http://www.gnu.org/licenses/>. +
20 // + +
21 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
23 #ifndef guidivideboundarylayer_H
24 #define guidivideboundarylayer_H
26 class GuiDivideBoundaryLayer;
28 #include "dialogoperation.h"
29 #include "ui_guidivideboundarylayer.h"
31 class GuiDivideBoundaryLayer : public DialogOperation<Ui::GuiDivideBoundaryLayer>
34 private: // attributes
36 int N_layers;
37 double h;
38 double F;
39 double f;
40 double H;
41 int N_prisms;
42 int N_quads;
43 bool y_computed;
45 QSet<QPair<vtkIdType,vtkIdType> > pairs;
46 QVector<QVector<vtkIdType> > edges;
47 QVector<bool> is_blayer_node;
48 QVector<int> old2edge;
49 QVector<double> x;
50 QVector<double> y;
52 private: // methods
54 void findBoundaryLayer();
55 void createEdges(vtkUnstructuredGrid *new_grid);
56 inline double sech(double x) { return 1.0/cosh(x); };
57 void bisectF(double &f1, double &f2);
58 void computeF();
59 void computeY();
61 protected: // methods
63 virtual void operate();
67 #endif