Salome HOME
Update copyrights
[modules/smesh.git] / src / StdMeshers / StdMeshers_Arithmetic1D.cxx
1 // Copyright (C) 2007-2019  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SMESH SMESH : implementation of SMESH idl descriptions
24 //  File   : StdMeshers_Arithmetic1D.cxx
25 //  Author : Damien COQUERET, OCC
26 //  Module : SMESH
27 //
28 #include "StdMeshers_Arithmetic1D.hxx"
29
30 #include "SMESH_Algo.hxx"
31 #include "SMESH_Mesh.hxx"
32
33 #include <BRep_Tool.hxx>
34 #include <GCPnts_AbscissaPoint.hxx>
35 #include <GeomAdaptor_Curve.hxx>
36 #include <Geom_Curve.hxx>
37 #include <TopExp.hxx>
38 #include <TopLoc_Location.hxx>
39 #include <TopTools_IndexedMapOfShape.hxx>
40 #include <TopoDS.hxx>
41 #include <TopoDS_Edge.hxx>
42
43 using namespace std;
44
45 //=============================================================================
46 /*!
47  *  
48  */
49 //=============================================================================
50
51 StdMeshers_Arithmetic1D::StdMeshers_Arithmetic1D(int hypId, SMESH_Gen * gen)
52   :StdMeshers_Reversible1D(hypId, gen)
53 {
54   _begLength = 1.;
55   _endLength = 10.;
56   _name = "Arithmetic1D";
57   _param_algo_dim = 1; 
58 }
59
60 //=============================================================================
61 /*!
62  *  
63  */
64 //=============================================================================
65
66 StdMeshers_Arithmetic1D::~StdMeshers_Arithmetic1D()
67 {
68 }
69
70 //=============================================================================
71 /*!
72  *  
73  */
74 //=============================================================================
75
76 void StdMeshers_Arithmetic1D::SetLength(double length, bool isStartLength)
77      throw(SALOME_Exception)
78 {
79   if ( (isStartLength ? _begLength : _endLength) != length ) {
80     if (length <= 0)
81       throw SALOME_Exception(LOCALIZED("length must be positive"));
82     if ( isStartLength )
83       _begLength = length;
84     else
85       _endLength = length;
86
87     NotifySubMeshesHypothesisModification();
88   }
89 }
90
91 //=============================================================================
92 /*!
93  *  
94  */
95 //=============================================================================
96
97 double StdMeshers_Arithmetic1D::GetLength(bool isStartLength) const
98 {
99   return isStartLength ? _begLength : _endLength;
100 }
101
102 //=============================================================================
103 /*!
104  *  
105  */
106 //=============================================================================
107
108 ostream & StdMeshers_Arithmetic1D::SaveTo(ostream & save)
109 {
110   int listSize = _edgeIDs.size();
111   save << _begLength << " " << _endLength << " " << listSize;
112
113   if ( listSize > 0 ) {
114     for ( int i = 0; i < listSize; i++)
115       save << " " << _edgeIDs[i];
116     save << " " << _objEntry;
117   }
118
119   return save;
120 }
121
122 //=============================================================================
123 /*!
124  *  
125  */
126 //=============================================================================
127
128 istream & StdMeshers_Arithmetic1D::LoadFrom(istream & load)
129 {
130   bool isOK = true;
131   int intVal;
132   isOK = static_cast<bool>(load >> _begLength);
133   if (!isOK)
134     load.clear(ios::badbit | load.rdstate());
135   isOK = static_cast<bool>(load >> _endLength);
136
137   if (!isOK)
138     load.clear(ios::badbit | load.rdstate());
139
140   isOK = static_cast<bool>(load >> intVal);
141   if (isOK && intVal > 0) {
142     _edgeIDs.reserve( intVal );
143     for ( size_t i = 0; i < _edgeIDs.capacity() && isOK; i++) {
144       isOK = static_cast<bool>(load >> intVal);
145       if ( isOK ) _edgeIDs.push_back( intVal );
146     }
147     isOK = static_cast<bool>(load >> _objEntry);
148   }
149
150   return load;
151 }
152
153 //================================================================================
154 /*!
155  * \brief Initialize start and end length by the mesh built on the geometry
156  * \param theMesh - the built mesh
157  * \param theShape - the geometry of interest
158  * \retval bool - true if parameter values have been successfully defined
159  */
160 //================================================================================
161
162 bool StdMeshers_Arithmetic1D::SetParametersByMesh(const SMESH_Mesh*   theMesh,
163                                                   const TopoDS_Shape& theShape)
164 {
165   if ( !theMesh || theShape.IsNull() )
166     return false;
167
168   _begLength = _endLength = 0.;
169
170   Standard_Real UMin, UMax;
171   TopLoc_Location L;
172
173   int nbEdges = 0;
174   TopTools_IndexedMapOfShape edgeMap;
175   TopExp::MapShapes( theShape, TopAbs_EDGE, edgeMap );
176   for ( int i = 1; i <= edgeMap.Extent(); ++i )
177   {
178     const TopoDS_Edge& edge = TopoDS::Edge( edgeMap( i ));
179     Handle(Geom_Curve) C = BRep_Tool::Curve(edge, L, UMin, UMax);
180     GeomAdaptor_Curve AdaptCurve(C, UMin, UMax);
181
182     vector< double > params;
183     SMESHDS_Mesh* aMeshDS = const_cast< SMESH_Mesh* >( theMesh )->GetMeshDS();
184     if ( SMESH_Algo::GetNodeParamOnEdge( aMeshDS, edge, params ))
185     {
186       nbEdges++;
187       _begLength += GCPnts_AbscissaPoint::Length( AdaptCurve, params[0], params[1]);
188       int nb = params.size();
189       _endLength += GCPnts_AbscissaPoint::Length( AdaptCurve, params[nb-2], params[nb-1]);
190     }
191   }
192   if ( nbEdges ) {
193     _begLength /= nbEdges;
194     _endLength /= nbEdges;
195   }
196   return nbEdges;
197 }
198
199 //================================================================================
200 /*!
201  * \brief Initialize my parameter values by default parameters.
202  *  \retval bool - true if parameter values have been successfully defined
203  */
204 //================================================================================
205
206 bool StdMeshers_Arithmetic1D::SetParametersByDefaults(const TDefaults&  dflts,
207                                                       const SMESH_Mesh* /*mesh*/)
208 {
209   return ( _begLength = _endLength = dflts._elemLength );
210 }
211