1 // Copyright (C) 2007-2014 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 // Author : Anthony Geay (CEA/DEN)
21 #ifndef __PARAMEDMEM_MEDCOUPLINGGAUSSLOCALIZATION_HXX__
22 #define __PARAMEDMEM_MEDCOUPLINGGAUSSLOCALIZATION_HXX__
24 #include "MEDCoupling.hxx"
25 #include "NormalizedUnstructuredMesh.hxx"
26 #include "InterpKernelException.hxx"
32 class MEDCouplingMesh;
34 class MEDCouplingGaussLocalization
37 MEDCOUPLING_EXPORT MEDCouplingGaussLocalization(INTERP_KERNEL::NormalizedCellType type, const std::vector<double>& refCoo,
38 const std::vector<double>& gsCoo, const std::vector<double>& w);
39 MEDCOUPLING_EXPORT MEDCouplingGaussLocalization(INTERP_KERNEL::NormalizedCellType typ);
40 MEDCOUPLING_EXPORT INTERP_KERNEL::NormalizedCellType getType() const { return _type; }
41 MEDCOUPLING_EXPORT void setType(INTERP_KERNEL::NormalizedCellType typ);
42 MEDCOUPLING_EXPORT int getNumberOfGaussPt() const { return (int)_weight.size(); }
43 MEDCOUPLING_EXPORT int getDimension() const;
44 MEDCOUPLING_EXPORT int getNumberOfPtsInRefCell() const;
45 MEDCOUPLING_EXPORT std::string getStringRepr() const;
46 MEDCOUPLING_EXPORT std::size_t getMemorySize() const;
47 MEDCOUPLING_EXPORT void checkCoherency() const;
48 MEDCOUPLING_EXPORT bool isEqual(const MEDCouplingGaussLocalization& other, double eps) const;
49 MEDCOUPLING_EXPORT void pushTinySerializationIntInfo(std::vector<int>& tinyInfo) const;
50 MEDCOUPLING_EXPORT void pushTinySerializationDblInfo(std::vector<double>& tinyInfo) const;
51 MEDCOUPLING_EXPORT const double *fillWithValues(const double *vals);
53 MEDCOUPLING_EXPORT const std::vector<double>& getRefCoords() const { return _ref_coord; }
54 MEDCOUPLING_EXPORT double getRefCoord(int ptIdInCell, int comp) const;
55 MEDCOUPLING_EXPORT const std::vector<double>& getGaussCoords() const { return _gauss_coord; }
56 MEDCOUPLING_EXPORT double getGaussCoord(int gaussPtIdInCell, int comp) const;
57 MEDCOUPLING_EXPORT const std::vector<double>& getWeights() const { return _weight; }
58 MEDCOUPLING_EXPORT double getWeight(int gaussPtIdInCell, double newVal) const;
59 MEDCOUPLING_EXPORT void setRefCoord(int ptIdInCell, int comp, double newVal);
60 MEDCOUPLING_EXPORT void setGaussCoord(int gaussPtIdInCell, int comp, double newVal);
61 MEDCOUPLING_EXPORT void setWeight(int gaussPtIdInCell, double newVal);
62 MEDCOUPLING_EXPORT void setRefCoords(const std::vector<double>& refCoo);
63 MEDCOUPLING_EXPORT void setGaussCoords(const std::vector<double>& gsCoo);
64 MEDCOUPLING_EXPORT void setWeights(const std::vector<double>& w);
66 MEDCOUPLING_EXPORT static MEDCouplingGaussLocalization BuildNewInstanceFromTinyInfo(int dim, const std::vector<int>& tinyData);
67 MEDCOUPLING_EXPORT static bool AreAlmostEqual(const std::vector<double>& v1, const std::vector<double>& v2, double eps);
69 int checkCoherencyOfRequest(int gaussPtIdInCell, int comp) const;
71 INTERP_KERNEL::NormalizedCellType _type;
72 std::vector<double> _ref_coord;
73 std::vector<double> _gauss_coord;
74 std::vector<double> _weight;