eap
56793b53d1
0021014: EDF 1583 SMESH: Improvement of the Python Dump for the creation of groups
...
Fix dump of SMESH_IDSource which is Filter
2011-06-23 12:20:30 +00:00
eap
b3cba8f4fd
0021014: EDF 1583 SMESH: Improvement of the Python Dump for the creation of groups
...
1) convert SMESH.Filter.Criterion() to GetCriterion()
2)
+_pyGroup::Process()
+_pyFilter::Process()
2011-06-23 12:19:06 +00:00
eap
c31705d887
0021014: EDF 1583 SMESH: Improvement of the Python Dump for the creation of groups
...
+class _pyGroup
+class _pyFilter
2011-06-23 12:15:16 +00:00
eap
d8c39ff840
0020743: EDF 1271 SMESH : Create a mesh from a group / export,FindElementByPoint() groups
...
1) convert
+ { // ExportPartTo*(part, ...) -> Export*(..., part)
+ // FindAmongElementsByPoint(meshPart, x, y, z, elementType) ->
+ // FindElementsByPoint(x, y, z, elementType, meshPart)
2) make _pyCommand::GetArg() work with any compex arg like list, tuple etc
2011-06-14 13:57:24 +00:00
eap
4fcec244fd
+ case ELEM0D:myStream<<"ELEM0D";break;
2011-06-14 13:54:50 +00:00
eap
7d0549090a
0020743: EDF 1271 SMESH : Create a mesh from a group / FindElementByPoint() groups
...
+ /*!
+ * Searching among the given elements, return elements of given type
+ * where the given point is IN or ON.
+ * 'ALL' type means elements of any type excluding nodes
+ */
+ SMESH::long_array* FindAmongElementsByPoint(SMESH::SMESH_IDSource_ptr elements,
+ CORBA::Double x,
+ CORBA::Double y,
+ CORBA::Double z,
+ SMESH::ElementType type);
2011-06-14 13:54:32 +00:00
eap
9012a64442
0020743: EDF 1271 SMESH : Create a mesh from a group / export groups
...
+ void ExportPartToMED(SMESH::SMESH_IDSource_ptr meshPart,
+ const char* file,
+ CORBA::Boolean auto_groups,
+ SMESH::MED_VERSION version,
+ CORBA::Boolean overwrite) throw (SALOME::SALOME_Exception);
+ void ExportPartToDAT(SMESH::SMESH_IDSource_ptr meshPart,
+ const char* file) throw (SALOME::SALOME_Exception);
+ void ExportPartToUNV(SMESH::SMESH_IDSource_ptr meshPart,
+ const char* file) throw (SALOME::SALOME_Exception);
+ void ExportPartToSTL(SMESH::SMESH_IDSource_ptr meshPart,
+ const char* file,
+ CORBA::Boolean isascii) throw (SALOME::SALOME_Exception);
2011-06-14 13:53:16 +00:00
vsr
2c607013a2
Merge from V6_3_BR 06/06/2011
2011-06-06 08:15:39 +00:00
eap
ecdd9a6194
- ExportToMEDX(file,auto_groups,SMESH::MED_V2_1,true);
...
+ ExportToMEDX(file,auto_groups,SMESH::MED_V2_2,true);
2011-04-08 08:43:48 +00:00
eap
513e407ce6
comment off not used
...
static bool sameGroupType()
2011-04-08 08:43:30 +00:00
vsr
790c5cfa90
Merge from PortingMED3 07Apr11
2011-04-07 11:53:43 +00:00
prascle
ecea4040f1
PR: create flat elements on face groups (ASTER calculations)
2011-03-30 15:48:07 +00:00
ouv
5f35b29326
Issue 0013373: EDF PAL 273 : Option Single/Multi file dump
2011-03-29 07:37:38 +00:00
prascle
4ac8d07584
PR: DoubleNodesOnGroupBoundaries in progress
2011-03-28 14:46:16 +00:00
barate
7a6a25502e
Fixed compilation without .la files from other modules
2011-03-25 14:33:52 +00:00
eap
cb561f9569
Fix idSourceToNodeSet() for the case of mesh with free nodes
2011-03-21 10:19:55 +00:00
adam
5142df035d
Implement Cancel Compute (begin)
2011-03-17 08:40:57 +00:00
eap
8b06eac8bd
0020978: EDF 1475 SMESH: Convert linear to quadratic on a submesh
...
class SMESH_MeshEditor_i
{
+ void ConvertToQuadraticObject(CORBA::Boolean theForce3d,
+ SMESH::SMESH_IDSource_ptr theObject)
+ void ConvertFromQuadraticObject(SMESH::SMESH_IDSource_ptr theObject)
2011-03-16 15:38:32 +00:00
eap
c7177e7a38
in createGroup(), make a unique name if no name is provided
2011-03-14 10:28:54 +00:00
eap
a2db5e7c30
0021177: EDF 1563 SMESH: Preview of mesh during a modification
...
to add adjacent elements to preview only when move nodes in this mesh
2011-03-14 08:33:11 +00:00
eap
7b0ac035d6
0021177: EDF 1563 SMESH: Preview of mesh during a modification
...
add to preview elements sharing nodes moved by transformation
2011-03-11 16:48:31 +00:00
rnv
6e4eb47f89
Fix compilation error.
2011-03-11 14:57:25 +00:00
eap
c1c7d4f3b3
020749: EDF 1291 SMESH : Create 2D Mesh from 3D improvement
...
fix python dump of MakeBoundaryElements()
2011-03-11 10:55:32 +00:00
eap
d7815a2348
020749: EDF 1291 SMESH : Create 2D Mesh from 3D improvement
...
for note 0010000
+ CORBA::Long MakeBoundaryElements(SMESH::Bnd_Dimension dimension,
+ const char* groupName,
+ const char* meshName,
+ CORBA::Boolean toCopyAll,
+ const SMESH::ListOfIDSources& groups,
+ SMESH::SMESH_Mesh_out mesh,
+ SMESH::SMESH_Group_out group)
2011-03-11 10:17:50 +00:00
rnv
512a892301
Start implementation of the "21177: EDF 1563 SMESH: Preview of mesh during a modification" issue.
2011-03-11 08:34:40 +00:00
vsr
ac724740a9
SALOME::GenericObj : Destroy() -> UnRegister()
2011-03-04 15:42:14 +00:00
jfa
b21fc186af
Rename Engines::Component to Engines::EngineComponent
2011-02-28 14:55:52 +00:00
eap
4ebc2ac980
untabify
2011-02-16 10:18:08 +00:00
vsr
e30e3628ce
0020876: EDF 1246 SMESH: DoubleNodes fonctions available in the GUI
...
Allow multiple selection of groups as input
2011-01-31 09:26:19 +00:00
vsr
ddc98ff4c0
0021136: EDF 1748 SMESH: SetAutoColor has no effect in a python script
2011-01-21 12:20:52 +00:00
gdd
9ae572587c
Add new method DoubleNodeElemGroupsNew which allows to have the group of newly created elements.
2011-01-18 14:45:18 +00:00
eap
daa2cf5397
untabify
2011-01-18 12:14:57 +00:00
akl
07808b26b0
Fix of IPAL22187: mesh is updated now after removing of orphan nodes.
2011-01-10 11:43:47 +00:00
jfa
301af5256a
Mantis issue 0021108: EDF 1668 SMESH: ExtrusionAlongPathX on a Mesh group.
2010-12-29 10:27:23 +00:00
inv
fc1ff1af4b
Issue 0021106: EDF 1691 SMESH: MEsh.Group(SubShape) fails on Shells
2010-12-24 10:59:30 +00:00
inv
2de294b09a
Merge from V6_2_BR 23/12/2010
2010-12-24 08:18:34 +00:00
prascle
8fa039a796
merge from branch BR_SMDS_MEMIMP 29 nov 2010
2010-11-29 13:20:53 +00:00
vsr
d8f644ca3d
Merge from V5_1_main branch 24/11/2010
2010-11-25 12:44:43 +00:00
vsr
9357f5c870
Merge from V5_1_main 14/05/2010
2010-05-14 15:32:37 +00:00
vsr
2029d91e2f
Issue 20509: EDF 1065 OTHER : Add the Salome version in the header of the dump
2010-02-12 08:37:10 +00:00
eap
0cadad987c
0019296: EDF 681 SMESH - Pre-evaluation of the number of elements before mesh
...
* Evaluate():
** do not read from out of vector range
** report error if algo->Evaluate() returns negative number
2010-02-01 11:12:17 +00:00
eap
035f2b519d
- if ( theNbSegments )
...
+ if ( theNbSegments > 0 )
myGen.SetDefaultNbSegments( int(theNbSegments) );
else
THROW_SALOME_CORBA_EXCEPTION( "non-positive number of segments", SALOME::BAD_PARAM );
2010-01-22 11:34:11 +00:00
eap
890d47aa59
0020431: EDF 1020 SMESH : Radial Mesh of a cylinder
...
* Fix conversion of LayerDistribution hypothesis
2010-01-22 11:33:35 +00:00
eap
0862b12810
1) + // RadialQuadrangle_1D2D ----------
...
2) fix _pyLayerDistributionHypo: move some code from Process() to Flush()
2010-01-20 11:03:16 +00:00
ouv
6c4be33671
Issue 0020514: EDF 1110 SMESH : Export many meshes in one Med File
2010-01-11 07:17:11 +00:00
eap
bcb8d2c754
cosmetic changes
2009-12-14 09:26:16 +00:00
eap
f1bc3e4413
0020605: EDF 1190 SMESH: Display performance. 80 seconds for 52000 cells.
...
set IsEmbeddedMode() in costructor
2009-12-11 10:43:31 +00:00
vsr
b03a1e6001
Merge from BR_phase16 branch (09/12/09)
2009-12-09 15:46:26 +00:00
vsr
2daa321efa
Merge from V5_1_3_BR branch (07/12/09)
2009-12-08 13:11:42 +00:00
dmv
f314777950
correct previous integration (Porting to Python 2.6)
2009-10-12 13:47:12 +00:00