Salome HOME
d2e0b1bf20d3f6dcb102bd58420c8ee69689288c
[modules/smesh.git] / src / StdMeshers / StdMeshers_Arithmetic1D.cxx
1 //  Copyright (C) 2007-2008  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.
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 //  SMESH SMESH : implementaion of SMESH idl descriptions
23 //  File   : StdMeshers_Arithmetic1D.cxx
24 //  Author : Damien COQUERET, OCC
25 //  Module : SMESH
26 //
27 #include "StdMeshers_Arithmetic1D.hxx"
28
29 #include "SMESH_Algo.hxx"
30 #include "SMESH_Mesh.hxx"
31
32 #include <BRep_Tool.hxx>
33 #include <GCPnts_AbscissaPoint.hxx>
34 #include <GeomAdaptor_Curve.hxx>
35 #include <Geom_Curve.hxx>
36 #include <TopExp.hxx>
37 #include <TopLoc_Location.hxx>
38 #include <TopTools_IndexedMapOfShape.hxx>
39 #include <TopoDS.hxx>
40 #include <TopoDS_Edge.hxx>
41
42 using namespace std;
43
44 //=============================================================================
45 /*!
46  *  
47  */
48 //=============================================================================
49
50 StdMeshers_Arithmetic1D::StdMeshers_Arithmetic1D(int hypId, int studyId, SMESH_Gen * gen)
51   :SMESH_Hypothesis(hypId, studyId, gen)
52 {
53   _begLength = 1.;
54   _endLength = 10.;
55   _name = "Arithmetic1D";
56   _param_algo_dim = 1; 
57 }
58
59 //=============================================================================
60 /*!
61  *  
62  */
63 //=============================================================================
64
65 StdMeshers_Arithmetic1D::~StdMeshers_Arithmetic1D()
66 {
67 }
68
69 //=============================================================================
70 /*!
71  *  
72  */
73 //=============================================================================
74
75 void StdMeshers_Arithmetic1D::SetLength(double length, bool isStartLength)
76      throw(SALOME_Exception)
77 {
78   if ( (isStartLength ? _begLength : _endLength) != length ) {
79     if (length <= 0)
80       throw SALOME_Exception(LOCALIZED("length must be positive"));
81     if ( isStartLength )
82       _begLength = length;
83     else
84       _endLength = length;
85
86     NotifySubMeshesHypothesisModification();
87   }
88 }
89
90 //=============================================================================
91 /*!
92  *  
93  */
94 //=============================================================================
95
96 double StdMeshers_Arithmetic1D::GetLength(bool isStartLength) const
97 {
98   return isStartLength ? _begLength : _endLength;
99 }
100
101 //=============================================================================
102 /*!
103  *  
104  */
105 //=============================================================================
106
107 ostream & StdMeshers_Arithmetic1D::SaveTo(ostream & save)
108 {
109   save << _begLength << " " << _endLength;
110   return save;
111 }
112
113 //=============================================================================
114 /*!
115  *  
116  */
117 //=============================================================================
118
119 istream & StdMeshers_Arithmetic1D::LoadFrom(istream & load)
120 {
121   bool isOK = true;
122   isOK = (load >> _begLength);
123   if (!isOK)
124     load.clear(ios::badbit | load.rdstate());
125   isOK = (load >> _endLength);
126   if (!isOK)
127     load.clear(ios::badbit | load.rdstate());
128   return load;
129 }
130
131 //=============================================================================
132 /*!
133  *  
134  */
135 //=============================================================================
136
137 ostream & operator <<(ostream & save, StdMeshers_Arithmetic1D & hyp)
138 {
139   return hyp.SaveTo( save );
140 }
141
142 //=============================================================================
143 /*!
144  *  
145  */
146 //=============================================================================
147
148 istream & operator >>(istream & load, StdMeshers_Arithmetic1D & hyp)
149 {
150   return hyp.LoadFrom( 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);
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