Commit Graph

702 Commits

Author SHA1 Message Date
rnv
e28cd63140 Implementation of NPAL13504 improvement. 2007-10-24 07:05:58 +00:00
jfa
8d59a5ffda NPAL17241: EDF590: Keyboard shortcuts for removing and renaming an object. 2007-10-23 07:06:01 +00:00
dmv
43baeb818c NPAL 16561 2007-10-23 06:39:12 +00:00
dmv
4e6faba5b9 NPAL16561 2007-10-18 13:28:46 +00:00
jfa
ac898ee42c Bug 17298: AttributeError during import of SMESH_BelongToGeom.py. 2007-10-16 12:54:34 +00:00
eap
f6fd462515 + // double delta = d1*d2*1e-6; PAL17233
+  double delta = min( d1, d2 ) / 10.;
2007-10-11 12:43:01 +00:00
mzn
4735affc4f Porting GUI documentation on Doxygen tool. 2007-10-10 13:48:35 +00:00
mzn
0600c4b484 Porting GUI documentation on Doxygen tool. 2007-10-10 13:41:52 +00:00
eap
6814271570 PAL16774 (Crash after display of many groups)
add missing white space to SMESH_CONTINUE_MESH_VISUALIZATION
2007-10-03 08:51:29 +00:00
eap
1ec6e6b0ec PAL14858 (The Mesh Info Dialog Box is too slow)
fix mesh update
2007-10-02 14:18:14 +00:00
eap
8070596937 PAL17091 ("Mesh Infos" dlg shows wrong number of quadrangles of the computed mesh)
take into account element type change at merging nodes
2007-10-02 12:45:45 +00:00
eap
188056a142 PAL16567(problem with extrusion 3D, Propagation 2D when the source fase isn't planar)
-  int    myFaceIndex = -1;
-  double myFaceParam = 0.;
+  myFaceIndex = -1;
+  myFaceParam = 0.;
2007-09-26 10:01:26 +00:00
eap
86f7d569d9 PAL14858 (The Mesh Info Dialog Box is too slow)
fix the previous integration
2007-09-26 09:56:22 +00:00
maintenance team
bd08112bc4 Porting to windows after merge with 3.2.7 2007-09-25 13:39:30 +00:00
eap
f8d23e8916 PAL14858 (The Mesh Info Dialog Box is too slow)
replace ::SMESH_Mesh::ElementOrder with SMDSAbs_ElementOrder
2007-09-25 08:41:25 +00:00
eap
11f9744ee7 PAL14858 (The Mesh Info Dialog Box is too slow)
use SMDS_MeshInfo to nkow nb of entities
2007-09-25 08:40:00 +00:00
eap
179804804f PAL14858 (The Mesh Info Dialog Box is too slow)
+  SMDS_MeshInfo          myInfo;
2007-09-25 08:38:44 +00:00
eap
d11bd3433d PAL14858 (The Mesh Info Dialog Box is too slow)
+enum SMDSAbs_ElementOrder {
+  ORDER_ANY,          /*! entities of any order */
+  ORDER_LINEAR,       /*! entities of 1st order */
+  ORDER_QUADRATIC     /*! entities of 2nd order */
+};
2007-09-25 08:37:43 +00:00
eap
f70ca0e622 PAL14858 (The Mesh Info Dialog Box is too slow)
+	SMDS_MeshInfo.hxx
2007-09-25 08:36:46 +00:00
eap
1db9bf4129 PAL16631 (SALOME crash after a mesh computation failed due to lack of memory)
-  void Update(const Handle(SALOME_InteractiveObject)& theIO,
+  bool Update(const Handle(SALOME_InteractiveObject)& theIO,
2007-09-24 13:53:31 +00:00
eap
8c740710a0 + SMDS_Mesh::CheckMemory(); // PAL16631 2007-09-24 13:52:57 +00:00
eap
f6615d7074 PAL16631 (SALOME crash after a mesh computation failed due to lack of memory) 2007-09-24 13:51:42 +00:00
eap
8d825b71d3 +# Executables targets
+bin_PROGRAMS = SMDS_MemoryLimit
+dist_SMDS_MemoryLimit_SOURCES = \
+	SMDS_MemoryLimit.cxx
+SMDS_MemoryLimit_LDADD = \
+	$(KERNEL_LDFLAGS) -lSALOMELocalTrace
2007-09-24 13:50:56 +00:00
eap
490be5a7f0 PAL16631 (SALOME crash after a mesh computation failed due to lack of memory)
use SMDS_MemoryLimit in CheckMemory() to know a lower memory limit
2007-09-24 13:49:46 +00:00
eap
b18c323afd PAL16631 (SALOME crash after a mesh computation failed due to lack of memory)
fix misspelling
2007-09-24 13:48:53 +00:00
mzn
9010d190b3 Fix for Bug NPAL16771 (EDF 556 SMESH : Can't select some groups of nodes in the VTK view). 2007-09-17 10:07:18 +00:00
eap
a78f064b8c PAL16892 (impossible to create Distribution of Layers hypothesis, for Radial Prism 3D algorithm)
-  myHypTypes = SMESH::GetAvailableHypotheses( false, 0 );
+  myHypTypes = SMESH::GetAvailableHypotheses( false, 1 );
2007-09-11 13:33:17 +00:00
eap
a97aac6c22 + // PAL16857(SMESH not conform to the MED convention):
+        if ( aMeshDimension == 2 && anIsZDimension ) // 2D only if mesh is in XOY plane
+          aMeshDimension = 3;
2007-09-11 06:53:33 +00:00
eap
17429a9441 PAL16774,PAL16631(SALOME crash after a mesh computation that failed because of lack of memory)
Catch exceptions during visualization
2007-09-11 06:13:14 +00:00
eap
f0331f699b PAL16774,PAL16631(SALOME crash after a mesh computation that failed because of lack of memory)
Precise error message
2007-09-11 06:12:36 +00:00
eap
7ff996b8f5 PAL16774,PAL16631(SALOME crash after a mesh computation that failed because of lack of memory)
-  bool CheckMemory()
+  int CheckMemory() - return size of free memory
2007-09-11 06:12:14 +00:00
eap
9cfa837a1d PAL16774,PAL16631(SALOME crash after a mesh computation that failed because of lack of memory)
-  void Update( int theIsClear = true )
+  bool Update( int theIsClear = true )
2007-09-11 06:11:42 +00:00
eap
0fecea680b PAL16774,PAL16631(SALOME crash after a mesh computation that failed because of lack of memory)
1)
-  void Update( int theIsClear = true );
+  bool Update( int theIsClear = true );
2) Do not catch here
2007-09-11 06:11:13 +00:00
eap
b7b32942ac - FitAll();
+	      // FitAll(); - PAL16770(Display of a group performs an automatic fit all)
2007-09-10 13:38:49 +00:00
eap
3fa5dd52ed PAL16834 (smesh Prism don't work with NETGEN_2D algorithm)
fix regression involved by the previous fix
2007-09-06 13:08:23 +00:00
eap
c7d7f3a3f0 PAL16834 (smesh Prism don't work with NETGEN_2D algorithm)
fix FindMatchingNodesOnFaces() for a sphere meshed by NETGEN_2D_ONLY
2007-09-04 08:20:27 +00:00
jfa
7f32c96d19 Join modifications from V3_2_0_maintainance branch 2007-08-31 08:28:40 +00:00
jfa
b0c06e93e6 Bug 16777: Fix merging pb. 2007-08-27 08:34:00 +00:00
jfa
8407274e7b Fix pb. of merge 2007-08-24 12:44:39 +00:00
jfa
856524def1 Join modifications from V3_2_0_maintainance (V3_2_6pre4 - T32x_16Aug2007_16h00m) 2007-08-21 08:30:33 +00:00
abd
497b2d0467 Improvement of configure.ac files:
- calculation of XVERSION
- correct mail address of support
2007-07-24 04:40:42 +00:00
abd
700a886ff5 Add icons in binary mode 2007-07-17 07:47:19 +00:00
abd
21aa7e25de Remove icons from base in text mode 2007-07-17 07:46:23 +00:00
abd
f98067e534 Removed copying of configure files
Removed copying of pythonbe file
2007-06-27 13:10:19 +00:00
abd
00b2b67350 Separation KERNEL DEPRECATED configuration files from main config_files 2007-06-25 09:04:02 +00:00
jfa
4da5b791c7 Update User documentation for smesh package. 2007-06-21 10:10:26 +00:00
abd
72f9438f91 Update environment of windows version:
- products;
- projects.

Porting current version of BR_Dev_For_4_0 branch on Windows.
First stable Windows version of BR_Dev_For_4_0  branch.
2007-06-20 14:23:54 +00:00
jfa
06221800da Distributed Geom, Smesh. Modifications by Anthony GEAY. 2007-06-18 11:10:30 +00:00
eap
362e7633ec NPAL16132 (GHS3D execution failed in Salome version 4.0.0)
make each node in volume has it's own position but not set volume
   ID to static originSpacePosition()
2007-06-08 09:00:52 +00:00
eap
105d08dcbf NPAL16132 (GHS3D execution failed in Salome version 4.0.0)
correctly update _computeState for algos that
     NeedDescretBoundary() && ! OnlyUnaryInput()
2007-06-08 08:57:42 +00:00