emerge 0.6.8__py3-none-any.whl → 0.6.10__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 +12 -3
- emerge/_emerge/cs.py +36 -0
- emerge/_emerge/geo/polybased.py +58 -26
- emerge/_emerge/geo/shapes.py +6 -0
- emerge/_emerge/geometry.py +21 -5
- emerge/_emerge/logsettings.py +13 -2
- emerge/_emerge/material.py +19 -3
- emerge/_emerge/mesh3d.py +15 -4
- emerge/_emerge/physics/microwave/microwave_3d.py +1 -1
- emerge/_emerge/physics/microwave/microwave_bc.py +33 -39
- emerge/_emerge/physics/microwave/microwave_data.py +29 -2
- emerge/_emerge/plot/pyvista/display.py +33 -5
- emerge/_emerge/plot/pyvista/display_settings.py +4 -1
- emerge/_emerge/plot/simple_plots.py +56 -28
- emerge/_emerge/projects/_load_base.txt +1 -2
- emerge/_emerge/selection.py +4 -0
- emerge/_emerge/simmodel.py +15 -9
- emerge/_emerge/solve_interfaces/cudss_interface.py +10 -4
- emerge/_emerge/solver.py +14 -4
- emerge/lib.py +256 -250
- {emerge-0.6.8.dist-info → emerge-0.6.10.dist-info}/METADATA +2 -1
- {emerge-0.6.8.dist-info → emerge-0.6.10.dist-info}/RECORD +25 -25
- {emerge-0.6.8.dist-info → emerge-0.6.10.dist-info}/WHEEL +0 -0
- {emerge-0.6.8.dist-info → emerge-0.6.10.dist-info}/entry_points.txt +0 -0
- {emerge-0.6.8.dist-info → emerge-0.6.10.dist-info}/licenses/LICENSE +0 -0
emerge/lib.py
CHANGED
|
@@ -26,55 +26,57 @@ VACUUM = Material(color="#2d8cd5", opacity=0.05)
|
|
|
26
26
|
############################################################
|
|
27
27
|
|
|
28
28
|
GREY = "#bfbfbf"
|
|
29
|
-
MET_ALUMINUM = Material(cond=3.77e7, color=GREY,
|
|
30
|
-
MET_CARBON = Material(cond=3.33e4, color=GREY,
|
|
31
|
-
MET_CHROMIUM = Material(cond=5.56e6, color=GREY,
|
|
32
|
-
MET_COPPER = Material(cond=5.8e7, color="#62290c", opacity=1.0)
|
|
33
|
-
MET_GOLD = Material(cond=4.10e7, color="#d4af37", opacity=0.5)
|
|
34
|
-
MET_INDIUM = Material(cond=6.44e6, color=GREY,
|
|
35
|
-
MET_IRIDIUM = Material(cond=2.13e7, color=GREY,
|
|
36
|
-
MET_IRON = Material(cond=1.04e7, color="#aaaaaa", opacity=0.5)
|
|
37
|
-
MET_LEAD = Material(cond=4.84e6, color=GREY,
|
|
38
|
-
MET_MAGNESIUM = Material(cond=2.38e7, color=GREY,
|
|
39
|
-
MET_NICKEL = Material(cond=1.14e7, color=GREY,
|
|
40
|
-
MET_NICHROME = Material(cond=9.09e5, color=GREY,
|
|
41
|
-
MET_PALLADIUM = Material(cond=9.42e6, color=GREY,
|
|
42
|
-
MET_PLATINUM = Material(cond=9.42e6, color=GREY,
|
|
43
|
-
MET_RHODIUM = Material(cond=2.22e7, color=GREY,
|
|
44
|
-
MET_SILVER = Material(cond=6.29e7, color=GREY,
|
|
45
|
-
MET_TANTALUM = Material(cond=6.44e6, color=GREY,
|
|
46
|
-
MET_TANTALUM_NITRIDE = Material(cond=3.97e5, color=GREY,
|
|
47
|
-
MET_TIN = Material(cond=8.66e6, color=GREY,
|
|
48
|
-
MET_TITANIUM = Material(cond=1.82e6, color=GREY,
|
|
49
|
-
MET_TUNGSTEN = Material(cond=1.79e7, color=GREY,
|
|
50
|
-
MET_ZINC = Material(cond=1.76e7, color=GREY,
|
|
51
|
-
MET_ZIRCONIUM = Material(cond=2.44e7, color=GREY,
|
|
29
|
+
MET_ALUMINUM = Material(cond=3.77e7, color=GREY, opacity=0.5, _metal=True, name="Aluminum")
|
|
30
|
+
MET_CARBON = Material(cond=3.33e4, color=GREY, opacity=0.5, _metal=True, name="Carbon")
|
|
31
|
+
MET_CHROMIUM = Material(cond=5.56e6, color=GREY, opacity=0.5, _metal=True, name="Chromium")
|
|
32
|
+
MET_COPPER = Material(cond=5.8e7, color="#62290c", opacity=1.0, _metal=True, name="Copper")
|
|
33
|
+
MET_GOLD = Material(cond=4.10e7, color="#d4af37", opacity=0.5, _metal=True, name="Gold")
|
|
34
|
+
MET_INDIUM = Material(cond=6.44e6, color=GREY, opacity=0.5, _metal=True, name="Indium")
|
|
35
|
+
MET_IRIDIUM = Material(cond=2.13e7, color=GREY, opacity=0.5, _metal=True, name="Iridium")
|
|
36
|
+
MET_IRON = Material(cond=1.04e7, color="#aaaaaa", opacity=0.5, _metal=True, name="Iron")
|
|
37
|
+
MET_LEAD = Material(cond=4.84e6, color=GREY, opacity=0.5, _metal=True, name="Lead")
|
|
38
|
+
MET_MAGNESIUM = Material(cond=2.38e7, color=GREY, opacity=0.5, _metal=True, name="Magnesium")
|
|
39
|
+
MET_NICKEL = Material(cond=1.14e7, color=GREY, opacity=0.5, _metal=True, name="Nickel")
|
|
40
|
+
MET_NICHROME = Material(cond=9.09e5, color=GREY, opacity=0.5, _metal=True, name="Nichrome")
|
|
41
|
+
MET_PALLADIUM = Material(cond=9.42e6, color=GREY, opacity=0.5, _metal=True, name="Palladium")
|
|
42
|
+
MET_PLATINUM = Material(cond=9.42e6, color=GREY, opacity=0.5, _metal=True, name="Platinum")
|
|
43
|
+
MET_RHODIUM = Material(cond=2.22e7, color=GREY, opacity=0.5, _metal=True, name="Rhodium")
|
|
44
|
+
MET_SILVER = Material(cond=6.29e7, color=GREY, opacity=0.5, _metal=True, name="Silver")
|
|
45
|
+
MET_TANTALUM = Material(cond=6.44e6, color=GREY, opacity=0.5, _metal=True, name="Tantalum")
|
|
46
|
+
MET_TANTALUM_NITRIDE = Material(cond=3.97e5, color=GREY, opacity=0.5, _metal=True, name="Tantalum Nitride")
|
|
47
|
+
MET_TIN = Material(cond=8.66e6, color=GREY, opacity=0.5, _metal=True, name="Tin")
|
|
48
|
+
MET_TITANIUM = Material(cond=1.82e6, color=GREY, opacity=0.5, _metal=True, name="Titanium")
|
|
49
|
+
MET_TUNGSTEN = Material(cond=1.79e7, color=GREY, opacity=0.5, _metal=True, name="Tungsten")
|
|
50
|
+
MET_ZINC = Material(cond=1.76e7, color=GREY, opacity=0.5, _metal=True, name="Zinc")
|
|
51
|
+
MET_ZIRCONIUM = Material(cond=2.44e7, color=GREY, opacity=0.5, _metal=True, name="Zirconium")
|
|
52
|
+
|
|
52
53
|
|
|
53
54
|
|
|
54
55
|
############################################################
|
|
55
56
|
# SEMICONDUCTORS #
|
|
56
57
|
############################################################
|
|
57
58
|
|
|
58
|
-
SEMI_SILICON = Material(er=11.7, tand=0.005,
|
|
59
|
-
SEMI_SILICON_N = Material(er=7.5, tand=0.0003,
|
|
60
|
-
SEMI_SILICON_OXIDE = Material(er=3.9, tand=0.0001,
|
|
61
|
-
SEMI_GERMANIUM = Material(er=16.0, tand=0.001,
|
|
62
|
-
SEMI_GAAS = Material(er=13.1, tand=0.0016,
|
|
63
|
-
SEMI_GA_N = Material(er=8.9, tand=0.002,
|
|
64
|
-
SEMI_INP = Material(er=12.5, tand=0.0015,
|
|
65
|
-
SEMI_ALN = Material(er=8.6, tand=0.0003,
|
|
66
|
-
SEMI_AL2O3 = Material(er=9.8, tand=0.0002,
|
|
67
|
-
SEMI_SAPPHIRE = Material(er=9.4, tand=0.0001,
|
|
68
|
-
SEMI_DIAMOND = Material(er=5.5, tand=0.00005,
|
|
69
|
-
SEMI_HBN = Material(er=4.0, tand=0.0001,
|
|
70
|
-
SEMI_SIOXNY = Material(er=5.0, tand=0.002,
|
|
59
|
+
SEMI_SILICON = Material(er=11.7, tand=0.005, color="#b4b4b4", opacity=0.5, _metal=True, name="Silicon") # Crystalline Si
|
|
60
|
+
SEMI_SILICON_N = Material(er=7.5, tand=0.0003, color="#a0a0a0", opacity=0.5, _metal=True, name="Silicon Nitride") # Si₃N₄
|
|
61
|
+
SEMI_SILICON_OXIDE = Material(er=3.9, tand=0.0001, color="#e0e0e0", opacity=0.5, _metal=True, name="Silicon Dioxide") # SiO₂
|
|
62
|
+
SEMI_GERMANIUM = Material(er=16.0, tand=0.001, color="#787878", opacity=0.5, _metal=True, name="Germanium")
|
|
63
|
+
SEMI_GAAS = Material(er=13.1, tand=0.0016, color="#aa8888", opacity=0.5, _metal=True, name="Gallium Arsenide")
|
|
64
|
+
SEMI_GA_N = Material(er=8.9, tand=0.002, color="#8888cc", opacity=0.5, _metal=True, name="Gallium Nitride")
|
|
65
|
+
SEMI_INP = Material(er=12.5, tand=0.0015, color="#cc99aa", opacity=0.5, _metal=True, name="Indium Phosphide")
|
|
66
|
+
SEMI_ALN = Material(er=8.6, tand=0.0003, color="#ccccee", opacity=0.5, _metal=True, name="Aluminum Nitride")
|
|
67
|
+
SEMI_AL2O3 = Material(er=9.8, tand=0.0002, color="#eaeaea", opacity=0.5, _metal=True, name="Alumina") # Al₂O₃
|
|
68
|
+
SEMI_SAPPHIRE = Material(er=9.4, tand=0.0001, color="#ddddff", opacity=0.5, _metal=True, name="Sapphire")
|
|
69
|
+
SEMI_DIAMOND = Material(er=5.5, tand=0.00005, color="#cceeff", opacity=0.5, _metal=True, name="Diamond") # Synthetic CVD diamond
|
|
70
|
+
SEMI_HBN = Material(er=4.0, tand=0.0001, color="#eeeeff", opacity=0.5, _metal=True, name="Hexagonal Boron Nitride")
|
|
71
|
+
SEMI_SIOXNY = Material(er=5.0, tand=0.002, color="#ddddee", opacity=0.5, _metal=True, name="Silicon Oxynitride") # SiOxNy
|
|
72
|
+
|
|
71
73
|
|
|
72
74
|
############################################################
|
|
73
75
|
# LIQUIDS #
|
|
74
76
|
############################################################
|
|
75
77
|
|
|
76
|
-
LIQ_WATER = Material(er=80.1, cond=0.0, color="#0080ff", opacity=0.3)
|
|
77
|
-
LIQ_FERRITE = Material(er=12.0, ur=2000, tand=0.02, color="#994d4d", opacity=0.3)
|
|
78
|
+
LIQ_WATER = Material(er=80.1, cond=0.0, color="#0080ff", opacity=0.3, _metal=True, name='Water')
|
|
79
|
+
LIQ_FERRITE = Material(er=12.0, ur=2000, tand=0.02, color="#994d4d", opacity=0.3, name='Ferrite')
|
|
78
80
|
|
|
79
81
|
############################################################
|
|
80
82
|
# DIELECTRICS #
|
|
@@ -84,224 +86,228 @@ LIQ_FERRITE = Material(er=12.0, ur=2000, tand=0.02, color="#994d4d", opacit
|
|
|
84
86
|
# respective owners. Use of them here does not imply any affiliation with or
|
|
85
87
|
# endorsement by those owners.
|
|
86
88
|
|
|
87
|
-
DIEL_PTFE = Material(er=2.1, tand=0.0002, color="#21912b", opacity=0.3)
|
|
88
|
-
DIEL_POLYIMIDE = Material(er=3.4, tand=0.02, color="#b8b8b8")
|
|
89
|
-
DIEL_CERAMIC = Material(er=6.0, tand=0.001, color="#efead1")
|
|
90
|
-
DIEL_AD10 = Material(er=10.2, tand=0.0078, color="#21912b", opacity=0.3)
|
|
91
|
-
DIEL_AD1000 = Material(er=10.2, tand=0.0023, color="#21912b", opacity=0.3)
|
|
92
|
-
DIEL_AD250 = Material(er=2.5, tand=0.0018, color="#21912b", opacity=0.3)
|
|
93
|
-
DIEL_AD250_PIM = Material(er=2.5, tand=0.0018, color="#21912b", opacity=0.3)
|
|
94
|
-
DIEL_AD250A = Material(er=2.50, tand=0.0015, color="#21912b", opacity=0.3)
|
|
95
|
-
DIEL_AD250C = Material(er=2.50, tand=0.0014, color="#21912b", opacity=0.3)
|
|
96
|
-
DIEL_AD255 = Material(er=2.55, tand=0.0018, color="#21912b", opacity=0.3)
|
|
97
|
-
DIEL_AD255A = Material(er=2.55, tand=0.0015, color="#21912b", opacity=0.3)
|
|
98
|
-
DIEL_AD255C = Material(er=2.55, tand=0.0014, color="#21912b", opacity=0.3)
|
|
99
|
-
DIEL_AD260A = Material(er=2.60, tand=0.0017, color="#21912b", opacity=0.3)
|
|
100
|
-
DIEL_AD270 = Material(er=2.7, tand=0.0023, color="#21912b", opacity=0.3)
|
|
101
|
-
DIEL_AD300 = Material(er=3, tand=0.003, color="#21912b", opacity=0.3)
|
|
102
|
-
DIEL_AD300_PIM = Material(er=3, tand=0.003, color="#21912b", opacity=0.3)
|
|
103
|
-
DIEL_AD300A = Material(er=3.00, tand=0.002, color="#21912b", opacity=0.3)
|
|
104
|
-
DIEL_AD300C = Material(er=2.97, tand=0.002, color="#21912b", opacity=0.3)
|
|
105
|
-
DIEL_AD320 = Material(er=3.2, tand=0.0038, color="#21912b", opacity=0.3)
|
|
106
|
-
DIEL_AD320_PIM = Material(er=3.2, tand=0.003, color="#21912b", opacity=0.3)
|
|
107
|
-
DIEL_AD320A = Material(er=3.20, tand=0.0032, color="#21912b", opacity=0.3)
|
|
108
|
-
DIEL_AD350 = Material(er=3.5, tand=0.003, color="#21912b", opacity=0.3)
|
|
109
|
-
DIEL_AD350_PIM = Material(er=3.5, tand=0.003, color="#21912b", opacity=0.3)
|
|
110
|
-
DIEL_AD350A = Material(er=3.50, tand=0.003, color="#21912b", opacity=0.3)
|
|
111
|
-
DIEL_AD410 = Material(er=4.1, tand=0.003, color="#21912b", opacity=0.3)
|
|
112
|
-
DIEL_AD430 = Material(er=4.3, tand=0.003, color="#21912b", opacity=0.3)
|
|
113
|
-
DIEL_AD450 = Material(er=4.5, tand=0.0035, color="#21912b", opacity=0.3)
|
|
114
|
-
DIEL_AD450A = Material(er=4.5, tand=0.0035, color="#21912b", opacity=0.3)
|
|
115
|
-
DIEL_AD5 = Material(er=5.1, tand=0.003, color="#21912b", opacity=0.3)
|
|
116
|
-
DIEL_AD600 = Material(er=5.90, tand=0.003, color="#21912b", opacity=0.3)
|
|
117
|
-
DIEL_AR1000 = Material(er=9.8, tand=0.003, color="#21912b", opacity=0.3)
|
|
118
|
-
DIEL_CER_10 = Material(er=10.00, tand=0.0035, color="#21912b", opacity=0.3)
|
|
119
|
-
DIEL_CLTE = Material(er=2.96, tand=0.0023, color="#21912b", opacity=0.3)
|
|
120
|
-
DIEL_CLTE_AT = Material(er=3.00, tand=0.0013, color="#21912b", opacity=0.3)
|
|
121
|
-
DIEL_CLTE_LC = Material(er=2.94, tand=0.0025, color="#21912b", opacity=0.3)
|
|
122
|
-
DIEL_CLTE_XT = Material(er=2.94, tand=0.0012, color="#21912b", opacity=0.3)
|
|
123
|
-
DIEL_COMCLAD_HF_ER2 = Material(er=2, tand=0.0025, color="#21912b", opacity=0.3)
|
|
124
|
-
DIEL_COMCLAD_HF_ER3 = Material(er=3, tand=0.0025, color="#21912b", opacity=0.3)
|
|
125
|
-
DIEL_COMCLAD_HF_ER4 = Material(er=4, tand=0.0025, color="#21912b", opacity=0.3)
|
|
126
|
-
DIEL_COMCLAD_HF_ER5 = Material(er=5, tand=0.0025, color="#21912b", opacity=0.3)
|
|
127
|
-
DIEL_COMCLAD_HF_ER6 = Material(er=6, tand=0.0025, color="#21912b", opacity=0.3)
|
|
128
|
-
DIEL_COPPER_CLAD_ULTEM = Material(er=3.05, tand=0.003, color="#21912b", opacity=0.3)
|
|
129
|
-
DIEL_CUCLAD_217LX = Material(er=2.17, tand=0.0009, color="#21912b", opacity=0.3)
|
|
130
|
-
DIEL_CUCLAD_233LX = Material(er=2.33, tand=0.0013, color="#21912b", opacity=0.3)
|
|
131
|
-
DIEL_CUCLAD_250GT = Material(er=2.5, tand=0.0018, color="#21912b", opacity=0.3)
|
|
132
|
-
DIEL_CUCLAD_250GX = Material(er=2.4, tand=0.0018, color="#21912b", opacity=0.3)
|
|
133
|
-
DIEL_CUFLON = Material(er=2.05, tand=0.00045, color="#21912b", opacity=0.3)
|
|
134
|
-
DIEL_DICLAD_522 = Material(er=2.4, tand=0.0018, color="#21912b", opacity=0.3)
|
|
135
|
-
DIEL_DICLAD_527 = Material(er=2.4, tand=0.0018, color="#21912b", opacity=0.3)
|
|
136
|
-
DIEL_DICLAD_870 = Material(er=2.33, tand=0.0013, color="#21912b", opacity=0.3)
|
|
137
|
-
DIEL_DICLAD_880 = Material(er=2.17, tand=0.0009, color="#21912b", opacity=0.3)
|
|
138
|
-
DIEL_DICLAD_880_PIM = Material(er=2.17, tand=0.0009, color="#21912b", opacity=0.3)
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
DIEL_IS6802_80 = Material(er=2.80, tand=0.003,
|
|
142
|
-
DIEL_IS6803_00 = Material(er=3.00, tand=0.003,
|
|
143
|
-
DIEL_IS6803_20 = Material(er=3.20, tand=0.003,
|
|
144
|
-
DIEL_IS6803_33 = Material(er=3.33, tand=0.003,
|
|
145
|
-
DIEL_IS6803_38 = Material(er=3.38, tand=0.0032, color="#21912b", opacity=0.3)
|
|
146
|
-
DIEL_IS6803_45 = Material(er=3.45, tand=0.0035, color="#21912b", opacity=0.3)
|
|
147
|
-
DIEL_ISOCLAD_917 = Material(er=2.17, tand=0.0013, color="#21912b", opacity=0.3)
|
|
148
|
-
DIEL_ISOCLAD_933 = Material(er=2.33, tand=0.0016, color="#21912b", opacity=0.3)
|
|
149
|
-
DIEL_ISOLA_I_TERA_MT
|
|
150
|
-
DIEL_ISOLA_NELCO_4000_13 = Material(er=3.77, tand=0.008,
|
|
151
|
-
DIEL_MAT_25N = Material(er=3.38, tand=0.0025, color="#21912b", opacity=0.3)
|
|
152
|
-
DIEL_MAT25FR = Material(er=3.58, tand=0.0035, color="#21912b", opacity=0.3)
|
|
153
|
-
DIEL_MEGTRON6R5775 = Material(er=3.61, tand=0.004,
|
|
154
|
-
DIEL_MERCURYWAVE_9350 = Material(er=3.5, tand=0.004, color="#21912b", opacity=0.3)
|
|
155
|
-
DIEL_MULTICLAD_HF = Material(er=3.7,
|
|
156
|
-
DIEL_N_8000 = Material(er=3.5,
|
|
157
|
-
DIEL_N4350_13RF = Material(er=3.5,
|
|
158
|
-
DIEL_N4380_13RF = Material(er=3.8,
|
|
159
|
-
DIEL_N8000Q = Material(er=3.2,
|
|
160
|
-
DIEL_N9300_13RF = Material(er=3,
|
|
161
|
-
DIEL_N9320_13RF = Material(er=3.2,
|
|
162
|
-
DIEL_N9338_13RF = Material(er=3.38, tand=0.0046, color="#21912b", opacity=0.3)
|
|
163
|
-
DIEL_N9350_13RF = Material(er=3.48, tand=0.0055, color="#21912b", opacity=0.3)
|
|
164
|
-
DIEL_NH9294 = Material(er=2.94, tand=0.0022, color="#21912b", opacity=0.3)
|
|
165
|
-
DIEL_NH9300 = Material(er=3.00, tand=0.0023, color="#21912b", opacity=0.3)
|
|
166
|
-
DIEL_NH9320 = Material(er=3.20, tand=0.0024, color="#21912b", opacity=0.3)
|
|
167
|
-
DIEL_NH9338 = Material(er=3.38, tand=0.0025, color="#21912b", opacity=0.3)
|
|
168
|
-
DIEL_NH9348 = Material(er=3.48, tand=0.003,
|
|
169
|
-
DIEL_NH9350 = Material(er=3.50, tand=0.003,
|
|
170
|
-
DIEL_NH9410 = Material(er=4.10, tand=0.003,
|
|
171
|
-
DIEL_NH9450 = Material(er=4.50, tand=0.003,
|
|
172
|
-
DIEL_NORCLAD = Material(er=2.55, tand=0.0011, color="#21912b", opacity=0.3)
|
|
173
|
-
DIEL_NX9240 = Material(er=2.40, tand=0.0016, color="#21912b", opacity=0.3)
|
|
174
|
-
DIEL_NX9245 = Material(er=2.45, tand=0.0016, color="#21912b", opacity=0.3)
|
|
175
|
-
DIEL_NX9250 = Material(er=2.50, tand=0.0017, color="#21912b", opacity=0.3)
|
|
176
|
-
DIEL_NX9255 = Material(er=2.55, tand=0.0018, color="#21912b", opacity=0.3)
|
|
177
|
-
DIEL_NX9260 = Material(er=2.60, tand=0.0019, color="#21912b", opacity=0.3)
|
|
178
|
-
DIEL_NX9270 = Material(er=2.70, tand=0.002,
|
|
179
|
-
DIEL_NX9294 = Material(er=2.94, tand=0.0022, color="#21912b", opacity=0.3)
|
|
180
|
-
DIEL_NX9300 = Material(er=3.00, tand=0.0023, color="#21912b", opacity=0.3)
|
|
181
|
-
DIEL_NX9320 = Material(er=3.20, tand=0.0024, color="#21912b", opacity=0.3)
|
|
182
|
-
DIEL_NY9208 = Material(er=2.08, tand=0.0006, color="#21912b", opacity=0.3)
|
|
183
|
-
DIEL_NY9217 = Material(er=2.17, tand=0.0008, color="#21912b", opacity=0.3)
|
|
184
|
-
DIEL_NY9220 = Material(er=2.20, tand=0.0009, color="#21912b", opacity=0.3)
|
|
185
|
-
DIEL_NY9233 = Material(er=2.33, tand=0.0011, color="#21912b", opacity=0.3)
|
|
186
|
-
DIEL_POLYGUIDE = Material(er=2.320,
|
|
187
|
-
DIEL_RF_30 = Material(er=3.00, tand=0.0019, color="#21912b", opacity=0.3)
|
|
188
|
-
DIEL_RF_301 = Material(er=2.97, tand=0.0018, color="#21912b", opacity=0.3)
|
|
189
|
-
DIEL_RF_35 = Material(er=3.50, tand=0.0025, color="#21912b", opacity=0.3)
|
|
190
|
-
DIEL_RF_35A2 = Material(er=3.50, tand=0.0015, color="#21912b", opacity=0.3)
|
|
191
|
-
DIEL_RF_35P = Material(er=3.50, tand=0.0034, color="#21912b", opacity=0.3)
|
|
192
|
-
DIEL_RF_35TC = Material(er=3.50, tand=0.0011, color="#21912b", opacity=0.3)
|
|
193
|
-
DIEL_RF_41 = Material(er=4.10, tand=0.0038, color="#21912b", opacity=0.3)
|
|
194
|
-
DIEL_RF_43 = Material(er=4.30, tand=0.0033, color="#21912b", opacity=0.3)
|
|
195
|
-
DIEL_RF_45 = Material(er=4.50, tand=0.0037, color="#21912b", opacity=0.3)
|
|
196
|
-
DIEL_RF_60A = Material(er=6.15, tand=0.0038, color="#21912b", opacity=0.3)
|
|
197
|
-
DIEL_RO3003 = Material(er=3.00, tand=0.0011, color="#21912b", opacity=0.3)
|
|
198
|
-
DIEL_RO3006 = Material(er=6.15, tand=0.002,
|
|
199
|
-
DIEL_RO3010 = Material(er=10.2, tand=0.0022, color="#21912b", opacity=0.3)
|
|
200
|
-
DIEL_RO3035 = Material(er=3.50, tand=0.0017, color="#21912b", opacity=0.3)
|
|
201
|
-
DIEL_RO3203 = Material(er=3.02, tand=0.0016, color="#21912b", opacity=0.3)
|
|
202
|
-
DIEL_RO3206 = Material(er=6.15, tand=0.0027, color="#21912b", opacity=0.3)
|
|
203
|
-
DIEL_RO3210 = Material(er=10.2, tand=0.0027, color="#21912b", opacity=0.3)
|
|
204
|
-
DIEL_RO3730 = Material(er=3.00, tand=0.0016, color="#21912b", opacity=0.3)
|
|
205
|
-
DIEL_RO4003C = Material(er=3.38, tand=0.0029, color="#21912b", opacity=0.3)
|
|
206
|
-
DIEL_RO4350B = Material(er=3.48, tand=0.0037, color="#21912b", opacity=0.3)
|
|
207
|
-
DIEL_RO4350B_TX = Material(er=3.48, tand=0.0034, color="#21912b", opacity=0.3)
|
|
208
|
-
DIEL_RO4360 = Material(er=6.15, tand=0.0038, color="#21912b", opacity=0.3)
|
|
209
|
-
DIEL_RO4533 = Material(er=3.30, tand=0.0025, color="#21912b", opacity=0.3)
|
|
210
|
-
DIEL_RO4534 = Material(er=3.40, tand=0.0027, color="#21912b", opacity=0.3)
|
|
211
|
-
DIEL_RO4535 = Material(er=3.50, tand=0.0037, color="#21912b", opacity=0.3)
|
|
212
|
-
DIEL_RO4730 = Material(er=3.00, tand=0.0033, color="#21912b", opacity=0.3)
|
|
213
|
-
DIEL_RT_Duroid_5870
|
|
214
|
-
DIEL_RT_Duroid_5880
|
|
215
|
-
DIEL_RT_Duroid_5880LZ
|
|
216
|
-
DIEL_RT_Duroid_6002
|
|
217
|
-
DIEL_RT_Duroid_6006
|
|
218
|
-
DIEL_RT_Duroid_6010_2LM
|
|
219
|
-
DIEL_RT_Duroid_6035HTC = Material(er=3.50, tand=0.0013, color="#21912b", opacity=0.3)
|
|
220
|
-
DIEL_RT_Duroid_6202
|
|
221
|
-
DIEL_RT_Duroid_6202PR
|
|
222
|
-
DIEL_SYRON_70000_002IN_Thick = Material(er=3.4,
|
|
223
|
-
DIEL_SYRON_71000_004IN_THICK = Material(er=3.39, tand=0.005,
|
|
224
|
-
DIEL_SYRON_71000INCH
|
|
225
|
-
DIEL_TACLAMPLUS= Material(er=2.10, tand=0.0004, color="#21912b", opacity=0.3)
|
|
226
|
-
DIEL_TC350
|
|
227
|
-
DIEL_TC600
|
|
228
|
-
DIEL_THETA
|
|
229
|
-
DIEL_TLA_6
|
|
230
|
-
DIEL_TLC_27
|
|
231
|
-
DIEL_TLC_30
|
|
232
|
-
DIEL_TLC_32
|
|
233
|
-
DIEL_TLC_338
|
|
234
|
-
DIEL_TLC_35
|
|
235
|
-
DIEL_TLE_95
|
|
236
|
-
DIEL_TLF_34
|
|
237
|
-
DIEL_TLF_35
|
|
238
|
-
DIEL_TLG_29
|
|
239
|
-
DIEL_TLG_30
|
|
240
|
-
DIEL_TLP_3
|
|
241
|
-
DIEL_TLP_5
|
|
242
|
-
DIEL_TLP_5A
|
|
243
|
-
DIEL_TLT_0
|
|
244
|
-
DIEL_TLT_6
|
|
245
|
-
DIEL_TLT_7
|
|
246
|
-
DIEL_TLT_8
|
|
247
|
-
DIEL_TLT_9
|
|
248
|
-
DIEL_TLX_0
|
|
249
|
-
DIEL_TLX_6
|
|
250
|
-
DIEL_TLX_7
|
|
251
|
-
DIEL_TLX_8
|
|
252
|
-
DIEL_TLX_9
|
|
253
|
-
DIEL_TLY_3
|
|
254
|
-
DIEL_TLY_3F
|
|
255
|
-
DIEL_TLY_5
|
|
256
|
-
DIEL_TLY_5_L
|
|
257
|
-
DIEL_TLY_5A
|
|
258
|
-
DIEL_TLY_5AL
|
|
259
|
-
DIEL_TMM_10
|
|
260
|
-
DIEL_TMM_10i
|
|
261
|
-
DIEL_TMM_3
|
|
262
|
-
DIEL_TMM_4
|
|
263
|
-
DIEL_TMM_6
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
89
|
+
DIEL_PTFE = Material(er=2.1, tand=0.0002, color="#21912b", opacity=0.3, name='Teflon')
|
|
90
|
+
DIEL_POLYIMIDE = Material(er=3.4, tand=0.02, color="#b8b8b8", name='Polyimide')
|
|
91
|
+
DIEL_CERAMIC = Material(er=6.0, tand=0.001, color="#efead1", name='Ceramic')
|
|
92
|
+
DIEL_AD10 = Material(er=10.2, tand=0.0078, color="#21912b", opacity=0.3, name='AD10')
|
|
93
|
+
DIEL_AD1000 = Material(er=10.2, tand=0.0023, color="#21912b", opacity=0.3, name='AD1000')
|
|
94
|
+
DIEL_AD250 = Material(er=2.5, tand=0.0018, color="#21912b", opacity=0.3, name='AD250')
|
|
95
|
+
DIEL_AD250_PIM = Material(er=2.5, tand=0.0018, color="#21912b", opacity=0.3, name='AD250 PIM')
|
|
96
|
+
DIEL_AD250A = Material(er=2.50, tand=0.0015, color="#21912b", opacity=0.3, name='AD250A')
|
|
97
|
+
DIEL_AD250C = Material(er=2.50, tand=0.0014, color="#21912b", opacity=0.3, name='AD250C')
|
|
98
|
+
DIEL_AD255 = Material(er=2.55, tand=0.0018, color="#21912b", opacity=0.3, name='AD255')
|
|
99
|
+
DIEL_AD255A = Material(er=2.55, tand=0.0015, color="#21912b", opacity=0.3, name='AD255A')
|
|
100
|
+
DIEL_AD255C = Material(er=2.55, tand=0.0014, color="#21912b", opacity=0.3, name='AD255C')
|
|
101
|
+
DIEL_AD260A = Material(er=2.60, tand=0.0017, color="#21912b", opacity=0.3, name='AD260A')
|
|
102
|
+
DIEL_AD270 = Material(er=2.7, tand=0.0023, color="#21912b", opacity=0.3, name='AD270')
|
|
103
|
+
DIEL_AD300 = Material(er=3, tand=0.003, color="#21912b", opacity=0.3, name='AD300')
|
|
104
|
+
DIEL_AD300_PIM = Material(er=3, tand=0.003, color="#21912b", opacity=0.3, name='AD300 PIM')
|
|
105
|
+
DIEL_AD300A = Material(er=3.00, tand=0.002, color="#21912b", opacity=0.3, name='AD300A')
|
|
106
|
+
DIEL_AD300C = Material(er=2.97, tand=0.002, color="#21912b", opacity=0.3, name='AD300C')
|
|
107
|
+
DIEL_AD320 = Material(er=3.2, tand=0.0038, color="#21912b", opacity=0.3, name='AD320')
|
|
108
|
+
DIEL_AD320_PIM = Material(er=3.2, tand=0.003, color="#21912b", opacity=0.3, name='AD320 PIM')
|
|
109
|
+
DIEL_AD320A = Material(er=3.20, tand=0.0032, color="#21912b", opacity=0.3, name='AD320A')
|
|
110
|
+
DIEL_AD350 = Material(er=3.5, tand=0.003, color="#21912b", opacity=0.3, name='AD350')
|
|
111
|
+
DIEL_AD350_PIM = Material(er=3.5, tand=0.003, color="#21912b", opacity=0.3, name='AD350 PIM')
|
|
112
|
+
DIEL_AD350A = Material(er=3.50, tand=0.003, color="#21912b", opacity=0.3, name='AD350A')
|
|
113
|
+
DIEL_AD410 = Material(er=4.1, tand=0.003, color="#21912b", opacity=0.3, name='AD410')
|
|
114
|
+
DIEL_AD430 = Material(er=4.3, tand=0.003, color="#21912b", opacity=0.3, name='AD430')
|
|
115
|
+
DIEL_AD450 = Material(er=4.5, tand=0.0035, color="#21912b", opacity=0.3, name='AD450')
|
|
116
|
+
DIEL_AD450A = Material(er=4.5, tand=0.0035, color="#21912b", opacity=0.3, name='AD450 A')
|
|
117
|
+
DIEL_AD5 = Material(er=5.1, tand=0.003, color="#21912b", opacity=0.3, name='AD5')
|
|
118
|
+
DIEL_AD600 = Material(er=5.90, tand=0.003, color="#21912b", opacity=0.3, name='AD600')
|
|
119
|
+
DIEL_AR1000 = Material(er=9.8, tand=0.003, color="#21912b", opacity=0.3, name='AR1000')
|
|
120
|
+
DIEL_CER_10 = Material(er=10.00, tand=0.0035, color="#21912b", opacity=0.3, name='CER 10')
|
|
121
|
+
DIEL_CLTE = Material(er=2.96, tand=0.0023, color="#21912b", opacity=0.3, name='CLTE')
|
|
122
|
+
DIEL_CLTE_AT = Material(er=3.00, tand=0.0013, color="#21912b", opacity=0.3, name='CLTE-AT')
|
|
123
|
+
DIEL_CLTE_LC = Material(er=2.94, tand=0.0025, color="#21912b", opacity=0.3, name='CLTE LC')
|
|
124
|
+
DIEL_CLTE_XT = Material(er=2.94, tand=0.0012, color="#21912b", opacity=0.3, name='CLTE XT')
|
|
125
|
+
DIEL_COMCLAD_HF_ER2 = Material(er=2, tand=0.0025, color="#21912b", opacity=0.3, name='Comclad HF ER2')
|
|
126
|
+
DIEL_COMCLAD_HF_ER3 = Material(er=3, tand=0.0025, color="#21912b", opacity=0.3, name='Comclad HF ER3')
|
|
127
|
+
DIEL_COMCLAD_HF_ER4 = Material(er=4, tand=0.0025, color="#21912b", opacity=0.3, name='Comclad HF ER4')
|
|
128
|
+
DIEL_COMCLAD_HF_ER5 = Material(er=5, tand=0.0025, color="#21912b", opacity=0.3, name='Comclad HF ER5')
|
|
129
|
+
DIEL_COMCLAD_HF_ER6 = Material(er=6, tand=0.0025, color="#21912b", opacity=0.3, name='Comclad HF ER6')
|
|
130
|
+
DIEL_COPPER_CLAD_ULTEM = Material(er=3.05, tand=0.003, color="#21912b", opacity=0.3, name='Copper clad ULTEM')
|
|
131
|
+
DIEL_CUCLAD_217LX = Material(er=2.17, tand=0.0009, color="#21912b", opacity=0.3, name='Copper Clad 217LX')
|
|
132
|
+
DIEL_CUCLAD_233LX = Material(er=2.33, tand=0.0013, color="#21912b", opacity=0.3, name='Cpper Clad 233LX')
|
|
133
|
+
DIEL_CUCLAD_250GT = Material(er=2.5, tand=0.0018, color="#21912b", opacity=0.3, name='Copper Clad 250GT')
|
|
134
|
+
DIEL_CUCLAD_250GX = Material(er=2.4, tand=0.0018, color="#21912b", opacity=0.3, name='Copper Clad 250GX')
|
|
135
|
+
DIEL_CUFLON = Material(er=2.05, tand=0.00045, color="#21912b", opacity=0.3, name='CUFLON')
|
|
136
|
+
DIEL_DICLAD_522 = Material(er=2.4, tand=0.0018, color="#21912b", opacity=0.3, name='DICLAD 522')
|
|
137
|
+
DIEL_DICLAD_527 = Material(er=2.4, tand=0.0018, color="#21912b", opacity=0.3, name='DICLAD 527')
|
|
138
|
+
DIEL_DICLAD_870 = Material(er=2.33, tand=0.0013, color="#21912b", opacity=0.3, name='DICLAD 870')
|
|
139
|
+
DIEL_DICLAD_880 = Material(er=2.17, tand=0.0009, color="#21912b", opacity=0.3, name='DICLAD 880')
|
|
140
|
+
DIEL_DICLAD_880_PIM = Material(er=2.17, tand=0.0009, color="#21912b", opacity=0.3, name='DICLAD 880 PIM')
|
|
141
|
+
DIEL_GETEK_3p5 = Material(er=3.5, tand=0.01, color="#21912b", opacity=0.3, name='GETEK(3.5)')
|
|
142
|
+
DIEL_GETEK_3p8 = Material(er=3.8, tand=0.01, color="#21912b", opacity=0.3, name='GETEK(3.8)')
|
|
143
|
+
DIEL_IS6802_80 = Material(er=2.80, tand=0.003, color="#21912b", opacity=0.3, name="IS6802 80")
|
|
144
|
+
DIEL_IS6803_00 = Material(er=3.00, tand=0.003, color="#21912b", opacity=0.3, name="IS6803 00")
|
|
145
|
+
DIEL_IS6803_20 = Material(er=3.20, tand=0.003, color="#21912b", opacity=0.3, name="IS6803 20")
|
|
146
|
+
DIEL_IS6803_33 = Material(er=3.33, tand=0.003, color="#21912b", opacity=0.3, name="IS6803 33")
|
|
147
|
+
DIEL_IS6803_38 = Material(er=3.38, tand=0.0032, color="#21912b", opacity=0.3, name="IS6803 38")
|
|
148
|
+
DIEL_IS6803_45 = Material(er=3.45, tand=0.0035, color="#21912b", opacity=0.3, name="IS6803 45")
|
|
149
|
+
DIEL_ISOCLAD_917 = Material(er=2.17, tand=0.0013, color="#21912b", opacity=0.3, name="Isoclad 917")
|
|
150
|
+
DIEL_ISOCLAD_933 = Material(er=2.33, tand=0.0016, color="#21912b", opacity=0.3, name="Isoclad 933")
|
|
151
|
+
DIEL_ISOLA_I_TERA_MT = Material(er=3.45, tand=0.0030, color="#3c9747", name="Isola I Tera Mt")
|
|
152
|
+
DIEL_ISOLA_NELCO_4000_13 = Material(er=3.77, tand=0.008, color="#3c9747", name="Isola Nelco 4000 13")
|
|
153
|
+
DIEL_MAT_25N = Material(er=3.38, tand=0.0025, color="#21912b", opacity=0.3, name="Mat 25n")
|
|
154
|
+
DIEL_MAT25FR = Material(er=3.58, tand=0.0035, color="#21912b", opacity=0.3, name="Mat25fr")
|
|
155
|
+
DIEL_MEGTRON6R5775 = Material(er=3.61, tand=0.004, color="#21912b", opacity=0.3, name="Megtron6r5775")
|
|
156
|
+
DIEL_MERCURYWAVE_9350 = Material(er=3.5, tand=0.004, color="#21912b", opacity=0.3, name="Mercurywave 9350")
|
|
157
|
+
DIEL_MULTICLAD_HF = Material(er=3.7, tand=0.0045, color="#21912b", opacity=0.3, name="Multiclad HF")
|
|
158
|
+
DIEL_N_8000 = Material(er=3.5, tand=0.011, color="#21912b", opacity=0.3, name="Nelco N8000")
|
|
159
|
+
DIEL_N4350_13RF = Material(er=3.5, tand=0.0065, color="#21912b", opacity=0.3, name="Nelco N4350 13RF")
|
|
160
|
+
DIEL_N4380_13RF = Material(er=3.8, tand=0.007, color="#21912b", opacity=0.3, name="Nelco N4380 13RF")
|
|
161
|
+
DIEL_N8000Q = Material(er=3.2, tand=0.006, color="#21912b", opacity=0.3, name="Nelco N8000Q")
|
|
162
|
+
DIEL_N9300_13RF = Material(er=3.0, tand=0.004, color="#21912b", opacity=0.3, name="Nelco N9300 13RF")
|
|
163
|
+
DIEL_N9320_13RF = Material(er=3.2, tand=0.0045, color="#21912b", opacity=0.3, name="Nelco N9320 13RF")
|
|
164
|
+
DIEL_N9338_13RF = Material(er=3.38, tand=0.0046, color="#21912b", opacity=0.3, name="Nelco N9338 13RF")
|
|
165
|
+
DIEL_N9350_13RF = Material(er=3.48, tand=0.0055, color="#21912b", opacity=0.3, name="Nelco N9350 13RF")
|
|
166
|
+
DIEL_NH9294 = Material(er=2.94, tand=0.0022, color="#21912b", opacity=0.3, name="Nelco NH9294")
|
|
167
|
+
DIEL_NH9300 = Material(er=3.00, tand=0.0023, color="#21912b", opacity=0.3, name="Nelco NH9300")
|
|
168
|
+
DIEL_NH9320 = Material(er=3.20, tand=0.0024, color="#21912b", opacity=0.3, name="Nelco NH9320")
|
|
169
|
+
DIEL_NH9338 = Material(er=3.38, tand=0.0025, color="#21912b", opacity=0.3, name="Nelco NH9338")
|
|
170
|
+
DIEL_NH9348 = Material(er=3.48, tand=0.003, color="#21912b", opacity=0.3, name="Nelco NH9348")
|
|
171
|
+
DIEL_NH9350 = Material(er=3.50, tand=0.003, color="#21912b", opacity=0.3, name="Nelco NH9350")
|
|
172
|
+
DIEL_NH9410 = Material(er=4.10, tand=0.003, color="#21912b", opacity=0.3, name="Nelco NH9410")
|
|
173
|
+
DIEL_NH9450 = Material(er=4.50, tand=0.003, color="#21912b", opacity=0.3, name="Nelco NH9450")
|
|
174
|
+
DIEL_NORCLAD = Material(er=2.55, tand=0.0011, color="#21912b", opacity=0.3, name="Norclad")
|
|
175
|
+
DIEL_NX9240 = Material(er=2.40, tand=0.0016, color="#21912b", opacity=0.3, name="Nelco NX9240")
|
|
176
|
+
DIEL_NX9245 = Material(er=2.45, tand=0.0016, color="#21912b", opacity=0.3, name="Nelco NX9245")
|
|
177
|
+
DIEL_NX9250 = Material(er=2.50, tand=0.0017, color="#21912b", opacity=0.3, name="Nelco NX9250")
|
|
178
|
+
DIEL_NX9255 = Material(er=2.55, tand=0.0018, color="#21912b", opacity=0.3, name="Nelco NX9255")
|
|
179
|
+
DIEL_NX9260 = Material(er=2.60, tand=0.0019, color="#21912b", opacity=0.3, name="Nelco NX9260")
|
|
180
|
+
DIEL_NX9270 = Material(er=2.70, tand=0.002, color="#21912b", opacity=0.3, name="Nelco NX9270")
|
|
181
|
+
DIEL_NX9294 = Material(er=2.94, tand=0.0022, color="#21912b", opacity=0.3, name="Nelco NX9294")
|
|
182
|
+
DIEL_NX9300 = Material(er=3.00, tand=0.0023, color="#21912b", opacity=0.3, name="Nelco NX9300")
|
|
183
|
+
DIEL_NX9320 = Material(er=3.20, tand=0.0024, color="#21912b", opacity=0.3, name="Nelco NX9320")
|
|
184
|
+
DIEL_NY9208 = Material(er=2.08, tand=0.0006, color="#21912b", opacity=0.3, name="Nelco NY9208")
|
|
185
|
+
DIEL_NY9217 = Material(er=2.17, tand=0.0008, color="#21912b", opacity=0.3, name="Nelco NY9217")
|
|
186
|
+
DIEL_NY9220 = Material(er=2.20, tand=0.0009, color="#21912b", opacity=0.3, name="Nelco NY9220")
|
|
187
|
+
DIEL_NY9233 = Material(er=2.33, tand=0.0011, color="#21912b", opacity=0.3, name="Nelco NY9233")
|
|
188
|
+
DIEL_POLYGUIDE = Material(er=2.320,tand=0.0005, color="#21912b", opacity=0.3, name="Polyguide")
|
|
189
|
+
DIEL_RF_30 = Material(er=3.00, tand=0.0019, color="#21912b", opacity=0.3, name="Rogers RF-30")
|
|
190
|
+
DIEL_RF_301 = Material(er=2.97, tand=0.0018, color="#21912b", opacity=0.3, name="Rogers RF-301")
|
|
191
|
+
DIEL_RF_35 = Material(er=3.50, tand=0.0025, color="#21912b", opacity=0.3, name="Rogers RF-35")
|
|
192
|
+
DIEL_RF_35A2 = Material(er=3.50, tand=0.0015, color="#21912b", opacity=0.3, name="Rogers RF-35A2")
|
|
193
|
+
DIEL_RF_35P = Material(er=3.50, tand=0.0034, color="#21912b", opacity=0.3, name="Rogers RF-35P")
|
|
194
|
+
DIEL_RF_35TC = Material(er=3.50, tand=0.0011, color="#21912b", opacity=0.3, name="Rogers RF-35TC")
|
|
195
|
+
DIEL_RF_41 = Material(er=4.10, tand=0.0038, color="#21912b", opacity=0.3, name="Rogers RF-41")
|
|
196
|
+
DIEL_RF_43 = Material(er=4.30, tand=0.0033, color="#21912b", opacity=0.3, name="Rogers RF-43")
|
|
197
|
+
DIEL_RF_45 = Material(er=4.50, tand=0.0037, color="#21912b", opacity=0.3, name="Rogers RF-45")
|
|
198
|
+
DIEL_RF_60A = Material(er=6.15, tand=0.0038, color="#21912b", opacity=0.3, name="Rogers RF-60A")
|
|
199
|
+
DIEL_RO3003 = Material(er=3.00, tand=0.0011, color="#21912b", opacity=0.3, name="Rogers RO3003")
|
|
200
|
+
DIEL_RO3006 = Material(er=6.15, tand=0.002, color="#21912b", opacity=0.3, name="Rogers RO3006")
|
|
201
|
+
DIEL_RO3010 = Material(er=10.2, tand=0.0022, color="#21912b", opacity=0.3, name="Rogers RO3010")
|
|
202
|
+
DIEL_RO3035 = Material(er=3.50, tand=0.0017, color="#21912b", opacity=0.3, name="Rogers RO3035")
|
|
203
|
+
DIEL_RO3203 = Material(er=3.02, tand=0.0016, color="#21912b", opacity=0.3, name="Rogers RO3203")
|
|
204
|
+
DIEL_RO3206 = Material(er=6.15, tand=0.0027, color="#21912b", opacity=0.3, name="Rogers RO3206")
|
|
205
|
+
DIEL_RO3210 = Material(er=10.2, tand=0.0027, color="#21912b", opacity=0.3, name="Rogers RO3210")
|
|
206
|
+
DIEL_RO3730 = Material(er=3.00, tand=0.0016, color="#21912b", opacity=0.3, name="Rogers RO3730")
|
|
207
|
+
DIEL_RO4003C = Material(er=3.38, tand=0.0029, color="#21912b", opacity=0.3, name="Rogers RO4003C")
|
|
208
|
+
DIEL_RO4350B = Material(er=3.48, tand=0.0037, color="#21912b", opacity=0.3, name="Rogers RO4350B")
|
|
209
|
+
DIEL_RO4350B_TX = Material(er=3.48, tand=0.0034, color="#21912b", opacity=0.3, name="Rogers RO4350B TX")
|
|
210
|
+
DIEL_RO4360 = Material(er=6.15, tand=0.0038, color="#21912b", opacity=0.3, name="Rogers RO4360")
|
|
211
|
+
DIEL_RO4533 = Material(er=3.30, tand=0.0025, color="#21912b", opacity=0.3, name="Rogers RO4533")
|
|
212
|
+
DIEL_RO4534 = Material(er=3.40, tand=0.0027, color="#21912b", opacity=0.3, name="Rogers RO4534")
|
|
213
|
+
DIEL_RO4535 = Material(er=3.50, tand=0.0037, color="#21912b", opacity=0.3, name="Rogers RO4535")
|
|
214
|
+
DIEL_RO4730 = Material(er=3.00, tand=0.0033, color="#21912b", opacity=0.3, name="Rogers RO4730")
|
|
215
|
+
DIEL_RT_Duroid_5870 = Material(er=2.33, tand=0.0012, color="#21912b", opacity=0.3, name="Rogers RT/duroid 5870")
|
|
216
|
+
DIEL_RT_Duroid_5880 = Material(er=2.20, tand=0.0009, color="#21912b", opacity=0.3, name="Rogers RT/duroid 5880")
|
|
217
|
+
DIEL_RT_Duroid_5880LZ = Material(er=1.96, tand=0.0019, color="#21912b", opacity=0.3, name="Rogers RT/duroid 5880LZ")
|
|
218
|
+
DIEL_RT_Duroid_6002 = Material(er=2.94, tand=0.0012, color="#21912b", opacity=0.3, name="Rogers RT/duroid 6002")
|
|
219
|
+
DIEL_RT_Duroid_6006 = Material(er=6.15, tand=0.0027, color="#21912b", opacity=0.3, name="Rogers RT/duroid 6006")
|
|
220
|
+
DIEL_RT_Duroid_6010_2LM= Material(er=10.2, tand=0.0023, color="#21912b", opacity=0.3, name="Rogers RT/duroid 6010 2LM")
|
|
221
|
+
DIEL_RT_Duroid_6035HTC = Material(er=3.50, tand=0.0013, color="#21912b", opacity=0.3, name="Rogers RT/duroid 6035HTC")
|
|
222
|
+
DIEL_RT_Duroid_6202 = Material(er=2.94, tand=0.0015, color="#21912b", opacity=0.3, name="Rogers RT/duroid 6202")
|
|
223
|
+
DIEL_RT_Duroid_6202PR = Material(er=2.90, tand=0.002, color="#21912b", opacity=0.3, name="Rogers RT/duroid 6202PR")
|
|
224
|
+
DIEL_SYRON_70000_002IN_Thick = Material(er=3.4, tand=0.0045, color="#21912b", opacity=0.3, name="Syron 70000 0.002in")
|
|
225
|
+
DIEL_SYRON_71000_004IN_THICK = Material(er=3.39, tand=0.005, color="#21912b", opacity=0.3, name="Syron 71000 0.004in")
|
|
226
|
+
DIEL_SYRON_71000INCH = Material(er=3.61, tand=0.006, color="#21912b", opacity=0.3, name="Syron 71000 Inch")
|
|
227
|
+
DIEL_TACLAMPLUS = Material(er=2.10, tand=0.0004, color="#21912b", opacity=0.3, name="TacLam Plus")
|
|
228
|
+
DIEL_TC350 = Material(er=3.50, tand=0.002, color="#21912b", opacity=0.3, name="Rogers TC350")
|
|
229
|
+
DIEL_TC600 = Material(er=6.15, tand=0.002, color="#21912b", opacity=0.3, name="Rogers TC600")
|
|
230
|
+
DIEL_THETA = Material(er=3.85, tand=0.0123, color="#21912b", opacity=0.3, name="Theta")
|
|
231
|
+
DIEL_TLA_6 = Material(er=2.62, tand=0.0017, color="#21912b", opacity=0.3, name="TLA-6")
|
|
232
|
+
DIEL_TLC_27 = Material(er=2.75, tand=0.003, color="#21912b", opacity=0.3, name="TLC-27")
|
|
233
|
+
DIEL_TLC_30 = Material(er=3.00, tand=0.003, color="#21912b", opacity=0.3, name="TLC-30")
|
|
234
|
+
DIEL_TLC_32 = Material(er=3.20, tand=0.003, color="#21912b", opacity=0.3, name="TLC-32")
|
|
235
|
+
DIEL_TLC_338 = Material(er=3.38, tand=0.0034, color="#21912b", opacity=0.3, name="TLC-338")
|
|
236
|
+
DIEL_TLC_35 = Material(er=3.50, tand=0.0037, color="#21912b", opacity=0.3, name="TLC-35")
|
|
237
|
+
DIEL_TLE_95 = Material(er=2.95, tand=0.0028, color="#21912b", opacity=0.3, name="TLE-95")
|
|
238
|
+
DIEL_TLF_34 = Material(er=3.40, tand=0.002, color="#21912b", opacity=0.3, name="TLF-34")
|
|
239
|
+
DIEL_TLF_35 = Material(er=3.50, tand=0.002, color="#21912b", opacity=0.3, name="TLF-35")
|
|
240
|
+
DIEL_TLG_29 = Material(er=2.87, tand=0.0027, color="#21912b", opacity=0.3, name="TLG-29")
|
|
241
|
+
DIEL_TLG_30 = Material(er=3.00, tand=0.0038, color="#21912b", opacity=0.3, name="TLG-30")
|
|
242
|
+
DIEL_TLP_3 = Material(er=2.33, tand=0.0009, color="#21912b", opacity=0.3, name="TLP-3")
|
|
243
|
+
DIEL_TLP_5 = Material(er=2.20, tand=0.0009, color="#21912b", opacity=0.3, name="TLP-5")
|
|
244
|
+
DIEL_TLP_5A = Material(er=2.17, tand=0.0009, color="#21912b", opacity=0.3, name="TLP-5A")
|
|
245
|
+
DIEL_TLT_0 = Material(er=2.45, tand=0.0019, color="#21912b", opacity=0.3, name="TLT-0")
|
|
246
|
+
DIEL_TLT_6 = Material(er=2.65, tand=0.0019, color="#21912b", opacity=0.3, name="TLT-6")
|
|
247
|
+
DIEL_TLT_7 = Material(er=2.60, tand=0.0019, color="#21912b", opacity=0.3, name="TLT-7")
|
|
248
|
+
DIEL_TLT_8 = Material(er=2.55, tand=0.0019, color="#21912b", opacity=0.3, name="TLT-8")
|
|
249
|
+
DIEL_TLT_9 = Material(er=2.50, tand=0.0019, color="#21912b", opacity=0.3, name="TLT-9")
|
|
250
|
+
DIEL_TLX_0 = Material(er=2.45, tand=0.0019, color="#21912b", opacity=0.3, name="TLX-0")
|
|
251
|
+
DIEL_TLX_6 = Material(er=2.65, tand=0.0019, color="#21912b", opacity=0.3, name="TLX-6")
|
|
252
|
+
DIEL_TLX_7 = Material(er=2.60, tand=0.0019, color="#21912b", opacity=0.3, name="TLX-7")
|
|
253
|
+
DIEL_TLX_8 = Material(er=2.55, tand=0.0019, color="#21912b", opacity=0.3, name="TLX-8")
|
|
254
|
+
DIEL_TLX_9 = Material(er=2.50, tand=0.0019, color="#21912b", opacity=0.3, name="TLX-9")
|
|
255
|
+
DIEL_TLY_3 = Material(er=2.33, tand=0.0012, color="#21912b", opacity=0.3, name="TLY-3")
|
|
256
|
+
DIEL_TLY_3F = Material(er=2.33, tand=0.0012, color="#21912b", opacity=0.3, name="TLY-3F")
|
|
257
|
+
DIEL_TLY_5 = Material(er=2.20, tand=0.0009, color="#21912b", opacity=0.3, name="TLY-5")
|
|
258
|
+
DIEL_TLY_5_L = Material(er=2.20, tand=0.0009, color="#21912b", opacity=0.3, name="TLY-5L")
|
|
259
|
+
DIEL_TLY_5A = Material(er=2.17, tand=0.0009, color="#21912b", opacity=0.3, name="TLY-5A")
|
|
260
|
+
DIEL_TLY_5AL = Material(er=2.17, tand=0.0009, color="#21912b", opacity=0.3, name="TLY-5AL")
|
|
261
|
+
DIEL_TMM_10 = Material(er=9.20, tand=0.0022, color="#21912b", opacity=0.3, name="Rogers TMM10")
|
|
262
|
+
DIEL_TMM_10i = Material(er=9.80, tand=0.002, color="#21912b", opacity=0.3, name="Rogers TMM10i")
|
|
263
|
+
DIEL_TMM_3 = Material(er=3.27, tand=0.002, color="#21912b", opacity=0.3, name="Rogers TMM3")
|
|
264
|
+
DIEL_TMM_4 = Material(er=4.50, tand=0.002, color="#21912b", opacity=0.3, name="Rogers TMM4")
|
|
265
|
+
DIEL_TMM_6 = Material(er=6.00, tand=0.0023, color="#21912b", opacity=0.3, name="Rogers TMM6")
|
|
266
|
+
|
|
267
|
+
DIEL_TRF_41 = Material(er=4.10, tand=0.0035, color="#21912b", opacity=0.3, name="TRF-41")
|
|
268
|
+
DIEL_TRF_43 = Material(er=4.30, tand=0.0035, color="#21912b", opacity=0.3, name="TRF-43")
|
|
269
|
+
DIEL_TRF_45 = Material(er=4.50, tand=0.0035, color="#21912b", opacity=0.3, name="TRF-45")
|
|
270
|
+
|
|
271
|
+
DIEL_TSM_26 = Material(er=2.60, tand=0.0014, color="#21912b", opacity=0.3, name="TSM-26")
|
|
272
|
+
DIEL_TSM_29 = Material(er=2.94, tand=0.0013, color="#21912b", opacity=0.3, name="TSM-29")
|
|
273
|
+
DIEL_TSM_30 = Material(er=3.00, tand=0.0013, color="#21912b", opacity=0.3, name="TSM-30")
|
|
274
|
+
DIEL_TSM_DS = Material(er=2.85, tand=0.001, color="#21912b", opacity=0.3, name="TSM-DS")
|
|
275
|
+
DIEL_TSM_DS3 = Material(er=3.00, tand=0.0011, color="#21912b", opacity=0.3, name="TSM-DS3")
|
|
276
|
+
DIEL_ULTRALAM_2000 = Material(er=2.4, tand=0.0019, color="#21912b", opacity=0.3, name="Arlon Ultralam 2000")
|
|
277
|
+
DIEL_ULTRALAM_3850 = Material(er=2.9, tand=0.0025, color="#21912b", opacity=0.3, name="Arlon Ultralam 3850")
|
|
278
|
+
DIEL_XT_Duroid_80000_002IN_Thick = Material(er=3.23, tand=0.0035, color="#21912b", opacity=0.3, name="Rogers XT/duroid 80000 0.002in")
|
|
279
|
+
DIEL_XT_Duroid_8100 = Material(er=3.54, tand=0.0049, color="#21912b", opacity=0.3, name="Rogers XT/duroid 8100")
|
|
280
|
+
DIEL_XT_Duroid_81000_004IN_Thick = Material(er=3.32, tand=0.0038, color="#21912b", opacity=0.3, name="Rogers XT/duroid 81000 0.004in")
|
|
281
|
+
DIEL_TEFLON = Material(er=2.1, tand=0.0003, color='#eeeeee', opacity=0.3, name="Teflon")
|
|
282
|
+
|
|
278
283
|
|
|
279
284
|
# Legacy FR Materials
|
|
280
|
-
DIEL_FR1 = Material(er=4.8, tand=0.025, color="#3c9747", opacity=0.3
|
|
281
|
-
DIEL_FR2 = Material(er=4.8, tand=0.02, color="#3c9747", opacity=0.3
|
|
282
|
-
DIEL_FR3 = Material(er=4.5, tand=0.02, color="#2b7a4b", opacity=0.3
|
|
283
|
-
DIEL_FR4 = Material(er=4.4, tand=0.015, color="#1e8449", opacity=0.3
|
|
284
|
-
DIEL_FR5 = Material(er=4.2, tand=0.012, color="#156e38", opacity=0.3
|
|
285
|
-
DIEL_FR6 = Material(er=5.2, tand=0.030, color="#145a32", opacity=0.3
|
|
285
|
+
DIEL_FR1 = Material(er=4.8, tand=0.025, color="#3c9747", opacity=0.3, name="FR-1 (Paper Phenolic)")
|
|
286
|
+
DIEL_FR2 = Material(er=4.8, tand=0.02, color="#3c9747", opacity=0.3, name="FR-2 (Paper Phenolic)")
|
|
287
|
+
DIEL_FR3 = Material(er=4.5, tand=0.02, color="#2b7a4b", opacity=0.3, name="FR-3 (Paper Epoxy)")
|
|
288
|
+
DIEL_FR4 = Material(er=4.4, tand=0.015, color="#1e8449", opacity=0.3, name="FR-4 (Glass Epoxy)")
|
|
289
|
+
DIEL_FR5 = Material(er=4.2, tand=0.012, color="#156e38", opacity=0.3, name="FR-5 (High-temp Glass Epoxy)")
|
|
290
|
+
DIEL_FR6 = Material(er=5.2, tand=0.030, color="#145a32", opacity=0.3, name="FR-6 (Paper Resin, Low Thermal)")
|
|
286
291
|
|
|
287
292
|
# Magnetic Materials
|
|
288
|
-
MU_METAL
|
|
289
|
-
|
|
293
|
+
MU_METAL = Material(cond=1.0e6, ur=200000, color="#666680", opacity=0.3, name="Mu-metal")
|
|
290
294
|
|
|
291
295
|
############################################################
|
|
292
296
|
# FOAMS #
|
|
293
297
|
############################################################
|
|
294
298
|
|
|
295
|
-
FOAM_ROHACELL_31 = Material(er=1.05,
|
|
296
|
-
FOAM_ROHACELL_51 = Material(er=1.07,
|
|
297
|
-
FOAM_ROHACELL_71 = Material(er=1.10,
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
299
|
+
FOAM_ROHACELL_31 = Material(er=1.05, tand=0.0005, color="#f0e1a1", opacity=0.15, name="Rohacell 31 (PMI Foam)")
|
|
300
|
+
FOAM_ROHACELL_51 = Material(er=1.07, tand=0.0006, color="#f0dea0", opacity=0.15, name="Rohacell 51 (PMI Foam)")
|
|
301
|
+
FOAM_ROHACELL_71 = Material(er=1.10, tand=0.0007, color="#e5d199", opacity=0.15, name="Rohacell 71 (PMI Foam)")
|
|
302
|
+
|
|
303
|
+
FOAM_PEI = Material(er=1.15, tand=0.0035, color="#e0b56f", opacity=0.15, name="PEI Foam")
|
|
304
|
+
FOAM_PMI = Material(er=1.10, tand=0.0008, color="#d9c690", opacity=0.15, name="PMI Foam")
|
|
305
|
+
FOAM_PVC = Material(er=1.20, tand=0.0040, color="#cccccc", opacity=0.15, name="PVC Foam")
|
|
306
|
+
FOAM_EPS = Material(er=1.03, tand=0.0050, color="#f7f7f7", opacity=0.15, name="EPS Foam (Expanded Polystyrene)")
|
|
307
|
+
FOAM_XPS = Material(er=1.05, tand=0.0030, color="#e0e0e0", opacity=0.15, name="XPS Foam (Extruded Polystyrene)")
|
|
308
|
+
FOAM_PU = Material(er=1.10, tand=0.0080, color="#d0d0d0", opacity=0.15, name="PU Foam (Polyurethane)")
|
|
309
|
+
FOAM_GLAS = Material(er=3.10, tand=0.0050, color="#888888", opacity=0.15, name="Cellular Glass")
|
|
310
|
+
|
|
311
|
+
FOAM_AIREX_C70 = Material(er=1.10, tand=0.0010, color="#f7e7a3", opacity=0.15, name="Airex C70 (PET Foam)")
|
|
312
|
+
FOAM_AIREX_T92 = Material(er=1.10, tand=0.0020, color="#f6d08a", opacity=0.15, name="Airex T92 (PET Foam)")
|
|
313
|
+
FOAM_PVC_CORECELL = Material(er=1.56, tand=0.0025, color="#aaaaaa", opacity=0.15, name="Corecell PVC Foam")
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: emerge
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.10
|
|
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
|
|
7
7
|
License-File: LICENSE
|
|
8
8
|
Requires-Python: <4.0,>=3.10
|
|
9
|
+
Requires-Dist: cloudpickle>=3.1.1
|
|
9
10
|
Requires-Dist: gmsh<4.14.0,>=4.13.0
|
|
10
11
|
Requires-Dist: joblib>=1.5.1
|
|
11
12
|
Requires-Dist: loguru>=0.7.3
|