emerge 0.6.11__py3-none-any.whl → 1.0.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 +2 -2
- emerge/_emerge/bc.py +8 -3
- emerge/_emerge/cacherun.py +79 -0
- emerge/_emerge/geo/__init__.py +1 -1
- emerge/_emerge/geo/pcb.py +160 -71
- emerge/_emerge/geo/pcb_tools/dxf.py +360 -0
- emerge/_emerge/geo/polybased.py +21 -15
- emerge/_emerge/geo/shapes.py +31 -16
- emerge/_emerge/geometry.py +147 -21
- emerge/_emerge/material.py +2 -1
- emerge/_emerge/mesh3d.py +39 -12
- emerge/_emerge/periodic.py +19 -17
- emerge/_emerge/physics/microwave/assembly/assembler.py +12 -12
- emerge/_emerge/physics/microwave/microwave_3d.py +29 -6
- emerge/_emerge/physics/microwave/microwave_bc.py +22 -9
- emerge/_emerge/physics/microwave/microwave_data.py +3 -0
- emerge/_emerge/plot/pyvista/display.py +20 -6
- emerge/_emerge/plot/pyvista/display_settings.py +2 -1
- emerge/_emerge/plot/simple_plots.py +4 -1
- emerge/_emerge/selection.py +10 -8
- emerge/_emerge/settings.py +12 -0
- emerge/_emerge/simmodel.py +182 -48
- emerge/_emerge/solver.py +9 -2
- emerge/beta/dxf.py +1 -0
- emerge/lib.py +4 -1
- emerge/materials/__init__.py +1 -0
- emerge/materials/isola.py +294 -0
- emerge/materials/rogers.py +58 -0
- {emerge-0.6.11.dist-info → emerge-1.0.1.dist-info}/METADATA +6 -8
- {emerge-0.6.11.dist-info → emerge-1.0.1.dist-info}/RECORD +33 -26
- {emerge-0.6.11.dist-info → emerge-1.0.1.dist-info}/WHEEL +0 -0
- {emerge-0.6.11.dist-info → emerge-1.0.1.dist-info}/entry_points.txt +0 -0
- {emerge-0.6.11.dist-info → emerge-1.0.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
from .._emerge.material import Material, FreqDependent
|
|
2
|
+
from scipy.interpolate import interp1d
|
|
3
|
+
import numpy as np
|
|
4
|
+
|
|
5
|
+
FS_350HR = np.array([100e6, 500e6, 1e9, 2e9, 5e9, 10e9])
|
|
6
|
+
|
|
7
|
+
def gen_f350(*vals) -> FreqDependent:
|
|
8
|
+
return FreqDependent(scalar=interp1d(FS_350HR, np.array(vals), bounds_error=False, fill_value=(vals[0], vals[-1])))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
############################################################
|
|
12
|
+
# IS370 SHEETS #
|
|
13
|
+
############################################################
|
|
14
|
+
|
|
15
|
+
IS370HR_1x106_20 = Material(er=gen_f350(3.89, 3.84, 3.81, 3.77, 3.63, 3.63),
|
|
16
|
+
tand=gen_f350(0.0018, 0.021, 0.024, 0.025, 0.03, 0.03),
|
|
17
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x106 2.0mil')
|
|
18
|
+
|
|
19
|
+
IS370HR_1x1067_20 = Material(er=gen_f350(3.99, 3.94, 3.91, 3.88, 3.74, 3.74),
|
|
20
|
+
tand=gen_f350(0.017, 0.020, 0.022, 0.023, 0.028, 0.028),
|
|
21
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x1067 2.0mil')
|
|
22
|
+
|
|
23
|
+
IS370HR_1x1080_25 = Material(er=gen_f350(4.11, 4.06, 4.04, 4.00, 3.88, 3.88),
|
|
24
|
+
tand=gen_f350(0.016, 0.018, 0.021, 0.022, 0.026, 0.026),
|
|
25
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x1080 2.5mil')
|
|
26
|
+
|
|
27
|
+
IS370HR_1x1080_30 = Material(er=gen_f350(4.09, 4.04, 4.02, 3.99, 3.86, 3.86),
|
|
28
|
+
tand=gen_f350(0.16, 0.18, 0.021, 0.022, 0.026, 0.026),
|
|
29
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x1080 3.0mil')
|
|
30
|
+
|
|
31
|
+
IS370HR_1x2113_30 = Material(er=gen_f350(4.34, 4.30, 4.28, 4.25, 4.14, 4.14),
|
|
32
|
+
tand=gen_f350(0.014, 0.016, 0.018, 0.019, 0.022, 0.022),
|
|
33
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x2113 3.0mil')
|
|
34
|
+
|
|
35
|
+
IS370HR_1x1086_30 = Material(er=gen_f350(4.07, 4.02, 4.00, 3.97, 3.84, 3.84),
|
|
36
|
+
tand=gen_f350(0.016, 0.019, 0.021, 0.022, 0.026, 0.026),
|
|
37
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x1086 3.0mil')
|
|
38
|
+
|
|
39
|
+
IS370HR_1x2113_35 = Material(er=gen_f350(4.34, 4.30, 4.28, 4.25, 4.14, 4.14),
|
|
40
|
+
tand=gen_f350(0.014, 0.016, 0.018, 0.019, 0.022, 0.022),
|
|
41
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x2113 3.5 mil')
|
|
42
|
+
|
|
43
|
+
IS370HR_1x3313_35 = Material(er=gen_f350(4.24, 4.19, 4.17, 4.14, 4.03, 4.03),
|
|
44
|
+
tand=gen_f350(0.015, 0.017, 0.019, 0.02, 0.023, 0.023),
|
|
45
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x3313 3.5mil')
|
|
46
|
+
|
|
47
|
+
IS370HR_2x106_35 = Material(er=gen_f350(3.94, 3.89, 3.86, 3.82, 3.68, 3.68),
|
|
48
|
+
tand=gen_f350(0.018, 0.020, 0.023, 0.024, 0.029, 0.029),
|
|
49
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 2x106 3.5 mil')
|
|
50
|
+
|
|
51
|
+
IS370HR_1x2116_40 = Material(er=gen_f350(4.32, 4.27, 4.26, 4.23, 4.17, 4.17),
|
|
52
|
+
tand=gen_f350(0.014, 0.016, 0.018, 0.019, 0.022, 0.022),
|
|
53
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x2116 4.0 mil')
|
|
54
|
+
|
|
55
|
+
IS370HR_1x2113_40 = Material(er=gen_f350(4.16, 4.12, 4.10, 4.05, 3.99, 3.99),
|
|
56
|
+
tand=gen_f350(0.016, 0.018, 0.020, 0.024, 0.025, 0.025),
|
|
57
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x2113 4.0 mil')
|
|
58
|
+
|
|
59
|
+
IS370HR_1x106_1x1080_40 = Material(er=gen_f350(4.07, 4.02, 4.00, 3.97, 3.84, 3.83),
|
|
60
|
+
tand=gen_f350(0.016, 0.019, 0.021, 0.022, 0.026, 0.026),
|
|
61
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x106/1x1080 4.0mil')
|
|
62
|
+
|
|
63
|
+
IS370HR_1x106_1x1080_43 = Material(er=gen_f350(4.04, 3.99, 3.97, 3.93, 3.80, 3.80),
|
|
64
|
+
tand=gen_f350(0.017, 0.019, 0.022, 0.023, 0.027, 0.027),
|
|
65
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x106/1x1080 4.3mil')
|
|
66
|
+
|
|
67
|
+
IS370HR_2116_45 = Material(er=gen_f350(4.24, 4.19, 4.17, 4.14, 4.03, 4.03),
|
|
68
|
+
tand=gen_f350(0.015, 0.017, 0.019, 0.020, 0.023, 0.023),
|
|
69
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x2116 4.3mil')
|
|
70
|
+
|
|
71
|
+
IS370HR_2x1080_45 = Material(er=gen_f350(4.16, 4.12, 4.10, 4.05, 3.99, 3.99),
|
|
72
|
+
tand=gen_f350(0.016, 0.018, 0.020, 0.021, 0.024, 0.025),
|
|
73
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 2x1080 4.5mil')
|
|
74
|
+
|
|
75
|
+
IS370HR_1x2116_50 = Material(er=gen_f350(4.18, 4.14, 4.11, 4.08, 3.96, 3.96),
|
|
76
|
+
tand=gen_f350(0.015, 0.017, 0.02, 0.021, 0.024, 0.024),
|
|
77
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x2116 5.0mil')
|
|
78
|
+
|
|
79
|
+
IS370HR_1x1652_50 = Material(er=gen_f350(4.40, 4.36, 4.34, 4.32, 4.21, 4.21),
|
|
80
|
+
tand=gen_f350(0.014, 0.015, 0.017, 0.018, 0.021, 0.021),
|
|
81
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x1652 5.0mil')
|
|
82
|
+
|
|
83
|
+
IS370HR_2x1080_50 = Material(er=gen_f350(4.11, 4.06, 4.04, 4.00, 3.88, 3.88),
|
|
84
|
+
tand=gen_f350(0.016, 0.018, 0.021, 0.022, 0.026, 0.026),
|
|
85
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 2x1080 5.0mil')
|
|
86
|
+
|
|
87
|
+
IS370HR_1x106_1x2113_53 = Material(er=gen_f350(4.13, 4.08, 4.06, 4.02, 3.90, 3.90),
|
|
88
|
+
tand=gen_f350(0.016, 0.018, 0.021, 0.021, 0.025, 0.025),
|
|
89
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x106/1x2113 5.3mil')
|
|
90
|
+
|
|
91
|
+
IS370HR_1x1652_55 = Material(er=gen_f350(4.34, 4.30, 4.28, 4.25, 4.14, 4.14),
|
|
92
|
+
tand=gen_f350(0.014, 0.016, 0.018, 0.019, 0.022, 0.022),
|
|
93
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x1652 5.5mil')
|
|
94
|
+
|
|
95
|
+
IS370HR_2x1080_60 = Material(er=gen_f350(4.09, 4.04, 4.02, 3.99, 3.86, 3.86),
|
|
96
|
+
tand=gen_f350(0.016, 0.018, 0.021, 0.022, 0.026, 0.026),
|
|
97
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 2x1080 6.0mil')
|
|
98
|
+
|
|
99
|
+
IS370HR_1x1652_60 = Material(er=gen_f350(4.24, 4.19, 4.17, 4.14, 4.03, 4.03),
|
|
100
|
+
tand=gen_f350(0.015, 0.017, 0.019, 0.020, 0.023, 0.023),
|
|
101
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x1652 6.0mil')
|
|
102
|
+
|
|
103
|
+
IS370HR_2x1086_60 = Material(er=gen_f350(4.09, 4.04, 4.02, 3.99, 3.86, 3.86),
|
|
104
|
+
tand=gen_f350(0.016, 0.018, 0.021, 0.022, 0.026, 0.026),
|
|
105
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 2x1086 6.0mil')
|
|
106
|
+
|
|
107
|
+
IS370HR_1x7628_70 = Material(er=gen_f350(4.42, 4.38, 4.36, 4.34, 4.24, 4.24),
|
|
108
|
+
tand=gen_f350(0.014, 0.015, 0.017, 0.018, 0.02, 0.02),
|
|
109
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x7626 7.0mil')
|
|
110
|
+
|
|
111
|
+
IS370HR_2x2113_70 = Material(er=gen_f350(4.18, 4.14, 4.11, 4.08, 3.96, 3.96),
|
|
112
|
+
tand=gen_f350(0.016, 0.017, 0.02, 0.021, 0.024, 0.024),
|
|
113
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 2x2113 7.0mil')
|
|
114
|
+
|
|
115
|
+
IS370HR_2x3313_70 = Material(er=gen_f350(4.24, 4.19, 4.17, 4.14, 4.03, 4.03),
|
|
116
|
+
tand=gen_f350(0.015, 0.017, 0.019, 0.020, 0.023, 0.023),
|
|
117
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 2x3313 7.0mil')
|
|
118
|
+
|
|
119
|
+
IS370HR_1x7628_75 = Material(er=gen_f350(4.38, 4.34, 4.32, 4.29, 4.19, 4.19),
|
|
120
|
+
tand=gen_f350(0.014, 0.015, 0.017, 0.018, 0.021, 0.021),
|
|
121
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x7628 7.5mil')
|
|
122
|
+
|
|
123
|
+
IS370HR_2x2116_80 = Material(er=gen_f350(4.32, 4.27, 4.26, 4.23, 4.17, 4.17),
|
|
124
|
+
tand=gen_f350(0.014, 0.016, 0.018, 0.019, 0.022, 0.022),
|
|
125
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 2x2116 8.0mil')
|
|
126
|
+
|
|
127
|
+
IS370HR_2x3313_80 = Material(er=gen_f350(4.16, 4.12, 4.10, 4.05, 3.99, 3.99),
|
|
128
|
+
tand=gen_f350(0.016, 0.018, 0.020, 0.021, 0.024, 0.025),
|
|
129
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 2x3313 8.0mil')
|
|
130
|
+
|
|
131
|
+
IS370HR_1x7628_80 = Material(er=gen_f350(4.34, 4.30, 4.28, 4.25, 4.14, 4.14),
|
|
132
|
+
tand=gen_f350(0.014, 0.016, 0.018, 0.019, 0.022, 0.022),
|
|
133
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x7628 8.0mil')
|
|
134
|
+
|
|
135
|
+
IS370HR_2x2116_90 = Material(er=gen_f350(4.24, 4.19, 4.17, 4.14, 4.03, 4.03),
|
|
136
|
+
tand=gen_f350(0.015, 0.017, 0.019, 0.020, 0.023, 0.023),
|
|
137
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 2x2116 9.0mil')
|
|
138
|
+
|
|
139
|
+
IS370HR_2x2116_100 = Material(er=gen_f350(4.18, 4.14, 4.11, 4.08, 3.96, 3.96),
|
|
140
|
+
tand=gen_f350(.016, 0.017, 0.020, 0.021, 0.024, 0.024),
|
|
141
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 2x2116 10.0mil')
|
|
142
|
+
|
|
143
|
+
IS370HR_2x1652_100 = Material(er=gen_f350(4.40, 4.36, 4.34, 4.32, 4.21, 4.21),
|
|
144
|
+
tand=gen_f350(0.014, 0.015, 0.017, 0.018, 0.021, 0.021),
|
|
145
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 2x1652 10.0mil')
|
|
146
|
+
|
|
147
|
+
IS370HR_2x1652_120 = Material(er=gen_f350(4.24, 4.19, 4.17, 4.14, 4.03, 4.03),
|
|
148
|
+
tand=gen_f350(0.015, 0.017,0.019, 0.020, 0.023, 0.023),
|
|
149
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 2x1652 12.0mil')
|
|
150
|
+
|
|
151
|
+
IS370HR_2x1080_1x7628_120 = Material(er=gen_f350(4.30, 4.25, 4.24, 4.21, 4.09, 4.09),
|
|
152
|
+
tand=gen_f350(0.015, 0.016, 0.018, 0.019, 0.022, 0.022),
|
|
153
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 2x1080/1x7623 12.0mil')
|
|
154
|
+
|
|
155
|
+
IS370HR_2x7628_140 = Material(er=gen_f350(4.42, 4.38, 4.36, 4.34, 4.24, 4.24),
|
|
156
|
+
tand=gen_f350(0.014, 0.015, 0.017, 0.018, 0.020, 0.020),
|
|
157
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 2x7628 14.0mil')
|
|
158
|
+
|
|
159
|
+
IS370HR_2x7628_160 = Material(er=gen_f350(4.34, 4.30, 4.28, 4.25, 4.14, 4.14),
|
|
160
|
+
tand=gen_f350(0.014, 0.016, 0.018, 0.019, 0.022, 0.022),
|
|
161
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 2x7628 16.0mil')
|
|
162
|
+
|
|
163
|
+
IS370HR_1x1080_2x7628_180 = Material(er=gen_f350(4.44, 4.40, 4.39, 4.36, 4.26, 4.26),
|
|
164
|
+
tand=gen_f350(0.013, 0.014, 0.017, 0.017, 0.020, 0.020),
|
|
165
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 1x1080/2x7628 18.0mil')
|
|
166
|
+
|
|
167
|
+
IS370HR_2x7628_1x2116_180 = Material(er=gen_f350(4.36, 4.32, 4.30, 4.27, 4.15, 4.15),
|
|
168
|
+
tand=gen_f350(0.014, 0.016, 0.018, 0.019, 0.021, 0.021),
|
|
169
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 2x7628/1x2116 18.0mil ')
|
|
170
|
+
|
|
171
|
+
IS370HR_3x7628_210 = Material(er=gen_f350(4.42, 4.38, 4.36, 4.34, 4.24, 4.24),
|
|
172
|
+
tand=gen_f350(0.014, 0.015, 0.017, 0.018, 0.020, 0.020),
|
|
173
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 3x7628 21.0mil')
|
|
174
|
+
|
|
175
|
+
IS370HR_3x7628_240 = Material(er=gen_f350(4.34, 4.30, 4.28, 4.25, 4.14, 4.14),
|
|
176
|
+
tand=gen_f350(0.014, 0.016, 0.018, 0.019, 0.022, 0.022),
|
|
177
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 3x7628 24.0mil')
|
|
178
|
+
|
|
179
|
+
IS370HR_4x7628_280 = Material(er=gen_f350(4.42, 4.38, 4.36, 4.34, 4.24, 4.24),
|
|
180
|
+
tand=gen_f350(0.014, 0.015, 0.017, 0.018, 0.020, 0.020),
|
|
181
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 4x7628 28.0mil')
|
|
182
|
+
|
|
183
|
+
IS370HR_4x7628_1x1080_310 = Material(er=gen_f350(4.38, 4.34, 4.32, 4.30, 4.19, 4.19),
|
|
184
|
+
tand=gen_f350(0.014, 0.015, 0.017, 0.018, 0.021, 0.021),
|
|
185
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 4x7628/1x1080 31.0mil')
|
|
186
|
+
|
|
187
|
+
IS370HR_5x7628_350 = Material(er=gen_f350(4.42, 4.38, 4.36, 4.34, 4.24, 4.24),
|
|
188
|
+
tand=gen_f350(0.014, 0.015, 0.017, 0.018, 0.020, 0.020),
|
|
189
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 5x7628 35.0mil')
|
|
190
|
+
|
|
191
|
+
IS370HR_5x7628_1x2116_390 = Material(er=gen_f350(4.40, 4.36, 4.34, 4.34, 4.24, 4.24),
|
|
192
|
+
tand=gen_f350(0.014, 0.015, 0.017, 0.018, 0.020, 0.020),
|
|
193
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 5x7628/1x2116 39.0mil')
|
|
194
|
+
|
|
195
|
+
IS370HR_6x7628_420 = Material(er=gen_f350(4.42, 4.38, 4.36, 4.34, 4.24, 4.24),
|
|
196
|
+
tand=gen_f350(0.014, 0.015, 0.017, 0.018, 0.020, 0.020),
|
|
197
|
+
color="#1ea430", opacity=0.3, name='Isola 370HR 6x7628 42.0mil')
|
|
198
|
+
|
|
199
|
+
############################################################
|
|
200
|
+
# IS370 SHEETS #
|
|
201
|
+
############################################################
|
|
202
|
+
|
|
203
|
+
FS_420 = np.array([100e6, 1e9, 2e9, 10e9])
|
|
204
|
+
|
|
205
|
+
def gen_f420(*vals) -> FreqDependent:
|
|
206
|
+
return FreqDependent(scalar=interp1d(FS_420, np.array(vals), bounds_error=False, fill_value=(vals[0], vals[-1])))
|
|
207
|
+
|
|
208
|
+
IS420_1x106_20 = Material(er=gen_f420(4.3, 4.1, 3.95, 3.9),
|
|
209
|
+
tand=gen_f420(0.18, 0.18, 0.021, 0.024),
|
|
210
|
+
color="#1ea430", opacity=0.3, name="Isola 420 1x106 2.0mil")
|
|
211
|
+
IS420_1x1080_30 = Material(er=gen_f420(4.65, 4.26, 4.15, 4.1),
|
|
212
|
+
tand=gen_f420(0.018, 0.018, 0.021, 0.023),
|
|
213
|
+
color="#1ea430", opacity=0.3, name="Isola 420 1x1080 3.0mil")
|
|
214
|
+
IS420_1x2116_40 = Material(er=gen_f420(4.6, 4.52, 4.35, 4.25),
|
|
215
|
+
tand=gen_f420(0.016, 0.016, 0.017, 0.017),
|
|
216
|
+
color="#1ea430", opacity=0.3, name="Isola 420 1x2116 4.0mil")
|
|
217
|
+
IS420_1x2116_50 = Material(er=gen_f420(4.75, 4.37, 4.25, 4.2),
|
|
218
|
+
tand=gen_f420(0.016, 0.016, 0.017, 0.017),
|
|
219
|
+
color="#1ea430", opacity=0.3, name="Isola 420 1x2116 5.0mil")
|
|
220
|
+
IS420_1x1652_60 = Material(er=gen_f420(4.75, 4.4, 4.25, 4.2),
|
|
221
|
+
tand=gen_f420(0.017, 0.017, 0.018, 0.019),
|
|
222
|
+
color="#1ea430", opacity=0.3, name="Isola 420 1x1652 6.0mil")
|
|
223
|
+
IS420_1x7628_70 = Material(er=gen_f420(4.9, 4.58, 4.45, 4.35),
|
|
224
|
+
tand=gen_f420(0.016, 0.016, 0.017, 0.017),
|
|
225
|
+
color="#1ea430", opacity=0.3, name="Isola 420 1x7628 7.0mil")
|
|
226
|
+
IS420_1x7628_80 = Material(er=gen_f420(4.85, 4.5, 4.4, 4.35),
|
|
227
|
+
tand=gen_f420(0.016, 0.016, 0.017, 0.018),
|
|
228
|
+
color="#1ea430", opacity=0.3, name="Isola 420 1x7628 8.0mil")
|
|
229
|
+
IS420_2x2116_100 = Material(er=gen_f420(4.75, 4.37, 4.25, 4.2),
|
|
230
|
+
tand=gen_f420(0.016, 0.016, 0.017, 0.017),
|
|
231
|
+
color="#1ea430", opacity=0.3, name="Isola 420 2x2116 10.0mil")
|
|
232
|
+
IS420_2x1652_120 = Material(er=gen_f420(4.75, 4.4, 4.25, 4.2),
|
|
233
|
+
tand=gen_f420(0.017, 0.017, 0.018, 0.019),
|
|
234
|
+
color="#1ea430", opacity=0.3, name="Isola 420 2x1652 12.0mil")
|
|
235
|
+
IS420_2x7628_140 = Material(er=gen_f420(4.9, 4.57, 4.45, 4.4),
|
|
236
|
+
tand=gen_f420(0.016, 0.016, 0.017, 0.017),
|
|
237
|
+
color="#1ea430", opacity=0.3, name="Isola 420 2x7628 14.0mil")
|
|
238
|
+
IS420_2x7628_160 = Material(er=gen_f420(4.85, 4.5, 4.4, 4.35),
|
|
239
|
+
tand=gen_f420(0.016, 0.016, 0.017, 0.018),
|
|
240
|
+
color="#1ea430", opacity=0.3, name="Isola 420 2x7628 16.0mil")
|
|
241
|
+
IS420_3x1652_180 = Material(er=gen_f420(4.75, 4.4, 4.25, 4.2),
|
|
242
|
+
tand=gen_f420(0.017, 0.017, 0.018, 0.019),
|
|
243
|
+
color="#1ea430", opacity=0.3, name="Isola 420 3x1652 18.0mil")
|
|
244
|
+
IS420_3x7628_200 = Material(er=gen_f420(4.91, 4.6, 4.45, 4.35),
|
|
245
|
+
tand=gen_f420(0.016, 0.016, 0.017, 0.017),
|
|
246
|
+
color="#1ea430", opacity=0.3, name="Isola 420 3x7628 20.0mil")
|
|
247
|
+
IS420_3x7628_210 = Material(er=gen_f420(4.9, 4.57, 4.45, 4.4),
|
|
248
|
+
tand=gen_f420(0.016, 0.016, 0.017, 0.017),
|
|
249
|
+
color="#1ea430", opacity=0.3, name="Isola 420 3x7628 21.0mil")
|
|
250
|
+
IS420_3x7628_240 = Material(er=gen_f420(4.85, 4.5, 4.4, 4.35),
|
|
251
|
+
tand=gen_f420(0.016, 0.016, 0.017, 0.018),
|
|
252
|
+
color="#1ea430", opacity=0.3, name="Isola 420 3x7628 24.0mil")
|
|
253
|
+
IS420_4x7628_280 = Material(er=gen_f420(4.9, 4.57, 4.45, 4.4),
|
|
254
|
+
tand=gen_f420(0.016, 0.016, 0.017, 0.017),
|
|
255
|
+
color="#1ea430", opacity=0.3, name="Isola 420 4x7628 28.0mil")
|
|
256
|
+
IS420_4x7628_300 = Material(er=gen_f420(4.87, 4.53, 4.42, 4.37),
|
|
257
|
+
tand=gen_f420(0.016, 0.016, 0.017, 0.018),
|
|
258
|
+
color="#1ea430", opacity=0.3, name="Isola 420 4x7628 30.0mil")
|
|
259
|
+
IS420_5x7628_390 = Material(er=gen_f420(4.85, 4.5, 4.4, 4.35),
|
|
260
|
+
tand=gen_f420(0.016, 0.016, 0.017, 0.018),
|
|
261
|
+
color="#1ea430", opacity=0.3, name="Isola 420 5x7628 39.0mil")
|
|
262
|
+
IS420_6x7628_470 = Material(er=gen_f420(4.85, 4.5, 4.4, 4.35),
|
|
263
|
+
tand=gen_f420(0.016, 0.016, 0.017, 0.018),
|
|
264
|
+
color="#1ea430", opacity=0.3, name="Isola 420 6x7628 47.0mil")
|
|
265
|
+
IS420_8x7628_580 = Material(er=gen_f420(4.89, 4.55, 4.46, 4.36),
|
|
266
|
+
tand=gen_f420(0.016, 0.016, 0.017, 0.017),
|
|
267
|
+
color="#1ea430", opacity=0.3, name="Isola 420 8x7628 58.0mil")
|
|
268
|
+
IS420_106_20 = Material(er=gen_f420(4.3, 4.1, 3.95, 3.9),
|
|
269
|
+
tand=gen_f420(0.018, 0.019, 0.02, 0.024),
|
|
270
|
+
color="#1ea430", opacity=0.3, name="Isola 420 106 2.0mil")
|
|
271
|
+
IS420_106_23 = Material(er=gen_f420(4.28, 4.02, 3.87, 3.82),
|
|
272
|
+
tand=gen_f420(0.019, 0.02, 0.021, 0.025),
|
|
273
|
+
color="#1ea430", opacity=0.3, name="Isola 420 106 2.3mil")
|
|
274
|
+
IS420_1080_28 = Material(er=gen_f420(4.5, 4.3, 4.05, 4.0),
|
|
275
|
+
tand=gen_f420(0.017, 0.018, 0.019, 0.021),
|
|
276
|
+
color="#1ea430", opacity=0.3, name="Isola 420 1080 2.8mil")
|
|
277
|
+
IS420_1080_35 = Material(er=gen_f420(4.38, 4.14, 4.0, 3.94),
|
|
278
|
+
tand=gen_f420(0.018, 0.019, 0.02, 0.024),
|
|
279
|
+
color="#1ea430", opacity=0.3, name="Isola 420 1080 3.5mil")
|
|
280
|
+
IS420_2113_39 = Material(er=gen_f420(4.64, 4.4, 4.26, 4.2),
|
|
281
|
+
tand=gen_f420(0.017, 0.018, 0.018, 0.02),
|
|
282
|
+
color="#1ea430", opacity=0.3, name="Isola 420 2113 3.9mil")
|
|
283
|
+
IS420_2116_46 = Material(er=gen_f420(4.74, 4.5, 4.36, 4.3),
|
|
284
|
+
tand=gen_f420(0.017, 0.017, 0.018, 0.019),
|
|
285
|
+
color="#1ea430", opacity=0.3, name="Isola 420 2116 4.6mil")
|
|
286
|
+
IS420_2116_52 = Material(er=gen_f420(4.64, 4.4, 4.26, 4.2),
|
|
287
|
+
tand=gen_f420(0.017, 0.018, 0.018, 0.02),
|
|
288
|
+
color="#1ea430", opacity=0.3, name="Isola 420 2116 5.2mil")
|
|
289
|
+
IS420_7628_74 = Material(er=gen_f420(4.85, 4.64, 4.5, 4.34),
|
|
290
|
+
tand=gen_f420(0.016, 0.016, 0.017, 0.018),
|
|
291
|
+
color="#1ea430", opacity=0.3, name="Isola 420 7628 7.4mil")
|
|
292
|
+
IS420_7628_83 = Material(er=gen_f420(4.75, 4.54, 4.4, 4.24),
|
|
293
|
+
tand=gen_f420(0.017, 0.017, 0.017, 0.018),
|
|
294
|
+
color="#1ea430", opacity=0.3, name="Isola 420 7628 8.3mil")
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
from .._emerge.material import Material, FreqDependent
|
|
2
|
+
from scipy.interpolate import interp1d
|
|
3
|
+
import numpy as np
|
|
4
|
+
|
|
5
|
+
FS_300P= np.array([1e9, 3e9, 5e9, 10e9, 15e9, 20e9])
|
|
6
|
+
|
|
7
|
+
def gen_f300p(*vals) -> FreqDependent:
|
|
8
|
+
return FreqDependent(scalar=interp1d(FS_300P, np.array(vals), bounds_error=False, fill_value=(vals[0], vals[-1])))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
############################################################
|
|
13
|
+
# ROGERS 300P #
|
|
14
|
+
############################################################
|
|
15
|
+
|
|
16
|
+
RO300P_1x1035_20 = Material(er=gen_f300p(3.14, 3.14, 3.13, 3.12, 3.11, 3.10),
|
|
17
|
+
tand=gen_f300p(0.0013, 0.0016, 0.0019, 0.0020, 0.0022, 0.0023),
|
|
18
|
+
color="#1ea430", opacity=0.3, name='Rogers 300P 1x1035 2.0mil')
|
|
19
|
+
|
|
20
|
+
RO300P_1x1035_25 = Material(er=gen_f300p(3.07, 3.07, 3.06, 3.05, 3.04, 3.03),
|
|
21
|
+
tand=gen_f300p(0.0012, 0.0015, 0.0018, 0.0020, 0.0022, 0.0023),
|
|
22
|
+
color="#1ea430", opacity=0.3, name='Rogers 300P 1x1035 2.5mil')
|
|
23
|
+
|
|
24
|
+
RO300P_1x106_25 = Material(er=gen_f300p(3.02, 3.01, 3.01, 3.00, 2.99, 2.98),
|
|
25
|
+
tand=gen_f300p(0.0011, 0.0014, 0.0017, 0.0019, 0.0021, 0.0022),
|
|
26
|
+
color="#1ea430", opacity=0.3, name='Rogers 300P 1x106 2.5mil')
|
|
27
|
+
|
|
28
|
+
RO300P_1x1078_30 = Material(er=gen_f300p(3.18, 3.18, 3.17, 3.16, 3.15, 3.14),
|
|
29
|
+
tand=gen_f300p(0.0014, 0.0016, 0.0019, 0.0021, 0.0023, 0.0024),
|
|
30
|
+
color="#1ea430", opacity=0.3, name='Rogers 300P 1x1078 3.0mil')
|
|
31
|
+
|
|
32
|
+
RO300P_1x1035_30 = Material(er=gen_f300p(3.02, 3.01, 3.01, 3.00, 2.99, 2.99),
|
|
33
|
+
tand=gen_f300p(0.0011, 0.0014, 0.0017, 0.0019, 0.0021, 0.0022),
|
|
34
|
+
color="#1ea430", opacity=0.3, name='Rogers 300P 1x1035 3.0mil')
|
|
35
|
+
|
|
36
|
+
RO300P_1x1078_35 = Material(er=gen_f300p(3.11, 3.11, 3.10, 3.09, 3.08, 3.07),
|
|
37
|
+
tand=gen_f300p(0.0013, 0.0015, 0.0018, 0.0020, 0.0022, 0.0023),
|
|
38
|
+
color="#1ea430", opacity=0.3, name='Rogers 300P 1x1078 3.5mil')
|
|
39
|
+
|
|
40
|
+
RO300P_1x1080_35 = Material(er=gen_f300p(3.11, 3.11, 3.10, 3.09, 3.08, 3.07),
|
|
41
|
+
tand=gen_f300p(0.0013, 0.0015, 0.0018, 0.0020, 0.0022, 0.0023),
|
|
42
|
+
color="#1ea430", opacity=0.3, name='Rogers 300P 1x1080 3.5mil')
|
|
43
|
+
|
|
44
|
+
RO300P_1x2113_40 = Material(er=gen_f300p(3.28, 3.27, 3.27, 3.26, 3.25, 3.24),
|
|
45
|
+
tand=gen_f300p(0.0015, 0.0017, 0.0020, 0.0022, 0.0024, 0.0025),
|
|
46
|
+
color="#1ea430", opacity=0.3, name='Rogers 300P 1x2113 4.0mil')
|
|
47
|
+
|
|
48
|
+
RO300P_1x1080_40 = Material(er=gen_f300p(3.07, 3.07, 3.06, 3.05, 3.04, 3.03),
|
|
49
|
+
tand=gen_f300p(0.0012, 0.0015, 0.0018, 0.0020, 0.0022, 0.0023),
|
|
50
|
+
color="#1ea430", opacity=0.3, name='Rogers 300P 1x1080 4.0mil')
|
|
51
|
+
|
|
52
|
+
RO300P_1x2116_50 = Material(er=gen_f300p(3.29, 3.29, 3.28, 3.27, 3.26, 3.25),
|
|
53
|
+
tand=gen_f300p(0.0015, 0.0018, 0.0020, 0.0022, 0.0024, 0.0025),
|
|
54
|
+
color="#1ea430", opacity=0.3, name='Rogers 300P 1x2116 5.0mil')
|
|
55
|
+
|
|
56
|
+
RO300P_1x2116_55 = Material(er=gen_f300p(3.25, 3.25, 3.24, 3.23, 3.22, 3.21),
|
|
57
|
+
tand=gen_f300p(0.0015, 0.0017, 0.0020, 0.0021, 0.0023, 0.0024),
|
|
58
|
+
color="#1ea430", opacity=0.3, name='Rogers 300P 1x2116 5.5mil')
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: emerge
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: An open source EM FEM simulator in Python
|
|
5
5
|
Project-URL: Homepage, https://github.com/FennisRobert/EMerge
|
|
6
6
|
Project-URL: Issues, https://github.com/FennisRobert/EMerge/issues
|
|
@@ -20,6 +20,8 @@ Provides-Extra: cudss
|
|
|
20
20
|
Requires-Dist: cupy-cuda12x; extra == 'cudss'
|
|
21
21
|
Requires-Dist: nvidia-cudss-cu12; extra == 'cudss'
|
|
22
22
|
Requires-Dist: nvmath-python[cu12]; extra == 'cudss'
|
|
23
|
+
Provides-Extra: dxf
|
|
24
|
+
Requires-Dist: ezdxf; extra == 'dxf'
|
|
23
25
|
Provides-Extra: umfpack
|
|
24
26
|
Requires-Dist: scikit-umfpack; (sys_platform != 'win32') and extra == 'umfpack'
|
|
25
27
|
Description-Content-Type: text/markdown
|
|
@@ -82,17 +84,13 @@ To run this FEM library you need the following libraries
|
|
|
82
84
|
- numba
|
|
83
85
|
- matplotlib (for the matplotlib base display)
|
|
84
86
|
- pyvista (for the PyVista base display)
|
|
85
|
-
-
|
|
87
|
+
- cloudpickle
|
|
86
88
|
- mkl (x86 devices only)
|
|
87
89
|
|
|
88
90
|
Optional:
|
|
89
91
|
- scikit-umfpack
|
|
90
92
|
- cudss
|
|
91
93
|
|
|
92
|
-
##
|
|
94
|
+
## Resources / Manual
|
|
93
95
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
## Third Party License Notice
|
|
97
|
-
|
|
98
|
-
“This package depends on Intel® Math Kernel Library (MKL), which is licensed separately under the Intel Simplified Software License (October 2022). Installing with pip will fetch the MKL wheel and prompt you to accept that licence.”
|
|
96
|
+
You can find the latest versions of the manual on: **https://www.emerge-software.com/resources/**
|
|
@@ -1,30 +1,32 @@
|
|
|
1
|
-
emerge/__init__.py,sha256=
|
|
1
|
+
emerge/__init__.py,sha256=oBMzSZxpTde1_W-URZnkS6lXjeuoQAVmTjFyuPjUs7s,2976
|
|
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=pToTECv5U-FM2x0FNoxISWqe0_LN9_eOpw9C8gl7Mqs,28701
|
|
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
|
|
9
9
|
emerge/_emerge/_cache_check.py,sha256=_m9rV-VcaC4uNfETZ2Rp1tkA-gZ5FD3xL3KOHlgdvyA,1547
|
|
10
|
-
emerge/_emerge/bc.py,sha256
|
|
10
|
+
emerge/_emerge/bc.py,sha256=ngKXwIPDfeghpctS6XLeNNtSJ6m1giHP6J25SVQ_w8g,8380
|
|
11
|
+
emerge/_emerge/cacherun.py,sha256=owo-Dz2QGqPKZjBY8s-a5yJuUo0pUQKjX4mscz8KDE0,2717
|
|
11
12
|
emerge/_emerge/const.py,sha256=PTZZTSDOP5NsZ8XnJrKTY2P0tPUhmutBJ1yrm-t7xsI,129
|
|
12
13
|
emerge/_emerge/coord.py,sha256=BKvyrcnHY-_bgHqysnByy5k9_DK4VVfr9KKkRaawG2E,4371
|
|
13
14
|
emerge/_emerge/cs.py,sha256=gULfov6s0jODOdQkH6NmGBbG5wvny1-bJU8fdAlpCHo,19730
|
|
14
15
|
emerge/_emerge/dataset.py,sha256=UcSAJ_siLrOjNBBWRWsS3GUZUpayp63EM6pP6ClwKDI,1534
|
|
15
16
|
emerge/_emerge/geo2d.py,sha256=e_HkX1GQ2iYrdO0zeEgzVOzfGyU1WGJyjeGBAobOttE,3323
|
|
16
|
-
emerge/_emerge/geometry.py,sha256=
|
|
17
|
+
emerge/_emerge/geometry.py,sha256=vkHt4glXl8U3UiPBrx-XTMBdQ0uNW0G3HTVyhIUrMZM,24490
|
|
17
18
|
emerge/_emerge/howto.py,sha256=c4UxUNpA1tygr3OoR-LH-h0UZv-Tf9K8tpCiAU18BKE,8173
|
|
18
19
|
emerge/_emerge/logsettings.py,sha256=s8UboFEtB0aIuLB2FSL2WIbw0_kB363iHNIy4uGQi7w,3711
|
|
19
|
-
emerge/_emerge/material.py,sha256=
|
|
20
|
-
emerge/_emerge/mesh3d.py,sha256=
|
|
20
|
+
emerge/_emerge/material.py,sha256=X1CUrtaMh3oWU0NdLIXbknuSABsKtd4TpYKgW_dbvO8,15543
|
|
21
|
+
emerge/_emerge/mesh3d.py,sha256=U6rXfWf_K1fOpMShUWBpabGoEdKiCt_v7xJVZsh_ABA,36010
|
|
21
22
|
emerge/_emerge/mesher.py,sha256=fKgPb6oZe_bqp0XYfZ6UNgBfRaAS3-tjUtZX8NalJe8,13199
|
|
22
|
-
emerge/_emerge/periodic.py,sha256=
|
|
23
|
+
emerge/_emerge/periodic.py,sha256=dUuWqjlDR8mHtQR3ecINP2FFjJJ0cKg0blOVZ0PCcAo,12087
|
|
23
24
|
emerge/_emerge/plot.py,sha256=cf1I9mj7EIUJcq8vmANlUkqoV6QqVaJaP-zlC-T9E18,8041
|
|
24
|
-
emerge/_emerge/selection.py,sha256=
|
|
25
|
-
emerge/_emerge/
|
|
25
|
+
emerge/_emerge/selection.py,sha256=0ET1ncucI4TgCE0vx92au0eQzJbm3p7uFeShhhEUocs,21518
|
|
26
|
+
emerge/_emerge/settings.py,sha256=wZFMzQSnMEEJptatu--67El1L0I_YEv9S8QjqI69bfs,265
|
|
27
|
+
emerge/_emerge/simmodel.py,sha256=ago9z-7b4mE64EoDU2k6VMhR84oxlMN37aPcEQKXRgs,24483
|
|
26
28
|
emerge/_emerge/simulation_data.py,sha256=r9-9lpLeA1Z5HU3jDVOXV1H80GVawnXL5K81_dvmlE4,14506
|
|
27
|
-
emerge/_emerge/solver.py,sha256=
|
|
29
|
+
emerge/_emerge/solver.py,sha256=re-e2DNc-HzVHStIerqlsq1WQpQgJ7N3PuqshQY-kTo,50288
|
|
28
30
|
emerge/_emerge/system.py,sha256=p4HNz7d_LMRNE9Gk75vVdFecDH2iN_groAM9u-yQTpk,1618
|
|
29
31
|
emerge/_emerge/elements/__init__.py,sha256=I3n9aic6lJW-oGeqTEZ-Fpxvyl2i-WqsHdnrM3v1oB8,799
|
|
30
32
|
emerge/_emerge/elements/femdata.py,sha256=o5P-lRAW_xWEOQ_jrT5zRciFZwq1LqCIXfaWurWdjmw,8082
|
|
@@ -32,16 +34,17 @@ emerge/_emerge/elements/index_interp.py,sha256=02CTHaokaAepBRvt7cHVwh3EpOA3sVE3q
|
|
|
32
34
|
emerge/_emerge/elements/ned2_interp.py,sha256=TwZr6f7USERIHrSShhEWofq_mMwFV5xHqSIRLLiUz48,32650
|
|
33
35
|
emerge/_emerge/elements/nedelec2.py,sha256=9cPAkxUdEFIn2HrSVPuChm7fxEjW3QAqyM0o3z9wCCw,6467
|
|
34
36
|
emerge/_emerge/elements/nedleg2.py,sha256=6pPrBMEwQqhPwIa2LTHYfqyOrLQI19O4XAoAfmTvYAE,8884
|
|
35
|
-
emerge/_emerge/geo/__init__.py,sha256=
|
|
37
|
+
emerge/_emerge/geo/__init__.py,sha256=yTeuT4Oexrsdkr7MxRLeTHEY5iP4IHsWeCvit57fK5g,1161
|
|
36
38
|
emerge/_emerge/geo/horn.py,sha256=otrtPphO2zoRaSOb7NV-iRaydL1uWDAl2xJ6-8Sef24,4148
|
|
37
39
|
emerge/_emerge/geo/modeler.py,sha256=_PMz3lFSa7FmJHWdY-4U1Sqbed-Egy85S_AdjlCldC4,15572
|
|
38
40
|
emerge/_emerge/geo/operations.py,sha256=lqfCU99uiLc0vDGqILpMP1YgKs1e-gwEcSLbI_gE6TA,12441
|
|
39
|
-
emerge/_emerge/geo/pcb.py,sha256=
|
|
41
|
+
emerge/_emerge/geo/pcb.py,sha256=flHHzCOxelYCWkx7cAJRFALvuLYAW-T_YcDLcv2QLws,57355
|
|
40
42
|
emerge/_emerge/geo/pmlbox.py,sha256=gaIG_AoZNQnIyJ8C7x64U-Hw5dsmllWMiZDAH4iRoM0,8784
|
|
41
|
-
emerge/_emerge/geo/polybased.py,sha256=
|
|
42
|
-
emerge/_emerge/geo/shapes.py,sha256=
|
|
43
|
+
emerge/_emerge/geo/polybased.py,sha256=FgMBCHzvkO4fV8kZ8g4Xgo2Wff6d0m4gkWULwz6oSg8,33464
|
|
44
|
+
emerge/_emerge/geo/shapes.py,sha256=LPprT9vR7p6TqSBVKS6eG8P3iYWO7_yC7LNUYw5B8Sk,24196
|
|
43
45
|
emerge/_emerge/geo/step.py,sha256=XcAiEN8W4umNmZdYmrGHX_aJUuiMgc6vgT-UIk8Gbqc,2689
|
|
44
46
|
emerge/_emerge/geo/pcb_tools/calculator.py,sha256=VbMP2xC9i7OFwtqnnwfYgyJSEcJIjr2VIy_Ez1hYqlU,859
|
|
47
|
+
emerge/_emerge/geo/pcb_tools/dxf.py,sha256=6E_Jx4x7vpPZkaR0-hRAuPFDM77Xufv9X_jNd_MsYcM,11752
|
|
45
48
|
emerge/_emerge/geo/pcb_tools/macro.py,sha256=0g-0anOFyxrEkFobiSu0cwWFRQ32xB8Az24mmwo0z6M,2992
|
|
46
49
|
emerge/_emerge/mth/common_functions.py,sha256=oURfF-8p_0s1dKbUATc15dnKHFwvqWa6GC-JMW9UwnI,2061
|
|
47
50
|
emerge/_emerge/mth/integrals.py,sha256=lL7KrHdyFGpboQyvf6W_4bZRZCrMbjd2e8GDHctL-B8,3572
|
|
@@ -50,16 +53,16 @@ emerge/_emerge/mth/pairing.py,sha256=i8bBvTeMmzgF0JdiDNJiTXxx913x4f10777pzD6FJo0
|
|
|
50
53
|
emerge/_emerge/physics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
54
|
emerge/_emerge/physics/microwave/__init__.py,sha256=QHeILGYWmvbfLl1o9wrTiWLm0evfXDgS0JiikUoMTts,28
|
|
52
55
|
emerge/_emerge/physics/microwave/adaptive_freq.py,sha256=aWhijhCVAbnuwkru-I1AaRdY20uyozf6OWRIh9r2ijg,9786
|
|
53
|
-
emerge/_emerge/physics/microwave/microwave_3d.py,sha256=
|
|
54
|
-
emerge/_emerge/physics/microwave/microwave_bc.py,sha256=
|
|
55
|
-
emerge/_emerge/physics/microwave/microwave_data.py,sha256=
|
|
56
|
+
emerge/_emerge/physics/microwave/microwave_3d.py,sha256=rjHJ2ie37H5oG86lyMO-YXg5dbg0fnzC6kRzwxxNRKA,43620
|
|
57
|
+
emerge/_emerge/physics/microwave/microwave_bc.py,sha256=5jmpHvk4Agtc2cMYqLN6xO4i7JU0iWzPCHyiWB8W8XY,42823
|
|
58
|
+
emerge/_emerge/physics/microwave/microwave_data.py,sha256=oJpNc21-i99ng8Hi4vshAXst-3DFToXLbrLqgPuz0cY,50483
|
|
56
59
|
emerge/_emerge/physics/microwave/periodic.py,sha256=wYSUgLFVtCLqSG3EDKoCDRU93iPUzBdXzVRdHTRmbpI,3000
|
|
57
60
|
emerge/_emerge/physics/microwave/port_functions.py,sha256=aVU__AkVk8b1kH2J_oDLF5iNReCxC9nzCtesFSSSSQo,2112
|
|
58
61
|
emerge/_emerge/physics/microwave/sc.py,sha256=WZvoPhmHkfEv619RhmN09sXDBV0ryTqybwErA8Rc7lU,4735
|
|
59
62
|
emerge/_emerge/physics/microwave/simjob.py,sha256=aCWCs7IXBfVBWWYhwyHvXSRHY3FOd3CK5ABcaFEsNnM,4927
|
|
60
63
|
emerge/_emerge/physics/microwave/sparam.py,sha256=1SXGyr1UsrPnCIi4ffwobM4pzgkj50y4LrWCr_J5IRY,4946
|
|
61
64
|
emerge/_emerge/physics/microwave/touchstone.py,sha256=pMcCOLWVqIKctcShcJxyaV-0rhRWXMSS1Jz14dVQEyY,5799
|
|
62
|
-
emerge/_emerge/physics/microwave/assembly/assembler.py,sha256=
|
|
65
|
+
emerge/_emerge/physics/microwave/assembly/assembler.py,sha256=HsIZYFamp8tfJgqOQV3qm4Buq7rx5f2n1zO0Q_uusD4,22772
|
|
63
66
|
emerge/_emerge/physics/microwave/assembly/curlcurl.py,sha256=iYHTNI48bmC6SjCiCMPoY4yqsf__e_h_vbW0fNKQpNQ,18686
|
|
64
67
|
emerge/_emerge/physics/microwave/assembly/generalized_eigen.py,sha256=LOybnxdy1x6R6d0lPnfnKckZSiYRfWOW9MUFlV_ygfs,16945
|
|
65
68
|
emerge/_emerge/physics/microwave/assembly/generalized_eigen_hb.py,sha256=XcWWoDVU7KlcjP8re3o-Kb63A3px4CJ-OPjCT57_J8E,17382
|
|
@@ -67,19 +70,23 @@ emerge/_emerge/physics/microwave/assembly/periodicbc.py,sha256=Zg1kgQMccDQA2oVEr
|
|
|
67
70
|
emerge/_emerge/physics/microwave/assembly/robinbc.py,sha256=syJ-NuHHA0WDQECuaPdeW-OfzIGHmxxqalKiokSyJFI,17742
|
|
68
71
|
emerge/_emerge/plot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
72
|
emerge/_emerge/plot/display.py,sha256=TQLlKb-LkaG5ZOSLfxp9KXPlZPRFTxNj1LhVQ-Lp1-s,18476
|
|
70
|
-
emerge/_emerge/plot/simple_plots.py,sha256=
|
|
73
|
+
emerge/_emerge/plot/simple_plots.py,sha256=szIpmQmO8o6ubzB_E3zTJfEx16mJ3-OXrMYdD_wjAcs,25256
|
|
71
74
|
emerge/_emerge/plot/matplotlib/mpldisplay.py,sha256=e8V6EhGdCW7nRkSFvjHCcRO5uR-FcD0yHQ1nxPQCbp4,8674
|
|
72
75
|
emerge/_emerge/plot/pyvista/__init__.py,sha256=CPclatEu6mFnJZzCQk09g6T6Fh20WTbiLAJGSwAnPXU,30
|
|
73
|
-
emerge/_emerge/plot/pyvista/display.py,sha256=
|
|
74
|
-
emerge/_emerge/plot/pyvista/display_settings.py,sha256=
|
|
76
|
+
emerge/_emerge/plot/pyvista/display.py,sha256=0OgtSj2uEvQHZ6X-IHVpwffzSv8n4iOJEWMOrO_MFMo,39018
|
|
77
|
+
emerge/_emerge/plot/pyvista/display_settings.py,sha256=gV5hjRGEAl3oQeBPobas6b6JzYfMFrXIGtVSaeml4N0,1074
|
|
75
78
|
emerge/_emerge/projects/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
76
79
|
emerge/_emerge/projects/_gen_base.txt,sha256=DqQz36PZg6v1ovQjHvPjd0t4AIbmikZdb9dmrNYsK3w,598
|
|
77
80
|
emerge/_emerge/projects/_load_base.txt,sha256=bHsZ4okxa9uu8qP4UOxSAeIQzuwpRtN0i71rg8wuqMA,473
|
|
78
81
|
emerge/_emerge/projects/generate_project.py,sha256=TNw-0SpLc82MBq0bd9hB_yqvBZCgmuPonCBsHTp91uk,1450
|
|
79
82
|
emerge/_emerge/solve_interfaces/cudss_interface.py,sha256=Iszyy7RuuCa_FgfROEyTSSWbmR2LzMUkEcR8klzIKOQ,9915
|
|
80
83
|
emerge/_emerge/solve_interfaces/pardiso_interface.py,sha256=iVFxToMmIzhj3hcAP-O_MDHKz82ePFIHY1us11kzUBU,15305
|
|
81
|
-
emerge
|
|
82
|
-
emerge
|
|
83
|
-
emerge
|
|
84
|
-
emerge
|
|
85
|
-
emerge-0.
|
|
84
|
+
emerge/beta/dxf.py,sha256=Bw4lVk0TquOgCxTZV23BZN7PrgqxBrMZxbHV1waC5U0,50
|
|
85
|
+
emerge/materials/__init__.py,sha256=Z9tu3m_nqj6F9I-FwoVoN0vCTYUlFesH3KxJ38wkZck,19
|
|
86
|
+
emerge/materials/isola.py,sha256=kSDxHJZVn2CcanoUjlwRVKIPvadRbBybURTdIHWx728,18660
|
|
87
|
+
emerge/materials/rogers.py,sha256=4u6ma_XQdXGKWE3WsFkaMTamCQNo9kTYSTU8S1gCAYU,3388
|
|
88
|
+
emerge-1.0.1.dist-info/METADATA,sha256=1XCpukuaUJX2KkuCGJsg4Olfbem2_ntcWJarFp3tpZk,3021
|
|
89
|
+
emerge-1.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
90
|
+
emerge-1.0.1.dist-info/entry_points.txt,sha256=8rFvAXticpKg4OTC8JEvAksnduW72KIEskCGG9XnFf8,43
|
|
91
|
+
emerge-1.0.1.dist-info/licenses/LICENSE,sha256=VOCXWddrjMN5j7TvnSAOh1Dx7jkugdwq9Lqhycf5inc,17852
|
|
92
|
+
emerge-1.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|