Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037 #ifndef blockDescriptor_H
00038 #define blockDescriptor_H
00039
00040 #include <OpenFOAM/scalar.H>
00041 #include <OpenFOAM/label.H>
00042 #include <OpenFOAM/point.H>
00043 #include <OpenFOAM/cellShape.H>
00044 #include <OpenFOAM/scalarList.H>
00045 #include "curvedEdges/curvedEdgeList.H"
00046
00047
00048
00049 namespace Foam
00050 {
00051
00052 class Istream;
00053 class Ostream;
00054
00055
00056
00057
00058
00059 class blockDescriptor
00060 {
00061
00062
00063
00064 const pointField& blockMeshPoints_;
00065
00066
00067 cellShape blockShape_;
00068
00069
00070 const curvedEdgeList& curvedEdges_;
00071
00072
00073 List<List<point> > edgePoints_;
00074
00075
00076 scalarListList edgeWeights_;
00077
00078
00079 Vector<label> n_;
00080
00081
00082 scalarList expand_;
00083
00084
00085 word zoneName_;
00086
00087
00088
00089 void makeBlockEdges();
00090
00091 void setEdge(label edge, label start, label end, label dim);
00092
00093
00094 public:
00095
00096
00097
00098
00099 blockDescriptor
00100 (
00101 const cellShape&,
00102 const pointField& blockMeshPoints,
00103 const curvedEdgeList& edges,
00104 const Vector<label>& n,
00105 const scalarList& expand,
00106 const word& zoneName = ""
00107 );
00108
00109
00110 blockDescriptor
00111 (
00112 const pointField& blockMeshPoints,
00113 const curvedEdgeList& edges,
00114 Istream& is
00115 );
00116
00117
00118 autoPtr<blockDescriptor> clone() const
00119 {
00120 notImplemented("blockDescriptor::clone()");
00121 return autoPtr<blockDescriptor>(NULL);
00122 }
00123
00124
00125
00126
00127
00128
00129 const pointField& points() const;
00130
00131 const cellShape& blockShape() const;
00132
00133 const List<List<point> >& blockEdgePoints() const;
00134
00135 const scalarListList& blockEdgeWeights() const;
00136
00137 const Vector<label>& n() const;
00138
00139 const word& zoneName() const;
00140
00141
00142
00143 void operator=(const blockDescriptor&);
00144
00145
00146
00147
00148 friend Ostream& operator<<(Ostream&, const blockDescriptor&);
00149 };
00150
00151
00152 inline Istream& operator>>(Istream& is, blockDescriptor*)
00153 {
00154 notImplemented("Istream& operator>>(Istream& is, blockDescriptor*)");
00155 return is;
00156 }
00157
00158
00159
00160
00161 }
00162
00163
00164
00165 #endif
00166
00167