medcoupling 9.13.0__cp311-cp311-win_amd64.whl → 9.15.0__cp311-cp311-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- CaseIO.py +27 -8
- CaseReader.py +491 -275
- CaseWriter.py +344 -172
- MCMailFileReader.py +412 -0
- MEDCouplingCompat.py +221 -0
- MEDCouplingRemapper.py +407 -4
- MEDLoader.py +267 -0
- MEDLoaderFinalize.py +626 -12
- MEDLoaderSplitter.py +141 -100
- MEDRenumber.py +221 -0
- VTKReader.py +314 -151
- _MEDCouplingCompat.pyd +0 -0
- _MEDCouplingRemapper.pyd +0 -0
- _MEDLoader.pyd +0 -0
- _MEDPartitioner.pyd +0 -0
- _MEDRenumber.pyd +0 -0
- _medcoupling.pyd +0 -0
- geom2medcoupling.py +34 -17
- hdf5.dll +0 -0
- interpkernel.dll +0 -0
- libxml2.dll +0 -0
- medC.dll +0 -0
- {medcoupling-9.13.0.dist-info → medcoupling-9.15.0.dist-info}/METADATA +12 -17
- medcoupling-9.15.0.dist-info/RECORD +31 -0
- medcoupling.dll +0 -0
- medcoupling.py +467 -4
- medcouplingremapper.dll +0 -0
- medicoco.dll +0 -0
- medloader.dll +0 -0
- medpartitionercpp.dll +0 -0
- renumbercpp.dll +0 -0
- vtk2medcoupling.py +273 -17
- medcoupling-9.13.0.dist-info/RECORD +0 -30
- {medcoupling-9.13.0.dist-info → medcoupling-9.15.0.dist-info}/WHEEL +0 -0
medcoupling.py
CHANGED
@@ -1625,6 +1625,21 @@ class DataArrayFloat(DataArray):
|
|
1625
1625
|
"""
|
1626
1626
|
return _medcoupling.DataArrayFloat_Meld(a1, a2)
|
1627
1627
|
|
1628
|
+
@staticmethod
|
1629
|
+
def LoadForDbg(fileName):
|
1630
|
+
r"""
|
1631
|
+
LoadForDbg(std::string const & fileName) -> MCAuto< MEDCoupling::DataArrayFloat >
|
1632
|
+
1
|
1633
|
+
"""
|
1634
|
+
return _medcoupling.DataArrayFloat_LoadForDbg(fileName)
|
1635
|
+
|
1636
|
+
def writeForDbg(self, fileName):
|
1637
|
+
r"""
|
1638
|
+
writeForDbg(DataArrayFloat self, std::string const & fileName)
|
1639
|
+
1
|
1640
|
+
"""
|
1641
|
+
return _medcoupling.DataArrayFloat_writeForDbg(self, fileName)
|
1642
|
+
|
1628
1643
|
@staticmethod
|
1629
1644
|
def New(*args):
|
1630
1645
|
r"""
|
@@ -2036,6 +2051,13 @@ class DataArrayDouble(DataArray):
|
|
2036
2051
|
"""
|
2037
2052
|
return _medcoupling.DataArrayDouble_duplicateEachTupleNTimes(self, nbTimes)
|
2038
2053
|
|
2054
|
+
def duplicateNTimes(self, nbTimes):
|
2055
|
+
r"""
|
2056
|
+
duplicateNTimes(DataArrayDouble self, mcIdType nbTimes) -> MCAuto< MEDCoupling::DataArrayDouble >
|
2057
|
+
1
|
2058
|
+
"""
|
2059
|
+
return _medcoupling.DataArrayDouble_duplicateNTimes(self, nbTimes)
|
2060
|
+
|
2039
2061
|
def getDifferentValues(self, prec, limitTupleId=-1):
|
2040
2062
|
r"""
|
2041
2063
|
getDifferentValues(DataArrayDouble self, double prec, int limitTupleId=-1) -> DataArrayDouble
|
@@ -2636,6 +2658,21 @@ class DataArrayDouble(DataArray):
|
|
2636
2658
|
"""
|
2637
2659
|
return _medcoupling.DataArrayDouble_convertToFloatArr(self)
|
2638
2660
|
|
2661
|
+
@staticmethod
|
2662
|
+
def LoadForDbg(fileName):
|
2663
|
+
r"""
|
2664
|
+
LoadForDbg(std::string const & fileName) -> MCAuto< MEDCoupling::DataArrayDouble >
|
2665
|
+
1
|
2666
|
+
"""
|
2667
|
+
return _medcoupling.DataArrayDouble_LoadForDbg(fileName)
|
2668
|
+
|
2669
|
+
def writeForDbg(self, fileName):
|
2670
|
+
r"""
|
2671
|
+
writeForDbg(DataArrayDouble self, std::string const & fileName)
|
2672
|
+
1
|
2673
|
+
"""
|
2674
|
+
return _medcoupling.DataArrayDouble_writeForDbg(self, fileName)
|
2675
|
+
|
2639
2676
|
@staticmethod
|
2640
2677
|
def New(*args):
|
2641
2678
|
r"""
|
@@ -3529,6 +3566,14 @@ class DataArrayByte(DataArrayChar):
|
|
3529
3566
|
"""
|
3530
3567
|
return _medcoupling.DataArrayByte_byteValue(self)
|
3531
3568
|
|
3569
|
+
@staticmethod
|
3570
|
+
def LoadForDbg(fileName):
|
3571
|
+
r"""
|
3572
|
+
LoadForDbg(std::string const & fileName) -> MCAuto< MEDCoupling::DataArrayByte >
|
3573
|
+
1
|
3574
|
+
"""
|
3575
|
+
return _medcoupling.DataArrayByte_LoadForDbg(fileName)
|
3576
|
+
|
3532
3577
|
@staticmethod
|
3533
3578
|
def New(*args):
|
3534
3579
|
r"""
|
@@ -4493,6 +4538,13 @@ class DataArrayInt32(DataArray):
|
|
4493
4538
|
"""
|
4494
4539
|
return _medcoupling.DataArrayInt32_abs(self)
|
4495
4540
|
|
4541
|
+
def sortPerTuple(self, asc):
|
4542
|
+
r"""
|
4543
|
+
sortPerTuple(DataArrayInt32 self, bool asc)
|
4544
|
+
1
|
4545
|
+
"""
|
4546
|
+
return _medcoupling.DataArrayInt32_sortPerTuple(self, asc)
|
4547
|
+
|
4496
4548
|
def computeAbs(self):
|
4497
4549
|
r"""
|
4498
4550
|
computeAbs(DataArrayInt32 self) -> DataArrayInt32
|
@@ -4720,6 +4772,13 @@ class DataArrayInt32(DataArray):
|
|
4720
4772
|
"""
|
4721
4773
|
return _medcoupling.DataArrayInt32_duplicateEachTupleNTimes(self, nbTimes)
|
4722
4774
|
|
4775
|
+
def duplicateNTimes(self, nbTimes):
|
4776
|
+
r"""
|
4777
|
+
duplicateNTimes(DataArrayInt32 self, mcIdType nbTimes) -> MCAuto< MEDCoupling::DataArrayInt32 >
|
4778
|
+
1
|
4779
|
+
"""
|
4780
|
+
return _medcoupling.DataArrayInt32_duplicateNTimes(self, nbTimes)
|
4781
|
+
|
4723
4782
|
def getDifferentValues(self):
|
4724
4783
|
r"""
|
4725
4784
|
getDifferentValues(DataArrayInt32 self) -> DataArrayInt32
|
@@ -4817,6 +4876,21 @@ class DataArrayInt32(DataArray):
|
|
4817
4876
|
"""
|
4818
4877
|
return _medcoupling.DataArrayInt32_powEqual(self, other)
|
4819
4878
|
|
4879
|
+
@staticmethod
|
4880
|
+
def LoadForDbg(fileName):
|
4881
|
+
r"""
|
4882
|
+
LoadForDbg(std::string const & fileName) -> MCAuto< MEDCoupling::DataArrayInt32 >
|
4883
|
+
1
|
4884
|
+
"""
|
4885
|
+
return _medcoupling.DataArrayInt32_LoadForDbg(fileName)
|
4886
|
+
|
4887
|
+
def writeForDbg(self, fileName):
|
4888
|
+
r"""
|
4889
|
+
writeForDbg(DataArrayInt32 self, std::string const & fileName)
|
4890
|
+
1
|
4891
|
+
"""
|
4892
|
+
return _medcoupling.DataArrayInt32_writeForDbg(self, fileName)
|
4893
|
+
|
4820
4894
|
def fromLinkedListOfPairToList(self):
|
4821
4895
|
r"""
|
4822
4896
|
fromLinkedListOfPairToList(DataArrayInt32 self) -> MCAuto< MEDCoupling::DataArrayInt32 >
|
@@ -5368,6 +5442,20 @@ class DataArrayInt32(DataArray):
|
|
5368
5442
|
"""
|
5369
5443
|
return _medcoupling.DataArrayInt32_findIdsRangesInListOfIds(self, listOfIds)
|
5370
5444
|
|
5445
|
+
def forThisAsPartitionBuildReduction(self, commonEntities, commonEntitiesIndex):
|
5446
|
+
r"""
|
5447
|
+
forThisAsPartitionBuildReduction(DataArrayInt32 self, DataArrayInt32 commonEntities, DataArrayInt32 commonEntitiesIndex) -> PyObject *
|
5448
|
+
1
|
5449
|
+
"""
|
5450
|
+
return _medcoupling.DataArrayInt32_forThisAsPartitionBuildReduction(self, commonEntities, commonEntitiesIndex)
|
5451
|
+
|
5452
|
+
def fromListOfPairsToIndexArray(self):
|
5453
|
+
r"""
|
5454
|
+
fromListOfPairsToIndexArray(DataArrayInt32 self) -> PyObject *
|
5455
|
+
1
|
5456
|
+
"""
|
5457
|
+
return _medcoupling.DataArrayInt32_fromListOfPairsToIndexArray(self)
|
5458
|
+
|
5371
5459
|
def isRange(self):
|
5372
5460
|
r"""
|
5373
5461
|
isRange(DataArrayInt32 self) -> PyObject *
|
@@ -5383,6 +5471,13 @@ class DataArrayInt32(DataArray):
|
|
5383
5471
|
"""
|
5384
5472
|
return _medcoupling.DataArrayInt32_RemoveIdsFromIndexedArrays(li, arr, arrIndx, offsetForRemoval)
|
5385
5473
|
|
5474
|
+
def findCommonTuples(self, limitNodeId=-1):
|
5475
|
+
r"""
|
5476
|
+
findCommonTuples(DataArrayInt32 self, mcIdType limitNodeId=-1) -> PyObject
|
5477
|
+
1
|
5478
|
+
"""
|
5479
|
+
return _medcoupling.DataArrayInt32_findCommonTuples(self, limitNodeId)
|
5480
|
+
|
5386
5481
|
@staticmethod
|
5387
5482
|
def ExtractFromIndexedArrays(li, arrIn, arrIndxIn):
|
5388
5483
|
r"""
|
@@ -5408,6 +5503,30 @@ class DataArrayInt32(DataArray):
|
|
5408
5503
|
"""
|
5409
5504
|
return _medcoupling.DataArrayInt32_SetPartOfIndexedArrays(li, arrIn, arrIndxIn, srcArr, srcArrIndex)
|
5410
5505
|
|
5506
|
+
@staticmethod
|
5507
|
+
def FromVTKInternalReprOfPolyedra(arrIn, arrIndxIn):
|
5508
|
+
r"""
|
5509
|
+
FromVTKInternalReprOfPolyedra(DataArrayInt32 arrIn, DataArrayInt32 arrIndxIn) -> PyObject *
|
5510
|
+
1
|
5511
|
+
"""
|
5512
|
+
return _medcoupling.DataArrayInt32_FromVTKInternalReprOfPolyedra(arrIn, arrIndxIn)
|
5513
|
+
|
5514
|
+
@staticmethod
|
5515
|
+
def FromVTK94InternalReprOfPolyedra(arrIn, arrIndxIn, arrIndxIn2):
|
5516
|
+
r"""
|
5517
|
+
FromVTK94InternalReprOfPolyedra(DataArrayInt32 arrIn, DataArrayInt32 arrIndxIn, DataArrayInt32 arrIndxIn2) -> PyObject *
|
5518
|
+
1
|
5519
|
+
"""
|
5520
|
+
return _medcoupling.DataArrayInt32_FromVTK94InternalReprOfPolyedra(arrIn, arrIndxIn, arrIndxIn2)
|
5521
|
+
|
5522
|
+
@staticmethod
|
5523
|
+
def FromVTK93To94FacesInternaReprOfPolyedra(arrIn, arrIndxIn):
|
5524
|
+
r"""
|
5525
|
+
FromVTK93To94FacesInternaReprOfPolyedra(DataArrayInt32 arrIn, DataArrayInt32 arrIndxIn) -> PyObject *
|
5526
|
+
1
|
5527
|
+
"""
|
5528
|
+
return _medcoupling.DataArrayInt32_FromVTK93To94FacesInternaReprOfPolyedra(arrIn, arrIndxIn)
|
5529
|
+
|
5411
5530
|
@staticmethod
|
5412
5531
|
def SetPartOfIndexedArraysSameIdx(li, arrIn, arrIndxIn, srcArr, srcArrIndex):
|
5413
5532
|
r"""
|
@@ -6092,6 +6211,13 @@ class DataArrayInt64(DataArray):
|
|
6092
6211
|
"""
|
6093
6212
|
return _medcoupling.DataArrayInt64_abs(self)
|
6094
6213
|
|
6214
|
+
def sortPerTuple(self, asc):
|
6215
|
+
r"""
|
6216
|
+
sortPerTuple(DataArrayInt64 self, bool asc)
|
6217
|
+
1
|
6218
|
+
"""
|
6219
|
+
return _medcoupling.DataArrayInt64_sortPerTuple(self, asc)
|
6220
|
+
|
6095
6221
|
def computeAbs(self):
|
6096
6222
|
r"""
|
6097
6223
|
computeAbs(DataArrayInt64 self) -> DataArrayInt64
|
@@ -6319,6 +6445,13 @@ class DataArrayInt64(DataArray):
|
|
6319
6445
|
"""
|
6320
6446
|
return _medcoupling.DataArrayInt64_duplicateEachTupleNTimes(self, nbTimes)
|
6321
6447
|
|
6448
|
+
def duplicateNTimes(self, nbTimes):
|
6449
|
+
r"""
|
6450
|
+
duplicateNTimes(DataArrayInt64 self, mcIdType nbTimes) -> MCAuto< MEDCoupling::DataArrayInt64 >
|
6451
|
+
1
|
6452
|
+
"""
|
6453
|
+
return _medcoupling.DataArrayInt64_duplicateNTimes(self, nbTimes)
|
6454
|
+
|
6322
6455
|
def getDifferentValues(self):
|
6323
6456
|
r"""
|
6324
6457
|
getDifferentValues(DataArrayInt64 self) -> DataArrayInt64
|
@@ -6416,6 +6549,21 @@ class DataArrayInt64(DataArray):
|
|
6416
6549
|
"""
|
6417
6550
|
return _medcoupling.DataArrayInt64_powEqual(self, other)
|
6418
6551
|
|
6552
|
+
@staticmethod
|
6553
|
+
def LoadForDbg(fileName):
|
6554
|
+
r"""
|
6555
|
+
LoadForDbg(std::string const & fileName) -> MCAuto< MEDCoupling::DataArrayInt64 >
|
6556
|
+
1
|
6557
|
+
"""
|
6558
|
+
return _medcoupling.DataArrayInt64_LoadForDbg(fileName)
|
6559
|
+
|
6560
|
+
def writeForDbg(self, fileName):
|
6561
|
+
r"""
|
6562
|
+
writeForDbg(DataArrayInt64 self, std::string const & fileName)
|
6563
|
+
1
|
6564
|
+
"""
|
6565
|
+
return _medcoupling.DataArrayInt64_writeForDbg(self, fileName)
|
6566
|
+
|
6419
6567
|
def fromLinkedListOfPairToList(self):
|
6420
6568
|
r"""
|
6421
6569
|
fromLinkedListOfPairToList(DataArrayInt64 self) -> MCAuto< MEDCoupling::DataArrayInt64 >
|
@@ -6967,6 +7115,20 @@ class DataArrayInt64(DataArray):
|
|
6967
7115
|
"""
|
6968
7116
|
return _medcoupling.DataArrayInt64_findIdsRangesInListOfIds(self, listOfIds)
|
6969
7117
|
|
7118
|
+
def forThisAsPartitionBuildReduction(self, commonEntities, commonEntitiesIndex):
|
7119
|
+
r"""
|
7120
|
+
forThisAsPartitionBuildReduction(DataArrayInt64 self, DataArrayInt32 commonEntities, DataArrayInt32 commonEntitiesIndex) -> PyObject *
|
7121
|
+
1
|
7122
|
+
"""
|
7123
|
+
return _medcoupling.DataArrayInt64_forThisAsPartitionBuildReduction(self, commonEntities, commonEntitiesIndex)
|
7124
|
+
|
7125
|
+
def fromListOfPairsToIndexArray(self):
|
7126
|
+
r"""
|
7127
|
+
fromListOfPairsToIndexArray(DataArrayInt64 self) -> PyObject *
|
7128
|
+
1
|
7129
|
+
"""
|
7130
|
+
return _medcoupling.DataArrayInt64_fromListOfPairsToIndexArray(self)
|
7131
|
+
|
6970
7132
|
def isRange(self):
|
6971
7133
|
r"""
|
6972
7134
|
isRange(DataArrayInt64 self) -> PyObject *
|
@@ -6982,6 +7144,13 @@ class DataArrayInt64(DataArray):
|
|
6982
7144
|
"""
|
6983
7145
|
return _medcoupling.DataArrayInt64_RemoveIdsFromIndexedArrays(li, arr, arrIndx, offsetForRemoval)
|
6984
7146
|
|
7147
|
+
def findCommonTuples(self, limitNodeId=-1):
|
7148
|
+
r"""
|
7149
|
+
findCommonTuples(DataArrayInt64 self, mcIdType limitNodeId=-1) -> PyObject
|
7150
|
+
1
|
7151
|
+
"""
|
7152
|
+
return _medcoupling.DataArrayInt64_findCommonTuples(self, limitNodeId)
|
7153
|
+
|
6985
7154
|
@staticmethod
|
6986
7155
|
def ExtractFromIndexedArrays(li, arrIn, arrIndxIn):
|
6987
7156
|
r"""
|
@@ -7007,6 +7176,30 @@ class DataArrayInt64(DataArray):
|
|
7007
7176
|
"""
|
7008
7177
|
return _medcoupling.DataArrayInt64_SetPartOfIndexedArrays(li, arrIn, arrIndxIn, srcArr, srcArrIndex)
|
7009
7178
|
|
7179
|
+
@staticmethod
|
7180
|
+
def FromVTKInternalReprOfPolyedra(arrIn, arrIndxIn):
|
7181
|
+
r"""
|
7182
|
+
FromVTKInternalReprOfPolyedra(DataArrayInt64 arrIn, DataArrayInt32 arrIndxIn) -> PyObject *
|
7183
|
+
1
|
7184
|
+
"""
|
7185
|
+
return _medcoupling.DataArrayInt64_FromVTKInternalReprOfPolyedra(arrIn, arrIndxIn)
|
7186
|
+
|
7187
|
+
@staticmethod
|
7188
|
+
def FromVTK94InternalReprOfPolyedra(arrIn, arrIndxIn, arrIndxIn2):
|
7189
|
+
r"""
|
7190
|
+
FromVTK94InternalReprOfPolyedra(DataArrayInt64 arrIn, DataArrayInt32 arrIndxIn, DataArrayInt32 arrIndxIn2) -> PyObject *
|
7191
|
+
1
|
7192
|
+
"""
|
7193
|
+
return _medcoupling.DataArrayInt64_FromVTK94InternalReprOfPolyedra(arrIn, arrIndxIn, arrIndxIn2)
|
7194
|
+
|
7195
|
+
@staticmethod
|
7196
|
+
def FromVTK93To94FacesInternaReprOfPolyedra(arrIn, arrIndxIn):
|
7197
|
+
r"""
|
7198
|
+
FromVTK93To94FacesInternaReprOfPolyedra(DataArrayInt64 arrIn, DataArrayInt32 arrIndxIn) -> PyObject *
|
7199
|
+
1
|
7200
|
+
"""
|
7201
|
+
return _medcoupling.DataArrayInt64_FromVTK93To94FacesInternaReprOfPolyedra(arrIn, arrIndxIn)
|
7202
|
+
|
7010
7203
|
@staticmethod
|
7011
7204
|
def SetPartOfIndexedArraysSameIdx(li, arrIn, arrIndxIn, srcArr, srcArrIndex):
|
7012
7205
|
r"""
|
@@ -9089,6 +9282,13 @@ class MEDCouplingFieldDiscretizationOnNodesFE(MEDCouplingFieldDiscretizationOnNo
|
|
9089
9282
|
1
|
9090
9283
|
"""
|
9091
9284
|
return _medcoupling.MEDCouplingFieldDiscretizationOnNodesFE_getCooInRefElement(self, mesh, locs)
|
9285
|
+
|
9286
|
+
def getClosestCooInRefElement(self, mesh, locs):
|
9287
|
+
r"""
|
9288
|
+
getClosestCooInRefElement(MEDCouplingFieldDiscretizationOnNodesFE self, MEDCouplingMesh mesh, PyObject * locs) -> DataArrayDouble
|
9289
|
+
1
|
9290
|
+
"""
|
9291
|
+
return _medcoupling.MEDCouplingFieldDiscretizationOnNodesFE_getClosestCooInRefElement(self, mesh, locs)
|
9092
9292
|
__swig_destroy__ = _medcoupling.delete_MEDCouplingFieldDiscretizationOnNodesFE
|
9093
9293
|
|
9094
9294
|
# Register MEDCouplingFieldDiscretizationOnNodesFE in _medcoupling:
|
@@ -10049,6 +10249,13 @@ class MEDCouplingUMesh(MEDCouplingPointSet):
|
|
10049
10249
|
"""
|
10050
10250
|
return _medcoupling.MEDCouplingUMesh_changeOrientationOfCells(self)
|
10051
10251
|
|
10252
|
+
def orientCorrectly3DCells(self):
|
10253
|
+
r"""
|
10254
|
+
orientCorrectly3DCells(MEDCouplingUMesh self)
|
10255
|
+
1
|
10256
|
+
"""
|
10257
|
+
return _medcoupling.MEDCouplingUMesh_orientCorrectly3DCells(self)
|
10258
|
+
|
10052
10259
|
def computeCellCenterOfMassWithPrecision(self, eps):
|
10053
10260
|
r"""
|
10054
10261
|
computeCellCenterOfMassWithPrecision(MEDCouplingUMesh self, double eps) -> DataArrayDouble
|
@@ -10124,6 +10331,20 @@ class MEDCouplingUMesh(MEDCouplingPointSet):
|
|
10124
10331
|
"""
|
10125
10332
|
return _medcoupling.MEDCouplingUMesh_Build1DMeshFromCoords(da)
|
10126
10333
|
|
10334
|
+
def convertToQuadraticBasedOnSeg3(self, seg3):
|
10335
|
+
r"""
|
10336
|
+
convertToQuadraticBasedOnSeg3(MEDCouplingUMesh self, MEDCoupling1SGTUMesh * seg3) -> MEDCouplingUMesh
|
10337
|
+
1
|
10338
|
+
"""
|
10339
|
+
return _medcoupling.MEDCouplingUMesh_convertToQuadraticBasedOnSeg3(self, seg3)
|
10340
|
+
|
10341
|
+
def extrudeConnectivity(self, nbOfCellsToExtrude):
|
10342
|
+
r"""
|
10343
|
+
extrudeConnectivity(MEDCouplingUMesh self, mcIdType nbOfCellsToExtrude) -> MEDCouplingUMesh
|
10344
|
+
1
|
10345
|
+
"""
|
10346
|
+
return _medcoupling.MEDCouplingUMesh_extrudeConnectivity(self, nbOfCellsToExtrude)
|
10347
|
+
|
10127
10348
|
def getAllGeoTypesSorted(self):
|
10128
10349
|
r"""
|
10129
10350
|
getAllGeoTypesSorted(MEDCouplingUMesh self) -> PyObject *
|
@@ -14718,18 +14939,153 @@ BarycentricGeo2D = _medcoupling.BarycentricGeo2D
|
|
14718
14939
|
r"""1"""
|
14719
14940
|
MappedBarycentric = _medcoupling.MappedBarycentric
|
14720
14941
|
r"""1"""
|
14721
|
-
class
|
14942
|
+
class FEInterpolationOptionsAbstract(object):
|
14943
|
+
r"""1"""
|
14944
|
+
|
14945
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
14946
|
+
|
14947
|
+
def __init__(self, *args, **kwargs):
|
14948
|
+
raise AttributeError("No constructor defined - class is abstract")
|
14949
|
+
__repr__ = _swig_repr
|
14950
|
+
|
14951
|
+
def getProjectionMaxDistance(self):
|
14952
|
+
r"""
|
14953
|
+
getProjectionMaxDistance(FEInterpolationOptionsAbstract self) -> double
|
14954
|
+
1
|
14955
|
+
"""
|
14956
|
+
return _medcoupling.FEInterpolationOptionsAbstract_getProjectionMaxDistance(self)
|
14957
|
+
|
14958
|
+
def setProjectionMaxDistance(self, projDistMax):
|
14959
|
+
r"""
|
14960
|
+
setProjectionMaxDistance(FEInterpolationOptionsAbstract self, double projDistMax)
|
14961
|
+
1
|
14962
|
+
"""
|
14963
|
+
return _medcoupling.FEInterpolationOptionsAbstract_setProjectionMaxDistance(self, projDistMax)
|
14964
|
+
|
14965
|
+
def getProjectionOnSurfStatus(self):
|
14966
|
+
r"""
|
14967
|
+
getProjectionOnSurfStatus(FEInterpolationOptionsAbstract self) -> bool
|
14968
|
+
1
|
14969
|
+
"""
|
14970
|
+
return _medcoupling.FEInterpolationOptionsAbstract_getProjectionOnSurfStatus(self)
|
14971
|
+
|
14972
|
+
def setProjectionOnSurfStatus(self, projOnSurfStatus):
|
14973
|
+
r"""
|
14974
|
+
setProjectionOnSurfStatus(FEInterpolationOptionsAbstract self, bool projOnSurfStatus)
|
14975
|
+
1
|
14976
|
+
"""
|
14977
|
+
return _medcoupling.FEInterpolationOptionsAbstract_setProjectionOnSurfStatus(self, projOnSurfStatus)
|
14978
|
+
|
14979
|
+
def getMaxDistanceStatus(self):
|
14980
|
+
r"""
|
14981
|
+
getMaxDistanceStatus(FEInterpolationOptionsAbstract self) -> bool
|
14982
|
+
1
|
14983
|
+
"""
|
14984
|
+
return _medcoupling.FEInterpolationOptionsAbstract_getMaxDistanceStatus(self)
|
14985
|
+
|
14986
|
+
def setMaxDistanceStatus(self, maxDistStatus):
|
14987
|
+
r"""
|
14988
|
+
setMaxDistanceStatus(FEInterpolationOptionsAbstract self, bool maxDistStatus)
|
14989
|
+
1
|
14990
|
+
"""
|
14991
|
+
return _medcoupling.FEInterpolationOptionsAbstract_setMaxDistanceStatus(self, maxDistStatus)
|
14992
|
+
__swig_destroy__ = _medcoupling.delete_FEInterpolationOptionsAbstract
|
14993
|
+
|
14994
|
+
# Register FEInterpolationOptionsAbstract in _medcoupling:
|
14995
|
+
_medcoupling.FEInterpolationOptionsAbstract_swigregister(FEInterpolationOptionsAbstract)
|
14996
|
+
class FEInterpolationOptions(FEInterpolationOptionsAbstract):
|
14722
14997
|
r"""1"""
|
14723
14998
|
|
14724
14999
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
14725
15000
|
__repr__ = _swig_repr
|
14726
15001
|
|
14727
15002
|
def __init__(self):
|
15003
|
+
r"""
|
15004
|
+
__init__(FEInterpolationOptions self) -> FEInterpolationOptions
|
15005
|
+
1
|
15006
|
+
"""
|
15007
|
+
_medcoupling.FEInterpolationOptions_swiginit(self, _medcoupling.new_FEInterpolationOptions())
|
15008
|
+
|
15009
|
+
def getProjectionMaxDistance(self):
|
15010
|
+
r"""
|
15011
|
+
getProjectionMaxDistance(FEInterpolationOptions self) -> double
|
15012
|
+
1
|
15013
|
+
"""
|
15014
|
+
return _medcoupling.FEInterpolationOptions_getProjectionMaxDistance(self)
|
15015
|
+
|
15016
|
+
def setProjectionMaxDistance(self, projDistMax):
|
15017
|
+
r"""
|
15018
|
+
setProjectionMaxDistance(FEInterpolationOptions self, double projDistMax)
|
15019
|
+
1
|
15020
|
+
"""
|
15021
|
+
return _medcoupling.FEInterpolationOptions_setProjectionMaxDistance(self, projDistMax)
|
15022
|
+
|
15023
|
+
def getProjectionOnSurfStatus(self):
|
15024
|
+
r"""
|
15025
|
+
getProjectionOnSurfStatus(FEInterpolationOptions self) -> bool
|
15026
|
+
1
|
15027
|
+
"""
|
15028
|
+
return _medcoupling.FEInterpolationOptions_getProjectionOnSurfStatus(self)
|
15029
|
+
|
15030
|
+
def setProjectionOnSurfStatus(self, projOnSurfStatus):
|
15031
|
+
r"""
|
15032
|
+
setProjectionOnSurfStatus(FEInterpolationOptions self, bool projOnSurfStatus)
|
15033
|
+
1
|
15034
|
+
"""
|
15035
|
+
return _medcoupling.FEInterpolationOptions_setProjectionOnSurfStatus(self, projOnSurfStatus)
|
15036
|
+
|
15037
|
+
def getMaxDistanceStatus(self):
|
15038
|
+
r"""
|
15039
|
+
getMaxDistanceStatus(FEInterpolationOptions self) -> bool
|
15040
|
+
1
|
15041
|
+
"""
|
15042
|
+
return _medcoupling.FEInterpolationOptions_getMaxDistanceStatus(self)
|
15043
|
+
|
15044
|
+
def setMaxDistanceStatus(self, maxDistStatus):
|
15045
|
+
r"""
|
15046
|
+
setMaxDistanceStatus(FEInterpolationOptions self, bool maxDistStatus)
|
15047
|
+
1
|
15048
|
+
"""
|
15049
|
+
return _medcoupling.FEInterpolationOptions_setMaxDistanceStatus(self, maxDistStatus)
|
15050
|
+
PROJ_DIST_MAX_DFT = property(_medcoupling.FEInterpolationOptions_PROJ_DIST_MAX_DFT_get, _medcoupling.FEInterpolationOptions_PROJ_DIST_MAX_DFT_set, doc=r"""
|
15051
|
+
PROJ_DIST_MAX_DFT : double
|
15052
|
+
1
|
15053
|
+
""")
|
15054
|
+
PROJ_DIST_ON_SURF_DFT = property(_medcoupling.FEInterpolationOptions_PROJ_DIST_ON_SURF_DFT_get, _medcoupling.FEInterpolationOptions_PROJ_DIST_ON_SURF_DFT_set, doc=r"""
|
15055
|
+
PROJ_DIST_ON_SURF_DFT : bool
|
15056
|
+
1
|
15057
|
+
""")
|
15058
|
+
PROJ_USE_DIST_MAX_DFT = property(_medcoupling.FEInterpolationOptions_PROJ_USE_DIST_MAX_DFT_get, _medcoupling.FEInterpolationOptions_PROJ_USE_DIST_MAX_DFT_set, doc=r"""
|
15059
|
+
PROJ_USE_DIST_MAX_DFT : bool
|
15060
|
+
1
|
15061
|
+
""")
|
15062
|
+
__swig_destroy__ = _medcoupling.delete_FEInterpolationOptions
|
15063
|
+
|
15064
|
+
# Register FEInterpolationOptions in _medcoupling:
|
15065
|
+
_medcoupling.FEInterpolationOptions_swigregister(FEInterpolationOptions)
|
15066
|
+
cvar = _medcoupling.cvar
|
15067
|
+
|
15068
|
+
class InterpolationOptions(FEInterpolationOptionsAbstract):
|
15069
|
+
r"""1"""
|
15070
|
+
|
15071
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
15072
|
+
__repr__ = _swig_repr
|
15073
|
+
|
15074
|
+
def __init__(self, *args):
|
14728
15075
|
r"""
|
14729
15076
|
__init__(InterpolationOptions self) -> InterpolationOptions
|
15077
|
+
__init__(InterpolationOptions self, InterpolationOptions other) -> InterpolationOptions
|
14730
15078
|
1
|
14731
15079
|
"""
|
14732
|
-
_medcoupling.InterpolationOptions_swiginit(self, _medcoupling.new_InterpolationOptions())
|
15080
|
+
_medcoupling.InterpolationOptions_swiginit(self, _medcoupling.new_InterpolationOptions(*args))
|
15081
|
+
__swig_destroy__ = _medcoupling.delete_InterpolationOptions
|
15082
|
+
|
15083
|
+
def assign(self, other):
|
15084
|
+
r"""
|
15085
|
+
assign(InterpolationOptions self, InterpolationOptions other) -> InterpolationOptions
|
15086
|
+
1
|
15087
|
+
"""
|
15088
|
+
return _medcoupling.InterpolationOptions_assign(self, other)
|
14733
15089
|
|
14734
15090
|
def getPrintLevel(self):
|
14735
15091
|
r"""
|
@@ -14892,6 +15248,55 @@ class InterpolationOptions(object):
|
|
14892
15248
|
"""
|
14893
15249
|
return _medcoupling.InterpolationOptions_setMeasureAbsStatus(self, newStatus)
|
14894
15250
|
|
15251
|
+
def getFEOptions(self):
|
15252
|
+
r"""
|
15253
|
+
getFEOptions(InterpolationOptions self) -> FEInterpolationOptions
|
15254
|
+
1
|
15255
|
+
"""
|
15256
|
+
return _medcoupling.InterpolationOptions_getFEOptions(self)
|
15257
|
+
|
15258
|
+
def getProjectionMaxDistance(self):
|
15259
|
+
r"""
|
15260
|
+
getProjectionMaxDistance(InterpolationOptions self) -> double
|
15261
|
+
1
|
15262
|
+
"""
|
15263
|
+
return _medcoupling.InterpolationOptions_getProjectionMaxDistance(self)
|
15264
|
+
|
15265
|
+
def setProjectionMaxDistance(self, projDistMax):
|
15266
|
+
r"""
|
15267
|
+
setProjectionMaxDistance(InterpolationOptions self, double projDistMax)
|
15268
|
+
1
|
15269
|
+
"""
|
15270
|
+
return _medcoupling.InterpolationOptions_setProjectionMaxDistance(self, projDistMax)
|
15271
|
+
|
15272
|
+
def getProjectionOnSurfStatus(self):
|
15273
|
+
r"""
|
15274
|
+
getProjectionOnSurfStatus(InterpolationOptions self) -> bool
|
15275
|
+
1
|
15276
|
+
"""
|
15277
|
+
return _medcoupling.InterpolationOptions_getProjectionOnSurfStatus(self)
|
15278
|
+
|
15279
|
+
def setProjectionOnSurfStatus(self, projOnSurfStatus):
|
15280
|
+
r"""
|
15281
|
+
setProjectionOnSurfStatus(InterpolationOptions self, bool projOnSurfStatus)
|
15282
|
+
1
|
15283
|
+
"""
|
15284
|
+
return _medcoupling.InterpolationOptions_setProjectionOnSurfStatus(self, projOnSurfStatus)
|
15285
|
+
|
15286
|
+
def getMaxDistanceStatus(self):
|
15287
|
+
r"""
|
15288
|
+
getMaxDistanceStatus(InterpolationOptions self) -> bool
|
15289
|
+
1
|
15290
|
+
"""
|
15291
|
+
return _medcoupling.InterpolationOptions_getMaxDistanceStatus(self)
|
15292
|
+
|
15293
|
+
def setMaxDistanceStatus(self, maxDistStatus):
|
15294
|
+
r"""
|
15295
|
+
setMaxDistanceStatus(InterpolationOptions self, bool maxDistStatus)
|
15296
|
+
1
|
15297
|
+
"""
|
15298
|
+
return _medcoupling.InterpolationOptions_setMaxDistanceStatus(self, maxDistStatus)
|
15299
|
+
|
14895
15300
|
def getSplittingPolicy(self):
|
14896
15301
|
r"""
|
14897
15302
|
getSplittingPolicy(InterpolationOptions self) -> INTERP_KERNEL::SplittingPolicy
|
@@ -14976,11 +15381,9 @@ class InterpolationOptions(object):
|
|
14976
15381
|
1
|
14977
15382
|
"""
|
14978
15383
|
return _medcoupling.InterpolationOptions_CheckAndSplitInterpolationMethod(method, srcMeth, trgMeth)
|
14979
|
-
__swig_destroy__ = _medcoupling.delete_InterpolationOptions
|
14980
15384
|
|
14981
15385
|
# Register InterpolationOptions in _medcoupling:
|
14982
15386
|
_medcoupling.InterpolationOptions_swigregister(InterpolationOptions)
|
14983
|
-
cvar = _medcoupling.cvar
|
14984
15387
|
InterpolationOptions.PRECISION_STR = _medcoupling.cvar.InterpolationOptions_PRECISION_STR
|
14985
15388
|
InterpolationOptions.MEDIANE_PLANE_STR = _medcoupling.cvar.InterpolationOptions_MEDIANE_PLANE_STR
|
14986
15389
|
InterpolationOptions.BOUNDING_BOX_ADJ_STR = _medcoupling.cvar.InterpolationOptions_BOUNDING_BOX_ADJ_STR
|
@@ -15726,6 +16129,27 @@ class MEDFileWritableStandAlone(MEDFileWritable):
|
|
15726
16129
|
"""
|
15727
16130
|
return _medcoupling.MEDFileWritableStandAlone_write30(self, fileName, mode)
|
15728
16131
|
|
16132
|
+
def write40(self, fileName, mode):
|
16133
|
+
r"""
|
16134
|
+
write40(MEDFileWritableStandAlone self, std::string const & fileName, int mode)
|
16135
|
+
1
|
16136
|
+
"""
|
16137
|
+
return _medcoupling.MEDFileWritableStandAlone_write40(self, fileName, mode)
|
16138
|
+
|
16139
|
+
def write41(self, fileName, mode):
|
16140
|
+
r"""
|
16141
|
+
write41(MEDFileWritableStandAlone self, std::string const & fileName, int mode)
|
16142
|
+
1
|
16143
|
+
"""
|
16144
|
+
return _medcoupling.MEDFileWritableStandAlone_write41(self, fileName, mode)
|
16145
|
+
|
16146
|
+
def writeXX(self, fileName, mode, maj, min, rel):
|
16147
|
+
r"""
|
16148
|
+
writeXX(MEDFileWritableStandAlone self, std::string const & fileName, int mode, int maj, int min, int rel)
|
16149
|
+
1
|
16150
|
+
"""
|
16151
|
+
return _medcoupling.MEDFileWritableStandAlone_writeXX(self, fileName, mode, maj, min, rel)
|
16152
|
+
|
15729
16153
|
def serialize(self):
|
15730
16154
|
r"""
|
15731
16155
|
serialize(MEDFileWritableStandAlone self) -> DataArrayByte
|
@@ -19076,6 +19500,20 @@ class MEDFileAnyTypeField1TS(RefCountObject, MEDFileFieldGlobsReal, MEDFileWrita
|
|
19076
19500
|
"""
|
19077
19501
|
return _medcoupling.MEDFileAnyTypeField1TS_setMeshName(self, newMeshName)
|
19078
19502
|
|
19503
|
+
def getDescription(self):
|
19504
|
+
r"""
|
19505
|
+
getDescription(MEDFileAnyTypeField1TS self) -> std::string
|
19506
|
+
1
|
19507
|
+
"""
|
19508
|
+
return _medcoupling.MEDFileAnyTypeField1TS_getDescription(self)
|
19509
|
+
|
19510
|
+
def setDescription(self, description):
|
19511
|
+
r"""
|
19512
|
+
setDescription(MEDFileAnyTypeField1TS self, std::string const & description)
|
19513
|
+
1
|
19514
|
+
"""
|
19515
|
+
return _medcoupling.MEDFileAnyTypeField1TS_setDescription(self, description)
|
19516
|
+
|
19079
19517
|
def getMeshIteration(self):
|
19080
19518
|
r"""
|
19081
19519
|
getMeshIteration(MEDFileAnyTypeField1TS self) -> int
|
@@ -22420,6 +22858,20 @@ def HasParallelInterpolatorExt():
|
|
22420
22858
|
"""
|
22421
22859
|
return _medcoupling.HasParallelInterpolatorExt()
|
22422
22860
|
|
22861
|
+
def HasIterativeStatisticsExt():
|
22862
|
+
r"""
|
22863
|
+
HasIterativeStatisticsExt() -> bool
|
22864
|
+
1
|
22865
|
+
"""
|
22866
|
+
return _medcoupling.HasIterativeStatisticsExt()
|
22867
|
+
|
22868
|
+
def HasShapeRecognitionExt():
|
22869
|
+
r"""
|
22870
|
+
HasShapeRecognitionExt() -> bool
|
22871
|
+
1
|
22872
|
+
"""
|
22873
|
+
return _medcoupling.HasShapeRecognitionExt()
|
22874
|
+
|
22423
22875
|
def ActiveExtensions():
|
22424
22876
|
r"""
|
22425
22877
|
ActiveExtensions() -> svec
|
@@ -22733,7 +23185,18 @@ del MEDCouplingUMeshReduce
|
|
22733
23185
|
|
22734
23186
|
import MEDLoaderFinalize
|
22735
23187
|
MEDFileUMesh.reduceToCells = MEDLoaderFinalize.MEDFileUMeshReduceToCells
|
23188
|
+
MEDFileUMesh.tetrahedrize = MEDLoaderFinalize.MEDFileUMeshTetrahedrize
|
23189
|
+
MEDFileUMesh.fuseNodesAndCells = MEDLoaderFinalize.MEDFileUMeshFuseNodesAndCells
|
23190
|
+
MEDFileUMesh.fuseNodesAndCellsAdv = MEDLoaderFinalize.MEDFileUMeshFuseNodesAndCellsAdv
|
23191
|
+
GetNodesFusionInfoFromJointsOf = MEDLoaderFinalize.GetNodesFusionInfoFromJointsOf
|
23192
|
+
FindIdFromPathAndPattern = MEDLoaderFinalize.FindIdFromPathAndPattern
|
23193
|
+
AggregateMEDFilesNoProfilesNoFusion = MEDLoaderFinalize.AggregateMEDFilesNoProfilesNoFusion
|
23194
|
+
FuseCellsAndNodesInMEDFile = MEDLoaderFinalize.FuseCellsAndNodesInMEDFile
|
22736
23195
|
del MEDLoaderFinalize
|
23196
|
+
import MCMailFileReader
|
23197
|
+
ConvertFromMailToMEDFile = MCMailFileReader.ConvertFromMailToMEDFile
|
23198
|
+
LoadMailFileInMEDFileUMeshInstance = MCMailFileReader.LoadMailFileInMEDFileUMeshInstance
|
23199
|
+
del MCMailFileReader
|
22737
23200
|
MEDFileMeshesIterator.__next__ = MEDFileMeshesIterator.next
|
22738
23201
|
MEDFileAnyTypeFieldMultiTSIterator.__next__ = MEDFileAnyTypeFieldMultiTSIterator.next
|
22739
23202
|
MEDFileFieldsIterator.__next__ = MEDFileFieldsIterator.next
|
medcouplingremapper.dll
CHANGED
Binary file
|
medicoco.dll
CHANGED
Binary file
|
medloader.dll
CHANGED
Binary file
|
medpartitionercpp.dll
CHANGED
Binary file
|
renumbercpp.dll
CHANGED
Binary file
|