mastapy 14.1.1__py3-none-any.whl → 14.1.2b2__py3-none-any.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.
- mastapy/_private/_internal/version.py +2 -2
- mastapy/_private/system_model/analyses_and_results/parametric_study_tools/_4491.py +4 -4
- mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2925.py +42 -0
- mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2950.py +28 -0
- mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2960.py +28 -0
- {mastapy-14.1.1.dist-info → mastapy-14.1.2b2.dist-info}/METADATA +5 -5
- {mastapy-14.1.1.dist-info → mastapy-14.1.2b2.dist-info}/RECORD +8 -8
- {mastapy-14.1.1.dist-info → mastapy-14.1.2b2.dist-info}/WHEEL +1 -1
@@ -428,6 +428,10 @@ class ParametricStudyVariable(_2720.AnalysisCaseVariable):
|
|
428
428
|
float(value) if value is not None else 0.0,
|
429
429
|
)
|
430
430
|
|
431
|
+
def up(self: "Self") -> None:
|
432
|
+
"""Method does not return."""
|
433
|
+
pythonnet_method_call(self.wrapped, "Up")
|
434
|
+
|
431
435
|
def add_to_new_group(self: "Self") -> None:
|
432
436
|
"""Method does not return."""
|
433
437
|
pythonnet_method_call(self.wrapped, "AddToNewGroup")
|
@@ -444,10 +448,6 @@ class ParametricStudyVariable(_2720.AnalysisCaseVariable):
|
|
444
448
|
"""Method does not return."""
|
445
449
|
pythonnet_method_call(self.wrapped, "SetValues")
|
446
450
|
|
447
|
-
def up(self: "Self") -> None:
|
448
|
-
"""Method does not return."""
|
449
|
-
pythonnet_method_call(self.wrapped, "Up")
|
450
|
-
|
451
451
|
@property
|
452
452
|
def cast_to(self: "Self") -> "_Cast_ParametricStudyVariable":
|
453
453
|
"""Cast to another type.
|
@@ -39,9 +39,11 @@ if TYPE_CHECKING:
|
|
39
39
|
_2943,
|
40
40
|
_2945,
|
41
41
|
_2946,
|
42
|
+
_2950,
|
42
43
|
_2951,
|
43
44
|
_2956,
|
44
45
|
_2959,
|
46
|
+
_2960,
|
45
47
|
_2962,
|
46
48
|
_2966,
|
47
49
|
_2968,
|
@@ -514,6 +516,46 @@ class AbstractAssemblyCompoundSystemDeflection(_3007.PartCompoundSystemDeflectio
|
|
514
516
|
|
515
517
|
self.wrapped.reference_count += 1
|
516
518
|
|
519
|
+
@property
|
520
|
+
def all_components(self: "Self") -> "List[_2950.ComponentCompoundSystemDeflection]":
|
521
|
+
"""List[mastapy.system_model.analyses_and_results.system_deflections.compound.ComponentCompoundSystemDeflection]
|
522
|
+
|
523
|
+
Note:
|
524
|
+
This property is readonly.
|
525
|
+
"""
|
526
|
+
temp = pythonnet_property_get(self.wrapped, "AllComponents")
|
527
|
+
|
528
|
+
if temp is None:
|
529
|
+
return None
|
530
|
+
|
531
|
+
value = conversion.pn_to_mp_objects_in_list(temp)
|
532
|
+
|
533
|
+
if value is None:
|
534
|
+
return None
|
535
|
+
|
536
|
+
return value
|
537
|
+
|
538
|
+
@property
|
539
|
+
def all_connections(
|
540
|
+
self: "Self",
|
541
|
+
) -> "List[_2960.ConnectionCompoundSystemDeflection]":
|
542
|
+
"""List[mastapy.system_model.analyses_and_results.system_deflections.compound.ConnectionCompoundSystemDeflection]
|
543
|
+
|
544
|
+
Note:
|
545
|
+
This property is readonly.
|
546
|
+
"""
|
547
|
+
temp = pythonnet_property_get(self.wrapped, "AllConnections")
|
548
|
+
|
549
|
+
if temp is None:
|
550
|
+
return None
|
551
|
+
|
552
|
+
value = conversion.pn_to_mp_objects_in_list(temp)
|
553
|
+
|
554
|
+
if value is None:
|
555
|
+
return None
|
556
|
+
|
557
|
+
return value
|
558
|
+
|
517
559
|
@property
|
518
560
|
def assembly_analysis_cases(
|
519
561
|
self: "Self",
|
@@ -779,6 +779,34 @@ class ComponentCompoundSystemDeflection(_3007.PartCompoundSystemDeflection):
|
|
779
779
|
|
780
780
|
self.wrapped.reference_count += 1
|
781
781
|
|
782
|
+
@property
|
783
|
+
def energy_lost(self: "Self") -> "float":
|
784
|
+
"""float
|
785
|
+
|
786
|
+
Note:
|
787
|
+
This property is readonly.
|
788
|
+
"""
|
789
|
+
temp = pythonnet_property_get(self.wrapped, "EnergyLost")
|
790
|
+
|
791
|
+
if temp is None:
|
792
|
+
return 0.0
|
793
|
+
|
794
|
+
return temp
|
795
|
+
|
796
|
+
@property
|
797
|
+
def energy_lost_contribution(self: "Self") -> "float":
|
798
|
+
"""float
|
799
|
+
|
800
|
+
Note:
|
801
|
+
This property is readonly.
|
802
|
+
"""
|
803
|
+
temp = pythonnet_property_get(self.wrapped, "EnergyLostContribution")
|
804
|
+
|
805
|
+
if temp is None:
|
806
|
+
return 0.0
|
807
|
+
|
808
|
+
return temp
|
809
|
+
|
782
810
|
@property
|
783
811
|
def component_analysis_cases(
|
784
812
|
self: "Self",
|
@@ -512,6 +512,34 @@ class ConnectionCompoundSystemDeflection(_7698.ConnectionCompoundAnalysis):
|
|
512
512
|
|
513
513
|
self.wrapped.reference_count += 1
|
514
514
|
|
515
|
+
@property
|
516
|
+
def energy_lost(self: "Self") -> "float":
|
517
|
+
"""float
|
518
|
+
|
519
|
+
Note:
|
520
|
+
This property is readonly.
|
521
|
+
"""
|
522
|
+
temp = pythonnet_property_get(self.wrapped, "EnergyLost")
|
523
|
+
|
524
|
+
if temp is None:
|
525
|
+
return 0.0
|
526
|
+
|
527
|
+
return temp
|
528
|
+
|
529
|
+
@property
|
530
|
+
def energy_lost_contribution(self: "Self") -> "float":
|
531
|
+
"""float
|
532
|
+
|
533
|
+
Note:
|
534
|
+
This property is readonly.
|
535
|
+
"""
|
536
|
+
temp = pythonnet_property_get(self.wrapped, "EnergyLostContribution")
|
537
|
+
|
538
|
+
if temp is None:
|
539
|
+
return 0.0
|
540
|
+
|
541
|
+
return temp
|
542
|
+
|
515
543
|
@property
|
516
544
|
def connection_analysis_cases(
|
517
545
|
self: "Self",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: mastapy
|
3
|
-
Version: 14.1.
|
3
|
+
Version: 14.1.2b2
|
4
4
|
Summary: Python scripting API for MASTA.
|
5
5
|
License: MIT
|
6
6
|
Keywords: mastapy,smt,masta
|
@@ -33,13 +33,13 @@ Requires-Dist: ptvsd (>=4.3.2) ; python_version < "3.13"
|
|
33
33
|
Requires-Dist: pythonnet (<3.0.0) ; python_version < "3.9"
|
34
34
|
Requires-Dist: pythonnet (>=3.0.0,<4.0.0) ; python_version >= "3.9"
|
35
35
|
Requires-Dist: typeguard (>=4.1.2) ; python_full_version >= "3.7.4"
|
36
|
-
Project-URL: Documentation, https://documentation.smartmt.com/MastaAPI/14.1.
|
36
|
+
Project-URL: Documentation, https://documentation.smartmt.com/MastaAPI/14.1.2/
|
37
37
|
Project-URL: Homepage, https://www.smartmt.com/
|
38
38
|
Description-Content-Type: text/markdown
|
39
39
|
|
40
40
|
<h1 align="center">
|
41
|
-
<img src="https://documentation.smartmt.com/MastaAPI/14.1.
|
42
|
-
<img src="https://documentation.smartmt.com/MastaAPI/14.1.
|
41
|
+
<img src="https://documentation.smartmt.com/MastaAPI/14.1.2/images/smt_logo.png" width="150" alt="SMT"><br>
|
42
|
+
<img src="https://documentation.smartmt.com/MastaAPI/14.1.2/images/MASTA_14_logo.png" width="400" alt="Mastapy">
|
43
43
|
</h1><br>
|
44
44
|
|
45
45
|
[](https://github.com/astral-sh/ruff) [](https://python-poetry.org/) [](https://opensource.org/licenses/MIT)
|
@@ -48,7 +48,7 @@ Mastapy is the Python scripting API for MASTA.
|
|
48
48
|
|
49
49
|
- **Website**: https://www.smartmt.com/
|
50
50
|
- **Support**: https://support.smartmt.com/
|
51
|
-
- **Documentation**: https://documentation.smartmt.com/MastaAPI/14.1.
|
51
|
+
- **Documentation**: https://documentation.smartmt.com/MastaAPI/14.1.2/
|
52
52
|
|
53
53
|
|
54
54
|
### Features
|
@@ -268,7 +268,7 @@ mastapy/_private/_internal/sentinels.py,sha256=L_ibd3s8-FRJYQqHc7AwTLbqLAr7EWGb6
|
|
268
268
|
mastapy/_private/_internal/tuple_with_name.py,sha256=PPpSho04giLWf9yZc5EoP0jporzCRgoZpZN9paGKfo0,1580
|
269
269
|
mastapy/_private/_internal/type_enforcement.py,sha256=qqEE2_d7AVvadOQtg46nZ6lWmw-VihMhyPKVzk3es8w,9248
|
270
270
|
mastapy/_private/_internal/utility.py,sha256=OWd7sjtevMoojJRge1_HnqHt_tH6uSC7YaaATAW8MfE,3856
|
271
|
-
mastapy/_private/_internal/version.py,sha256=
|
271
|
+
mastapy/_private/_internal/version.py,sha256=_dtaDc7yWS98UPZYVmgR4h77So89Hwl24kmjINBHagk,134
|
272
272
|
mastapy/_private/_lib/__init__.py,sha256=TYhaKQtSf8hN5D_trQ2tnh4Hm3H1seOnN4bo9iYHz3U,47
|
273
273
|
mastapy/_private/_lib/net462/__init__.py,sha256=TYhaKQtSf8hN5D_trQ2tnh4Hm3H1seOnN4bo9iYHz3U,47
|
274
274
|
mastapy/_private/_lib/net462/ClrLoader.dll,sha256=R6U3AlfHucz7gqm1yHj50N2ychovEoQTozcQWWdjv5w,8192
|
@@ -5454,7 +5454,7 @@ mastapy/_private/system_model/analyses_and_results/parametric_study_tools/_4487.
|
|
5454
5454
|
mastapy/_private/system_model/analyses_and_results/parametric_study_tools/_4488.py,sha256=3W3xkbHtNuaxJ1amX6W-p1y8wZ0VBsNJqOVNKj_ZsFA,3169
|
5455
5455
|
mastapy/_private/system_model/analyses_and_results/parametric_study_tools/_4489.py,sha256=IlcWiruVzXsYVF3uHuWj_VBnOeXyl9Xuk5DEjVWVVJE,4056
|
5456
5456
|
mastapy/_private/system_model/analyses_and_results/parametric_study_tools/_4490.py,sha256=DZM6Az_2FWR861SiKS3m3_d7D9XwqmJ0Y24PFt--WMQ,1521
|
5457
|
-
mastapy/_private/system_model/analyses_and_results/parametric_study_tools/_4491.py,sha256=
|
5457
|
+
mastapy/_private/system_model/analyses_and_results/parametric_study_tools/_4491.py,sha256=EYEOSuq0EYzxAg-yzepSULSXSrUuhZgBspcgwyGtp2M,14156
|
5458
5458
|
mastapy/_private/system_model/analyses_and_results/parametric_study_tools/_4492.py,sha256=VK0BEQbDklsVcy-PkNGtTqPom85XYWX3jPc0jlZYspM,42345
|
5459
5459
|
mastapy/_private/system_model/analyses_and_results/parametric_study_tools/_4493.py,sha256=ad5uRIFbfDF4lSRWFN-wioH8kmC2ZD1k5BGTqQTmJDQ,7549
|
5460
5460
|
mastapy/_private/system_model/analyses_and_results/parametric_study_tools/_4494.py,sha256=Nym_YVT2RQ8ezEPX9nKp3kBjwxW4Uff3gUt37tiyD9M,7526
|
@@ -7350,7 +7350,7 @@ mastapy/_private/system_model/analyses_and_results/system_deflections/_2913.py,s
|
|
7350
7350
|
mastapy/_private/system_model/analyses_and_results/system_deflections/_2914.py,sha256=HWb_KbZR3HjwPAD-vft22iuXSkO17OqKktgyRVdJwzM,12119
|
7351
7351
|
mastapy/_private/system_model/analyses_and_results/system_deflections/_2915.py,sha256=mgYogr0U82ojqYnFVnWXkI8BeNAWRtfy4dGuTtzx4dk,9080
|
7352
7352
|
mastapy/_private/system_model/analyses_and_results/system_deflections/__init__.py,sha256=kukmSG--3Z90nmFreTm4ihZZ177dv3rw3IwVpsB9Hm4,19
|
7353
|
-
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2925.py,sha256=
|
7353
|
+
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2925.py,sha256=nQyAXixrvMGkrUE5aAE3hy9A7ZE_0trRi8wbNK_L5Js,20866
|
7354
7354
|
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2926.py,sha256=jk04xfUiGvi9hLeImJQXWgoysSowfVvTbkRX7VQqzUg,7083
|
7355
7355
|
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2927.py,sha256=3Jw8qsuuf0DzZrBNmattC88PcXPR-bibsH2kN0mQ7MQ,7587
|
7356
7356
|
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2928.py,sha256=ywxGzGjVub3kPPHX3u93YcqSlYSTcUjD1G9TO5M9Vzs,8640
|
@@ -7375,7 +7375,7 @@ mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_
|
|
7375
7375
|
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2947.py,sha256=-u1OyB5cw0YR0NYBiqla8-6buDR7d835QgmqHRfStko,7548
|
7376
7376
|
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2948.py,sha256=exwblfbwVyDVZ_QAtJVJTt7oEF1kY5EqoPxii4NSVtQ,7124
|
7377
7377
|
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2949.py,sha256=d84KE5lXk2vkKu_yP_pg7snaKtm7_BPiyIDgHJpkn7Q,8157
|
7378
|
-
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2950.py,sha256=
|
7378
|
+
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2950.py,sha256=voSYoNKjXOthbscebkMvAPvBiHW-Ykujd8GnQgcuS6Q,29163
|
7379
7379
|
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2951.py,sha256=EQAOFPtV2ID2Z8CnmhNhLAbtAYR2eWCkp9aVdwKETrY,7697
|
7380
7380
|
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2952.py,sha256=i3UlOo6TaMTcW_DcXLqJOGCQWklD-jVbQ7R7Zu_Ju6Y,7802
|
7381
7381
|
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2953.py,sha256=-H4HaqXWLXHGoWNgunrLf2ly55uXHikjbjnzcG6cfHQ,7351
|
@@ -7385,7 +7385,7 @@ mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_
|
|
7385
7385
|
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2957.py,sha256=uw9exPgp5_zfNKfEA5aocRH76OKlqxATo-1_ihNgqI4,14602
|
7386
7386
|
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2958.py,sha256=JWVIpigCplHPjjS5GsRIB-toToUcfJ3F5C-EUPKIXQ4,11877
|
7387
7387
|
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2959.py,sha256=qRu18MPgrlO348qZeqxUdyHDHJs852xaaPkQNp7yZ28,12086
|
7388
|
-
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2960.py,sha256=
|
7388
|
+
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2960.py,sha256=60WiqLfK-SmNAg4sSAFslm7EetXoJ6CXfBbF1qlBQAc,20411
|
7389
7389
|
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2961.py,sha256=NumxwC6yyZnIIP64lebNtX0CBmR2H55BlspB9dgHgfw,7341
|
7390
7390
|
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2962.py,sha256=vBWATDs7h4NrdEXnPB2xWDwkQglWwG8evrEVIyi9EbQ,8163
|
7391
7391
|
mastapy/_private/system_model/analyses_and_results/system_deflections/compound/_2963.py,sha256=nWifoQyD55gJs8lHXw0yeAgb5PY3wjsc9-6As5L5VUU,8377
|
@@ -8531,6 +8531,6 @@ mastapy/utility/vectors/__init__.py,sha256=r8LxYDfuyCpoFwkzyqQEGRcxADn_La-zz6V7C
|
|
8531
8531
|
mastapy/utility_gui/__init__.py,sha256=yaGW2rAVO5X7PohpNMMtTQLBzGxX6dekMQ6uOw80h3s,1161
|
8532
8532
|
mastapy/utility_gui/charts/__init__.py,sha256=RRh7dOoPs0FewlyaWuQmHUR7gtJ9eggOF9udKg074kA,3256
|
8533
8533
|
mastapy/utility_gui/databases/__init__.py,sha256=hwo7WYEANqPT_uf9jzzqtcRlUXttDzI7gyQmTWVgES4,553
|
8534
|
-
mastapy-14.1.
|
8535
|
-
mastapy-14.1.
|
8536
|
-
mastapy-14.1.
|
8534
|
+
mastapy-14.1.2b2.dist-info/METADATA,sha256=sugRVpBawHN65LrmK5lVjc4phDT8WLPcRl9iPzxoh-g,6141
|
8535
|
+
mastapy-14.1.2b2.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
8536
|
+
mastapy-14.1.2b2.dist-info/RECORD,,
|