added -pg flag
[engrid.git] / guidivideboundarylayer.h
blobcede7531e46b4dbbebe4d80f54107ba7dbdb008d
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_hexes;
43 int N_quads;
44 bool y_computed;
46 QSet<QPair<vtkIdType,vtkIdType> > pairs;
47 QVector<QVector<vtkIdType> > edges;
48 QVector<bool> is_blayer_node;
49 QVector<int> old2edge;
50 QVector<double> x;
51 QVector<double> y;
52 QVector<bool> insert_cell;
54 private: // methods
56 void findBoundaryLayer1();
57 void findBoundaryLayer();
58 void createEdges(vtkUnstructuredGrid *new_grid);
59 inline double sech(double x) { return 1.0/cosh(x); };
60 void bisectF(double &f1, double &f2);
61 void computeF();
62 void computeY();
64 protected: // methods
66 virtual void before();
67 virtual void operate1();
68 virtual void operate();
72 #endif