eap
|
0f842b1c6a
|
Fix Mirror()
|
2013-04-08 13:06:13 +00:00 |
|
eap
|
d6600c3aeb
|
Remove reference to NETGEN from AutomaticTetrahedralization(), a default
triangular algorithm is used.
|
2013-04-03 14:39:29 +00:00 |
|
eap
|
0f85ac62f7
|
Fix OwnHypothesis()
- if not distribHyp:
+ if not self.distribHyp:
|
2013-04-02 13:06:05 +00:00 |
|
eap
|
9c81b247e5
|
0051789: TC7.2.0: NoteBook cannot update study
In StdMeshersDC_RadialPrism3D, create LayerDistribution hyp only as needed
|
2013-03-29 13:29:39 +00:00 |
|
eap
|
35ba9b8c12
|
0051789: TC7.2.0: NoteBook cannot update study
Enable calling mesh.Prism('RadialPrism_3D')
+class StdMeshersDC_RadialPrism3D(StdMeshersDC_Prism3D):
+ ...
|
2013-03-29 13:17:47 +00:00 |
|
akl
|
f89c0586c1
|
Copyrights update 2013
|
2013-03-29 08:57:56 +00:00 |
|
eap
|
ea15756a03
|
0051843: TC7.2.0: script SMESH_hexaedre ends with error
make the script independent of order of edges in geometry
|
2013-03-27 16:07:12 +00:00 |
|
eap
|
dbd3054f4f
|
Fix FirstVertexOnCurve(edge): use MakeVertexOnCurve() instead of
KindOfShape() to find the EDGE beginning
|
2013-03-12 11:28:32 +00:00 |
|
eap
|
77f09a6ae5
|
def FindHypothesis (self, hypname, args, CompareMethod, smeshpyD):
study = smeshpyD.GetCurrentStudy()
+ if not study: return None
scomp = study.FindComponent(smeshpyD.ComponentDataType())
|
2013-03-06 16:03:18 +00:00 |
|
eap
|
31345e6622
|
In Translate*() allow for definition of Vector as a list of 3 components
|
2013-03-06 13:36:33 +00:00 |
|
eap
|
e8589cb6af
|
0021859: SMESH : Add conversion from QUAD8 to QUAD9 and from HEXA20 to HEXA27
- def ConvertToQuadratic(self, theForce3d, theSubMesh=None):
+ def ConvertToQuadratic(self, theForce3d, theSubMesh=None, theToBiQuad=False):
|
2013-03-06 08:31:58 +00:00 |
|
vsr
|
097db70a03
|
0022080: [CEA 756] Regression: error at libMEDMEM_Swig.MESH function call
|
2013-01-25 09:00:47 +00:00 |
|
eap
|
f5335851f1
|
fix mesh name at "m = smesh.Mesh(mesh)"
|
2013-01-22 12:40:21 +00:00 |
|
eap
|
7f2264006b
|
fix exception at "m = smesh.Mesh()"
|
2013-01-22 12:01:47 +00:00 |
|
eap
|
577999dffd
|
make Mesh.MeshDimension() work in case w/o geometry
|
2013-01-22 09:08:00 +00:00 |
|
vsr
|
08b70d2054
|
Fix regression in RemoveHypothesis() method (hypothesis is not removed if mesh does not have underlying shape) caused by previous integrations
|
2013-01-15 12:26:34 +00:00 |
|
eap
|
ab3feed3ba
|
improve default naming of meshes and geometry to mesh
|
2013-01-11 12:54:18 +00:00 |
|
eap
|
fb1aabb3d1
|
minor
|
2013-01-11 12:01:00 +00:00 |
|
eap
|
6f564a0788
|
In RemoveHypothesis() print a WARNING if the hypothesis was not
assigned to the given shape
|
2013-01-10 11:30:44 +00:00 |
|
eap
|
e9bec6bddf
|
missing @param description
|
2012-12-28 16:26:40 +00:00 |
|
eap
|
d7b0855638
|
prevent GetName() failure on a not CORBA object
|
2012-12-28 15:50:11 +00:00 |
|
vsr
|
1e288edaa1
|
Imp: show element position in a mesh information dialog box
|
2012-12-20 05:59:39 +00:00 |
|
eap
|
c8b155a155
|
Add an arg to Concatenate() specifying a name of a new mesh
|
2012-12-18 17:49:25 +00:00 |
|
eap
|
9ed5632be0
|
22017: [CEA 739] Get an error code returned by cadsurf_set_param
Remove "Salome " from "Salome Exception" prefix returned by
SALOME_Exception::what() while composing an error message
|
2012-12-18 13:33:32 +00:00 |
|
eap
|
4f0a26fa4d
|
Allow for definition of sweep vector by 3 vector components
|
2012-12-17 16:17:54 +00:00 |
|
eap
|
873eca935e
|
21948: EDF SMESH : Memory is not freed when deleting a mesh
UnRegister filter manager etc
|
2012-12-14 13:56:22 +00:00 |
|
vsr
|
13ff1c4641
|
Merge from V6_6_BR (V6_6_0rc2) 11/12/2012
|
2012-12-11 13:23:39 +00:00 |
|
eap
|
2c227fc6a5
|
0021543: EDF 1978 SMESH: Viscous layer for 2D meshes
+ def ViscousLayers2D(self, thickness, numberOfLayers, stretchFactor, ignoreEdges=[]):
|
2012-10-15 14:39:03 +00:00 |
|
eap
|
0bea71e671
|
021382: EDF 1985 SMESH: Read/write of .mesh files (GMF format)
+ def ExportGMF(self, f, meshPart=None):
+ def CreateMeshesFromGMF( self, theFileName ):
|
2012-09-24 11:32:03 +00:00 |
|
eap
|
0798335da8
|
def GetMeshEditor(self):
- return self.mesh.GetMeshEditor()
+ return self.editor
|
2012-09-17 10:23:15 +00:00 |
|
eap
|
db07298a81
|
Call a not published shape to mesh by name of the mesh if provided
|
2012-09-07 14:12:35 +00:00 |
|
prascle
|
7446d65dcb
|
PR: tools for crack meshing : detection of elements affected by node duplication, identification of elements near a geom shape, to create a hole, creation of the skin of the future hole
|
2012-09-04 13:54:50 +00:00 |
|
eap
|
ff33a26505
|
0021823: [CEA 649] Compute failed without any errors
report a warning if no elements are assigned to a sub-shape
|
2012-08-30 07:50:03 +00:00 |
|
vsr
|
3c9be5dcb8
|
Improvement of Python API documentation (SMESH and plugins):
- move base Mesh_Algorithm class to the separate python module
|
2012-08-24 05:52:39 +00:00 |
|
vsr
|
7ab128efcd
|
Improvement of Python API documentation (SMESH and plugins):
- move base Mesh_Algorithm class to the separate python module
|
2012-08-24 05:32:18 +00:00 |
|
vsr
|
b010d641ff
|
Add missing docHelper attributes
|
2012-08-23 07:35:00 +00:00 |
|
vsr
|
5e2d03fd99
|
0021308: EDF 1923 SMESH: Remove hard-coded dependency of the external mesh plugins from the SMESH module
* Improve documentation for meshing plug-ins (in particular, dynamically added methods)
|
2012-08-22 07:33:58 +00:00 |
|
vsr
|
a4ca8bc3bc
|
0021308: EDF 1923 SMESH: Remove hard-coded dependency of the external mesh plugins from the SMESH module
* Improve documentation for meshing plug-ins (in particular, dynamically added methods)
|
2012-08-22 05:45:47 +00:00 |
|
vsr
|
a22deee34c
|
0021308: EDF 1923 SMESH: Remove hard-coded dependency of the external mesh plugins from the SMESH module
* Improve documentation for meshing plug-ins (in particular, dynamically added methods)
|
2012-08-21 13:49:35 +00:00 |
|
vsr
|
9423cdc0ef
|
0021308: EDF 1923 SMESH: Remove hard-coded dependency of the external mesh plugins from the SMESH module
* Improve documentation for meshing plug-ins (in particular, dynamically added methods)
|
2012-08-21 13:15:16 +00:00 |
|
eap
|
672396228a
|
more info on GetPointState()
|
2012-07-23 08:14:11 +00:00 |
|
eap
|
1d17e561d7
|
0021459: EDF 1495 SMESH: Manipulation of discrete elements with attributes
|
2012-07-19 13:26:17 +00:00 |
|
eap
|
c4e4c8b73c
|
fix GetSubMeshNodesId()
|
2012-07-18 12:41:15 +00:00 |
|
eap
|
e24d326fce
|
Improve comments
|
2012-07-11 08:20:12 +00:00 |
|
eap
|
c28b4480af
|
0021542: EDF 1699 SMESH: Reorient a group of faces
+ def Reorient2D(self, the2DObject, theDirection, theFaceOrPoint ):
|
2012-06-29 13:56:13 +00:00 |
|
vsr
|
d4a710ce52
|
Merge from V6_5_BR 05/06/2012
|
2012-06-05 12:18:07 +00:00 |
|
rnv
|
d44f22428b
|
0021308: EDF 1923 SMESH: Remove hard-coded dependency of the external mesh plugins from the SMESH module: Update documentation.
|
2012-03-27 12:52:59 +00:00 |
|
eap
|
ae4c8e00df
|
fix raising exception in algoCreator.__call__()
|
2012-03-23 11:55:39 +00:00 |
|
eap
|
5ea2cc6434
|
0021526: EDF 1855 SMESH: Regression in the Radial Quadrangle hypothesis
fix algoCreator.__call__()
|
2012-03-21 10:22:32 +00:00 |
|
eap
|
bf4cd9150f
|
0021522: EDF 573 SMESH: Regression in RotationSweep
- MaxAngle,Parameters = ParseAngles(MaxAngle)
+ MaxAngle,Parameters,hasVars = ParseAngles(MaxAngle)
|
2012-03-19 14:55:51 +00:00 |
|