emerge 0.6.0__py3-none-any.whl → 0.6.1__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.
Potentially problematic release.
This version of emerge might be problematic. Click here for more details.
- emerge/__init__.py +1 -1
- emerge/_emerge/geo/pcb.py +2 -2
- emerge/lib.py +3 -2
- {emerge-0.6.0.dist-info → emerge-0.6.1.dist-info}/METADATA +1 -1
- {emerge-0.6.0.dist-info → emerge-0.6.1.dist-info}/RECORD +8 -8
- {emerge-0.6.0.dist-info → emerge-0.6.1.dist-info}/WHEEL +0 -0
- {emerge-0.6.0.dist-info → emerge-0.6.1.dist-info}/entry_points.txt +0 -0
- {emerge-0.6.0.dist-info → emerge-0.6.1.dist-info}/licenses/LICENSE +0 -0
emerge/__init__.py
CHANGED
emerge/_emerge/geo/pcb.py
CHANGED
|
@@ -1079,7 +1079,7 @@ class PCB:
|
|
|
1079
1079
|
plane = change_coordinate_system(plane, self.cs) # type: ignore
|
|
1080
1080
|
return plane # type: ignore
|
|
1081
1081
|
|
|
1082
|
-
def
|
|
1082
|
+
def generate_pcb(self,
|
|
1083
1083
|
split_z: bool = True,
|
|
1084
1084
|
layer_tolerance: float = 1e-6,
|
|
1085
1085
|
merge: bool = True) -> GeoVolume:
|
|
@@ -1119,7 +1119,7 @@ class PCB:
|
|
|
1119
1119
|
box = change_coordinate_system(box, self.cs)
|
|
1120
1120
|
return box # type: ignore
|
|
1121
1121
|
|
|
1122
|
-
def
|
|
1122
|
+
def generate_air(self, height: float) -> GeoVolume:
|
|
1123
1123
|
"""Generate the Air Block object
|
|
1124
1124
|
|
|
1125
1125
|
This requires that the width, depth and origin are deterimed. This
|
emerge/lib.py
CHANGED
|
@@ -30,10 +30,10 @@ MET_ALUMINUM = Material(cond=3.77e7, color=GREY, opacity=0.5)
|
|
|
30
30
|
MET_CARBON = Material(cond=3.33e4, color=GREY, opacity=0.5)
|
|
31
31
|
MET_CHROMIUM = Material(cond=5.56e6, color=GREY, opacity=0.5)
|
|
32
32
|
MET_COPPER = Material(cond=5.8e7, color="#62290c", opacity=1.0)
|
|
33
|
-
MET_GOLD = Material(cond=4.10e7, color=
|
|
33
|
+
MET_GOLD = Material(cond=4.10e7, color="#d4af37", opacity=0.5)
|
|
34
34
|
MET_INDIUM = Material(cond=6.44e6, color=GREY, opacity=0.5)
|
|
35
35
|
MET_IRIDIUM = Material(cond=2.13e7, color=GREY, opacity=0.5)
|
|
36
|
-
MET_IRON = Material(cond=1.04e7, color=
|
|
36
|
+
MET_IRON = Material(cond=1.04e7, color="#aaaaaa", opacity=0.5)
|
|
37
37
|
MET_LEAD = Material(cond=4.84e6, color=GREY, opacity=0.5)
|
|
38
38
|
MET_MAGNESIUM = Material(cond=2.38e7, color=GREY, opacity=0.5)
|
|
39
39
|
MET_NICKEL = Material(cond=1.14e7, color=GREY, opacity=0.5)
|
|
@@ -274,6 +274,7 @@ DIEL_ULTRALAM_3850 = Material(er=2.9, tand=0.0025, color="#21912b", opacity=0.3)
|
|
|
274
274
|
DIEL_XT_Duroid_80000_002IN_Thick = Material(er=3.23, tand=0.0035, color="#21912b", opacity=0.3)
|
|
275
275
|
DIEL_XT_Duroid_8100 = Material(er=3.54, tand=0.0049, color="#21912b", opacity=0.3)
|
|
276
276
|
DIEL_XT_Duroid_81000_004IN_Thick = Material(er=3.32, tand=0.0038, color="#21912b", opacity=0.3)
|
|
277
|
+
DIEL_TEFLON = Material(er=2.1, tand=0.0003, color='#eeeeee', opacity=0.3)
|
|
277
278
|
|
|
278
279
|
# Legacy FR Materials
|
|
279
280
|
DIEL_FR1 = Material(er=4.8, tand=0.025, color="#3c9747", opacity=0.3) # Paper + phenolic resin
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
emerge/__init__.py,sha256=
|
|
1
|
+
emerge/__init__.py,sha256=3x0JR1LLC_oNbxA1oBKyGPUPf0oH82MxfwMYvIre5uo,2605
|
|
2
2
|
emerge/__main__.py,sha256=WVf16sfrOI910QWohrQDaChZdRifMNoS6VKzCT6f3ZA,92
|
|
3
3
|
emerge/cli.py,sha256=NU1uhwuZ6i50680v3_I4kDZPTHqz74gOYK71UBhb8oE,666
|
|
4
4
|
emerge/ext.py,sha256=IBoHH5PQFj5pYMfp6r-uMpNNgbSe8c0g9x8qjBzzVmU,223
|
|
5
|
-
emerge/lib.py,sha256=
|
|
5
|
+
emerge/lib.py,sha256=rvUuawdX7-qiKH2p1RwrenN1KBdDeU-MHsAgH7_bYA8,22400
|
|
6
6
|
emerge/plot.py,sha256=AH2D9rKeWUXlSOlh-pUUfLt0oxVLcqF_piki-BmPEg0,83
|
|
7
7
|
emerge/pyvista.py,sha256=-Ht2YcZYsh8-dici5ZPNAWwsis6uz5wNj8n8mxv5fog,42
|
|
8
8
|
emerge/_emerge/__init__.py,sha256=aidfiILy33dt3VyiZ2mgtA87mq-WQ5pXItZUE5wR5ws,703
|
|
@@ -36,7 +36,7 @@ emerge/_emerge/geo/__init__.py,sha256=9zITlCRbdzYZ65mA0i-gxEEMV24vWOG9Crb9WGyQOY
|
|
|
36
36
|
emerge/_emerge/geo/horn.py,sha256=h4GzGzEkXgWaQgoBMvhFgGsqOrNRB3CJg3RBKXigCz0,4186
|
|
37
37
|
emerge/_emerge/geo/modeler.py,sha256=gbxmwXAdR7kKW_EFbkd1QPVqJWKJpnTufI7lxaqPyjU,15573
|
|
38
38
|
emerge/_emerge/geo/operations.py,sha256=LKA7_BU4iw6-i6KOUyuL6l10QjXSwnXsixOaTw-M6Vk,9697
|
|
39
|
-
emerge/_emerge/geo/pcb.py,sha256=
|
|
39
|
+
emerge/_emerge/geo/pcb.py,sha256=b4FZAwZaO8X2NMnRkYYDUTa8w9ZdN2XfZdmyHhZZaGY,52213
|
|
40
40
|
emerge/_emerge/geo/pmlbox.py,sha256=TNjuyPtuqrAU5Yl8GrLlievuwYf3hUKJaCEz0cXKSzo,7922
|
|
41
41
|
emerge/_emerge/geo/polybased.py,sha256=4J5ExvL-yw4NtA1ZZfIYdj3J5g0vpzq_nlCsIjFQFBU,19473
|
|
42
42
|
emerge/_emerge/geo/shapes.py,sha256=tPWEzit4sJ-aFWc_FP0mHodx9ohPDbB7IUprFmf1S3k,18378
|
|
@@ -78,8 +78,8 @@ emerge/_emerge/projects/_load_base.txt,sha256=94o0eSWoDKlNR336EmhpG_S5syQHIUPHQx
|
|
|
78
78
|
emerge/_emerge/projects/generate_project.py,sha256=TNw-0SpLc82MBq0bd9hB_yqvBZCgmuPonCBsHTp91uk,1450
|
|
79
79
|
emerge/_emerge/solve_interfaces/cudss_interface.py,sha256=-SjiTNIyE7iJ8Bm14Cva5e2lpJDgfiS2Mvz1Bgy-UL4,9688
|
|
80
80
|
emerge/_emerge/solve_interfaces/pardiso_interface.py,sha256=iVFxToMmIzhj3hcAP-O_MDHKz82ePFIHY1us11kzUBU,15305
|
|
81
|
-
emerge-0.6.
|
|
82
|
-
emerge-0.6.
|
|
83
|
-
emerge-0.6.
|
|
84
|
-
emerge-0.6.
|
|
85
|
-
emerge-0.6.
|
|
81
|
+
emerge-0.6.1.dist-info/METADATA,sha256=VbKhuz6FjO80hwmfdU6zFPpOu5_V3fikDkYyfgi0AXE,3333
|
|
82
|
+
emerge-0.6.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
83
|
+
emerge-0.6.1.dist-info/entry_points.txt,sha256=8rFvAXticpKg4OTC8JEvAksnduW72KIEskCGG9XnFf8,43
|
|
84
|
+
emerge-0.6.1.dist-info/licenses/LICENSE,sha256=SuHm9Fw32RI6tylP2YCyTPITMwpueazVUZwUMFRE_zk,17856
|
|
85
|
+
emerge-0.6.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|