emerge 0.5.0__py3-none-any.whl → 0.5.2__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/_emerge/bc.py +11 -8
- emerge/_emerge/cs.py +2 -2
- emerge/_emerge/elements/femdata.py +14 -14
- emerge/_emerge/elements/index_interp.py +1 -1
- emerge/_emerge/elements/ned2_interp.py +1 -1
- emerge/_emerge/elements/nedelec2.py +4 -4
- emerge/_emerge/elements/nedleg2.py +9 -9
- emerge/_emerge/geo/horn.py +1 -1
- emerge/_emerge/geo/modeler.py +18 -19
- emerge/_emerge/geo/operations.py +13 -10
- emerge/_emerge/geo/pcb.py +70 -69
- emerge/_emerge/geo/pcb_tools/macro.py +14 -13
- emerge/_emerge/geo/pmlbox.py +1 -1
- emerge/_emerge/geometry.py +46 -32
- emerge/_emerge/logsettings.py +3 -3
- emerge/_emerge/material.py +11 -11
- emerge/_emerge/mesh3d.py +81 -59
- emerge/_emerge/mesher.py +26 -21
- emerge/_emerge/mth/pairing.py +2 -2
- emerge/_emerge/periodic.py +34 -31
- emerge/_emerge/physics/microwave/adaptive_freq.py +14 -11
- emerge/_emerge/physics/microwave/assembly/assembler.py +61 -57
- emerge/_emerge/physics/microwave/assembly/generalized_eigen.py +43 -8
- emerge/_emerge/physics/microwave/assembly/robinbc.py +5 -5
- emerge/_emerge/physics/microwave/microwave_3d.py +40 -20
- emerge/_emerge/physics/microwave/microwave_bc.py +114 -95
- emerge/_emerge/physics/microwave/microwave_data.py +33 -33
- emerge/_emerge/physics/microwave/simjob.py +12 -12
- emerge/_emerge/physics/microwave/sparam.py +12 -12
- emerge/_emerge/physics/microwave/touchstone.py +1 -1
- emerge/_emerge/plot/display.py +12 -6
- emerge/_emerge/plot/pyvista/display.py +44 -39
- emerge/_emerge/plot/pyvista/display_settings.py +1 -1
- emerge/_emerge/plot/simple_plots.py +15 -15
- emerge/_emerge/selection.py +35 -39
- emerge/_emerge/simmodel.py +29 -39
- emerge/_emerge/simulation_data.py +19 -14
- emerge/_emerge/solve_interfaces/pardiso_interface.py +24 -18
- emerge/_emerge/solver.py +52 -52
- emerge/lib.py +243 -243
- {emerge-0.5.0.dist-info → emerge-0.5.2.dist-info}/METADATA +1 -1
- emerge-0.5.2.dist-info/RECORD +81 -0
- emerge/_emerge/plot/grapher.py +0 -93
- emerge-0.5.0.dist-info/RECORD +0 -82
- {emerge-0.5.0.dist-info → emerge-0.5.2.dist-info}/WHEEL +0 -0
- {emerge-0.5.0.dist-info → emerge-0.5.2.dist-info}/entry_points.txt +0 -0
- {emerge-0.5.0.dist-info → emerge-0.5.2.dist-info}/licenses/LICENSE +0 -0
emerge/lib.py
CHANGED
|
@@ -16,277 +16,277 @@ VACUUM = Material(color="#2d8cd5", opacity=0.05)
|
|
|
16
16
|
############################################################
|
|
17
17
|
|
|
18
18
|
GREY = "#bfbfbf"
|
|
19
|
-
MET_ALUMINUM = Material(cond=3.77e7, color=GREY)
|
|
20
|
-
MET_CARBON = Material(cond=3.33e4, color=GREY)
|
|
21
|
-
MET_CHROMIUM = Material(cond=5.56e6, color=GREY)
|
|
22
|
-
MET_COPPER = Material(cond=5.8e7, color="#62290c")
|
|
23
|
-
MET_GOLD = Material(cond=4.10e7, color=GREY)
|
|
24
|
-
MET_INDIUM = Material(cond=6.44e6, color=GREY)
|
|
25
|
-
MET_IRIDIUM = Material(cond=2.13e7, color=GREY)
|
|
26
|
-
MET_IRON = Material(cond=1.04e7, color=GREY)
|
|
27
|
-
MET_LEAD = Material(cond=4.84e6, color=GREY)
|
|
28
|
-
MET_MAGNESIUM = Material(cond=2.38e7, color=GREY)
|
|
29
|
-
MET_NICKEL = Material(cond=1.14e7, color=GREY)
|
|
30
|
-
MET_NICHROME = Material(cond=9.09e5, color=GREY)
|
|
31
|
-
MET_PALLADIUM = Material(cond=9.42e6, color=GREY)
|
|
32
|
-
MET_PLATINUM = Material(cond=9.42e6, color=GREY)
|
|
33
|
-
MET_RHODIUM = Material(cond=2.22e7, color=GREY)
|
|
34
|
-
MET_SILVER = Material(cond=6.29e7, color=GREY)
|
|
35
|
-
MET_TANTALUM = Material(cond=6.44e6, color=GREY)
|
|
36
|
-
MET_TANTALUM_NITRIDE = Material(cond=3.97e5, color=GREY)
|
|
37
|
-
MET_TIN = Material(cond=8.66e6, color=GREY)
|
|
38
|
-
MET_TITANIUM = Material(cond=1.82e6, color=GREY)
|
|
39
|
-
MET_TUNGSTEN = Material(cond=1.79e7, color=GREY)
|
|
40
|
-
MET_ZINC = Material(cond=1.76e7, color=GREY)
|
|
41
|
-
MET_ZIRCONIUM = Material(cond=2.44e7, color=GREY)
|
|
19
|
+
MET_ALUMINUM = Material(cond=3.77e7, color=GREY, opacity=0.5)
|
|
20
|
+
MET_CARBON = Material(cond=3.33e4, color=GREY, opacity=0.5)
|
|
21
|
+
MET_CHROMIUM = Material(cond=5.56e6, color=GREY, opacity=0.5)
|
|
22
|
+
MET_COPPER = Material(cond=5.8e7, color="#62290c", opacity=0.5)
|
|
23
|
+
MET_GOLD = Material(cond=4.10e7, color=GREY, opacity=0.5)
|
|
24
|
+
MET_INDIUM = Material(cond=6.44e6, color=GREY, opacity=0.5)
|
|
25
|
+
MET_IRIDIUM = Material(cond=2.13e7, color=GREY, opacity=0.5)
|
|
26
|
+
MET_IRON = Material(cond=1.04e7, color=GREY, opacity=0.5)
|
|
27
|
+
MET_LEAD = Material(cond=4.84e6, color=GREY, opacity=0.5)
|
|
28
|
+
MET_MAGNESIUM = Material(cond=2.38e7, color=GREY, opacity=0.5)
|
|
29
|
+
MET_NICKEL = Material(cond=1.14e7, color=GREY, opacity=0.5)
|
|
30
|
+
MET_NICHROME = Material(cond=9.09e5, color=GREY, opacity=0.5)
|
|
31
|
+
MET_PALLADIUM = Material(cond=9.42e6, color=GREY, opacity=0.5)
|
|
32
|
+
MET_PLATINUM = Material(cond=9.42e6, color=GREY, opacity=0.5)
|
|
33
|
+
MET_RHODIUM = Material(cond=2.22e7, color=GREY, opacity=0.5)
|
|
34
|
+
MET_SILVER = Material(cond=6.29e7, color=GREY, opacity=0.5)
|
|
35
|
+
MET_TANTALUM = Material(cond=6.44e6, color=GREY, opacity=0.5)
|
|
36
|
+
MET_TANTALUM_NITRIDE = Material(cond=3.97e5, color=GREY, opacity=0.5)
|
|
37
|
+
MET_TIN = Material(cond=8.66e6, color=GREY, opacity=0.5)
|
|
38
|
+
MET_TITANIUM = Material(cond=1.82e6, color=GREY, opacity=0.5)
|
|
39
|
+
MET_TUNGSTEN = Material(cond=1.79e7, color=GREY, opacity=0.5)
|
|
40
|
+
MET_ZINC = Material(cond=1.76e7, color=GREY, opacity=0.5)
|
|
41
|
+
MET_ZIRCONIUM = Material(cond=2.44e7, color=GREY, opacity=0.5)
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
############################################################
|
|
45
45
|
# SEMICONDUCTORS #
|
|
46
46
|
############################################################
|
|
47
47
|
|
|
48
|
-
SEMI_SILICON = Material(er=11.7, tand=0.005, color="#b4b4b4") # Crystalline Si
|
|
49
|
-
SEMI_SILICON_N = Material(er=7.5, tand=0.0003, color="#a0a0a0") # Silicon Nitride (Si₃N₄)
|
|
50
|
-
SEMI_SILICON_OXIDE = Material(er=3.9, tand=0.0001, color="#e0e0e0") # Silicon Dioxide (SiO₂)
|
|
51
|
-
SEMI_GERMANIUM = Material(er=16.0, tand=0.001, color="#787878")
|
|
52
|
-
SEMI_GAAS = Material(er=13.1, tand=0.0016, color="#aa8888") # Gallium Arsenide
|
|
53
|
-
SEMI_GA_N = Material(er=8.9, tand=0.002, color="#8888cc") # Gallium Nitride
|
|
54
|
-
SEMI_INP = Material(er=12.5, tand=0.0015, color="#cc99aa") # Indium Phosphide
|
|
55
|
-
SEMI_ALN = Material(er=8.6, tand=0.0003, color="#ccccee") # Aluminum Nitride
|
|
56
|
-
SEMI_AL2O3 = Material(er=9.8, tand=0.0002, color="#eaeaea") # Alumina
|
|
57
|
-
SEMI_SAPPHIRE = Material(er=9.4, tand=0.0001, color="#ddddff")
|
|
58
|
-
SEMI_DIAMOND = Material(er=5.5, tand=0.00005, color="#cceeff") # Synthetic CVD diamond
|
|
59
|
-
SEMI_HBN = Material(er=4.0, tand=0.0001, color="#eeeeff") # Hexagonal Boron Nitride
|
|
60
|
-
SEMI_SIOXNY = Material(er=5.0, tand=0.002, color="#ddddee") # Silicon Oxynitride (SiOxNy)
|
|
48
|
+
SEMI_SILICON = Material(er=11.7, tand=0.005, color="#b4b4b4", opacity=0.5) # Crystalline Si
|
|
49
|
+
SEMI_SILICON_N = Material(er=7.5, tand=0.0003, color="#a0a0a0", opacity=0.5) # Silicon Nitride (Si₃N₄)
|
|
50
|
+
SEMI_SILICON_OXIDE = Material(er=3.9, tand=0.0001, color="#e0e0e0", opacity=0.5) # Silicon Dioxide (SiO₂)
|
|
51
|
+
SEMI_GERMANIUM = Material(er=16.0, tand=0.001, color="#787878", opacity=0.5)
|
|
52
|
+
SEMI_GAAS = Material(er=13.1, tand=0.0016, color="#aa8888", opacity=0.5) # Gallium Arsenide
|
|
53
|
+
SEMI_GA_N = Material(er=8.9, tand=0.002, color="#8888cc", opacity=0.5) # Gallium Nitride
|
|
54
|
+
SEMI_INP = Material(er=12.5, tand=0.0015, color="#cc99aa", opacity=0.5) # Indium Phosphide
|
|
55
|
+
SEMI_ALN = Material(er=8.6, tand=0.0003, color="#ccccee", opacity=0.5) # Aluminum Nitride
|
|
56
|
+
SEMI_AL2O3 = Material(er=9.8, tand=0.0002, color="#eaeaea", opacity=0.5) # Alumina
|
|
57
|
+
SEMI_SAPPHIRE = Material(er=9.4, tand=0.0001, color="#ddddff", opacity=0.5)
|
|
58
|
+
SEMI_DIAMOND = Material(er=5.5, tand=0.00005, color="#cceeff", opacity=0.5) # Synthetic CVD diamond
|
|
59
|
+
SEMI_HBN = Material(er=4.0, tand=0.0001, color="#eeeeff", opacity=0.5) # Hexagonal Boron Nitride
|
|
60
|
+
SEMI_SIOXNY = Material(er=5.0, tand=0.002, color="#ddddee", opacity=0.5) # Silicon Oxynitride (SiOxNy)
|
|
61
61
|
|
|
62
62
|
############################################################
|
|
63
63
|
# LIQUIDS #
|
|
64
64
|
############################################################
|
|
65
65
|
|
|
66
66
|
LIQ_WATER = Material(er=80.1, cond=0.0, color="#0080ff", opacity=0.3)
|
|
67
|
-
LIQ_FERRITE = Material(er=12.0, ur=2000, tand=0.02, color="#994d4d")
|
|
67
|
+
LIQ_FERRITE = Material(er=12.0, ur=2000, tand=0.02, color="#994d4d", opacity=0.3)
|
|
68
68
|
|
|
69
69
|
|
|
70
70
|
############################################################
|
|
71
71
|
# DIELECTRICS #
|
|
72
72
|
############################################################
|
|
73
|
-
DIEL_PTFE = Material(er=2.1, tand=0.0002, color="#21912b")
|
|
73
|
+
DIEL_PTFE = Material(er=2.1, tand=0.0002, color="#21912b", opacity=0.3)
|
|
74
74
|
DIEL_POLYIMIDE = Material(er=3.4, tand=0.02, color="#b8b8b8")
|
|
75
75
|
DIEL_CERAMIC = Material(er=6.0, tand=0.001, color="#efead1")
|
|
76
|
-
DIEL_AD10 = Material(er=10.2, tand=0.0078, color="#21912b")
|
|
77
|
-
DIEL_AD1000 = Material(er=10.2, tand=0.0023, color="#21912b")
|
|
78
|
-
DIEL_AD250 = Material(er=2.5, tand=0.0018, color="#21912b")
|
|
79
|
-
DIEL_AD250_PIM = Material(er=2.5, tand=0.0018, color="#21912b")
|
|
80
|
-
DIEL_AD250A = Material(er=2.50, tand=0.0015, color="#21912b")
|
|
81
|
-
DIEL_AD250C = Material(er=2.50, tand=0.0014, color="#21912b")
|
|
82
|
-
DIEL_AD255 = Material(er=2.55, tand=0.0018, color="#21912b")
|
|
83
|
-
DIEL_AD255A = Material(er=2.55, tand=0.0015, color="#21912b")
|
|
84
|
-
DIEL_AD255C = Material(er=2.55, tand=0.0014, color="#21912b")
|
|
85
|
-
DIEL_AD260A = Material(er=2.60, tand=0.0017, color="#21912b")
|
|
86
|
-
DIEL_AD270 = Material(er=2.7, tand=0.0023, color="#21912b")
|
|
87
|
-
DIEL_AD300 = Material(er=3, tand=0.003, color="#21912b")
|
|
88
|
-
DIEL_AD300_PIM = Material(er=3, tand=0.003, color="#21912b")
|
|
89
|
-
DIEL_AD300A = Material(er=3.00, tand=0.002, color="#21912b")
|
|
90
|
-
DIEL_AD300C = Material(er=2.97, tand=0.002, color="#21912b")
|
|
91
|
-
DIEL_AD320 = Material(er=3.2, tand=0.0038, color="#21912b")
|
|
92
|
-
DIEL_AD320_PIM = Material(er=3.2, tand=0.003, color="#21912b")
|
|
93
|
-
DIEL_AD320A = Material(er=3.20, tand=0.0032, color="#21912b")
|
|
94
|
-
DIEL_AD350 = Material(er=3.5, tand=0.003, color="#21912b")
|
|
95
|
-
DIEL_AD350_PIM = Material(er=3.5, tand=0.003, color="#21912b")
|
|
96
|
-
DIEL_AD350A = Material(er=3.50, tand=0.003, color="#21912b")
|
|
97
|
-
DIEL_AD410 = Material(er=4.1, tand=0.003, color="#21912b")
|
|
98
|
-
DIEL_AD430 = Material(er=4.3, tand=0.003, color="#21912b")
|
|
99
|
-
DIEL_AD450 = Material(er=4.5, tand=0.0035, color="#21912b")
|
|
100
|
-
DIEL_AD450A = Material(er=4.5, tand=0.0035, color="#21912b")
|
|
101
|
-
DIEL_AD5 = Material(er=5.1, tand=0.003, color="#21912b")
|
|
102
|
-
DIEL_AD600 = Material(er=5.90, tand=0.003, color="#21912b")
|
|
103
|
-
DIEL_AR1000 = Material(er=9.8, tand=0.003, color="#21912b")
|
|
104
|
-
DIEL_CER_10 = Material(er=10.00, tand=0.0035, color="#21912b")
|
|
105
|
-
DIEL_CLTE = Material(er=2.96, tand=0.0023, color="#21912b")
|
|
106
|
-
DIEL_CLTE_AT = Material(er=3.00, tand=0.0013, color="#21912b")
|
|
107
|
-
DIEL_CLTE_LC = Material(er=2.94, tand=0.0025, color="#21912b")
|
|
108
|
-
DIEL_CLTE_XT = Material(er=2.94, tand=0.0012, color="#21912b")
|
|
109
|
-
DIEL_COMCLAD_HF_ER2 = Material(er=2, tand=0.0025, color="#21912b")
|
|
110
|
-
DIEL_COMCLAD_HF_ER3 = Material(er=3, tand=0.0025, color="#21912b")
|
|
111
|
-
DIEL_COMCLAD_HF_ER4 = Material(er=4, tand=0.0025, color="#21912b")
|
|
112
|
-
DIEL_COMCLAD_HF_ER5 = Material(er=5, tand=0.0025, color="#21912b")
|
|
113
|
-
DIEL_COMCLAD_HF_ER6 = Material(er=6, tand=0.0025, color="#21912b")
|
|
114
|
-
DIEL_COPPER_CLAD_ULTEM = Material(er=3.05, tand=0.003, color="#21912b")
|
|
115
|
-
DIEL_CUCLAD_217LX = Material(er=2.17, tand=0.0009, color="#21912b")
|
|
116
|
-
DIEL_CUCLAD_233LX = Material(er=2.33, tand=0.0013, color="#21912b")
|
|
117
|
-
DIEL_CUCLAD_250GT = Material(er=2.5, tand=0.0018, color="#21912b")
|
|
118
|
-
DIEL_CUCLAD_250GX = Material(er=2.4, tand=0.0018, color="#21912b")
|
|
119
|
-
DIEL_CUFLON = Material(er=2.05, tand=0.00045, color="#21912b")
|
|
120
|
-
DIEL_DICLAD_522 = Material(er=2.4, tand=0.0018, color="#21912b")
|
|
121
|
-
DIEL_DICLAD_527 = Material(er=2.4, tand=0.0018, color="#21912b")
|
|
122
|
-
DIEL_DICLAD_870 = Material(er=2.33, tand=0.0013, color="#21912b")
|
|
123
|
-
DIEL_DICLAD_880 = Material(er=2.17, tand=0.0009, color="#21912b")
|
|
124
|
-
DIEL_DICLAD_880_PIM = Material(er=2.17, tand=0.0009, color="#21912b")
|
|
125
|
-
DIEL_GETEK = Material(er=3.5, tand=0.01, color="#21912b")
|
|
126
|
-
DIEL_GETEK = Material(er=3.8, tand=0.01, color="#21912b")
|
|
127
|
-
DIEL_IS6802_80 = Material(er=2.80, tand=0.003, color="#21912b")
|
|
128
|
-
DIEL_IS6803_00 = Material(er=3.00, tand=0.003, color="#21912b")
|
|
129
|
-
DIEL_IS6803_20 = Material(er=3.20, tand=0.003, color="#21912b")
|
|
130
|
-
DIEL_IS6803_33 = Material(er=3.33, tand=0.003, color="#21912b")
|
|
131
|
-
DIEL_IS6803_38 = Material(er=3.38, tand=0.0032, color="#21912b")
|
|
132
|
-
DIEL_IS6803_45 = Material(er=3.45, tand=0.0035, color="#21912b")
|
|
133
|
-
DIEL_ISOCLAD_917 = Material(er=2.17, tand=0.0013, color="#21912b")
|
|
134
|
-
DIEL_ISOCLAD_933 = Material(er=2.33, tand=0.0016, color="#21912b")
|
|
76
|
+
DIEL_AD10 = Material(er=10.2, tand=0.0078, color="#21912b", opacity=0.3)
|
|
77
|
+
DIEL_AD1000 = Material(er=10.2, tand=0.0023, color="#21912b", opacity=0.3)
|
|
78
|
+
DIEL_AD250 = Material(er=2.5, tand=0.0018, color="#21912b", opacity=0.3)
|
|
79
|
+
DIEL_AD250_PIM = Material(er=2.5, tand=0.0018, color="#21912b", opacity=0.3)
|
|
80
|
+
DIEL_AD250A = Material(er=2.50, tand=0.0015, color="#21912b", opacity=0.3)
|
|
81
|
+
DIEL_AD250C = Material(er=2.50, tand=0.0014, color="#21912b", opacity=0.3)
|
|
82
|
+
DIEL_AD255 = Material(er=2.55, tand=0.0018, color="#21912b", opacity=0.3)
|
|
83
|
+
DIEL_AD255A = Material(er=2.55, tand=0.0015, color="#21912b", opacity=0.3)
|
|
84
|
+
DIEL_AD255C = Material(er=2.55, tand=0.0014, color="#21912b", opacity=0.3)
|
|
85
|
+
DIEL_AD260A = Material(er=2.60, tand=0.0017, color="#21912b", opacity=0.3)
|
|
86
|
+
DIEL_AD270 = Material(er=2.7, tand=0.0023, color="#21912b", opacity=0.3)
|
|
87
|
+
DIEL_AD300 = Material(er=3, tand=0.003, color="#21912b", opacity=0.3)
|
|
88
|
+
DIEL_AD300_PIM = Material(er=3, tand=0.003, color="#21912b", opacity=0.3)
|
|
89
|
+
DIEL_AD300A = Material(er=3.00, tand=0.002, color="#21912b", opacity=0.3)
|
|
90
|
+
DIEL_AD300C = Material(er=2.97, tand=0.002, color="#21912b", opacity=0.3)
|
|
91
|
+
DIEL_AD320 = Material(er=3.2, tand=0.0038, color="#21912b", opacity=0.3)
|
|
92
|
+
DIEL_AD320_PIM = Material(er=3.2, tand=0.003, color="#21912b", opacity=0.3)
|
|
93
|
+
DIEL_AD320A = Material(er=3.20, tand=0.0032, color="#21912b", opacity=0.3)
|
|
94
|
+
DIEL_AD350 = Material(er=3.5, tand=0.003, color="#21912b", opacity=0.3)
|
|
95
|
+
DIEL_AD350_PIM = Material(er=3.5, tand=0.003, color="#21912b", opacity=0.3)
|
|
96
|
+
DIEL_AD350A = Material(er=3.50, tand=0.003, color="#21912b", opacity=0.3)
|
|
97
|
+
DIEL_AD410 = Material(er=4.1, tand=0.003, color="#21912b", opacity=0.3)
|
|
98
|
+
DIEL_AD430 = Material(er=4.3, tand=0.003, color="#21912b", opacity=0.3)
|
|
99
|
+
DIEL_AD450 = Material(er=4.5, tand=0.0035, color="#21912b", opacity=0.3)
|
|
100
|
+
DIEL_AD450A = Material(er=4.5, tand=0.0035, color="#21912b", opacity=0.3)
|
|
101
|
+
DIEL_AD5 = Material(er=5.1, tand=0.003, color="#21912b", opacity=0.3)
|
|
102
|
+
DIEL_AD600 = Material(er=5.90, tand=0.003, color="#21912b", opacity=0.3)
|
|
103
|
+
DIEL_AR1000 = Material(er=9.8, tand=0.003, color="#21912b", opacity=0.3)
|
|
104
|
+
DIEL_CER_10 = Material(er=10.00, tand=0.0035, color="#21912b", opacity=0.3)
|
|
105
|
+
DIEL_CLTE = Material(er=2.96, tand=0.0023, color="#21912b", opacity=0.3)
|
|
106
|
+
DIEL_CLTE_AT = Material(er=3.00, tand=0.0013, color="#21912b", opacity=0.3)
|
|
107
|
+
DIEL_CLTE_LC = Material(er=2.94, tand=0.0025, color="#21912b", opacity=0.3)
|
|
108
|
+
DIEL_CLTE_XT = Material(er=2.94, tand=0.0012, color="#21912b", opacity=0.3)
|
|
109
|
+
DIEL_COMCLAD_HF_ER2 = Material(er=2, tand=0.0025, color="#21912b", opacity=0.3)
|
|
110
|
+
DIEL_COMCLAD_HF_ER3 = Material(er=3, tand=0.0025, color="#21912b", opacity=0.3)
|
|
111
|
+
DIEL_COMCLAD_HF_ER4 = Material(er=4, tand=0.0025, color="#21912b", opacity=0.3)
|
|
112
|
+
DIEL_COMCLAD_HF_ER5 = Material(er=5, tand=0.0025, color="#21912b", opacity=0.3)
|
|
113
|
+
DIEL_COMCLAD_HF_ER6 = Material(er=6, tand=0.0025, color="#21912b", opacity=0.3)
|
|
114
|
+
DIEL_COPPER_CLAD_ULTEM = Material(er=3.05, tand=0.003, color="#21912b", opacity=0.3)
|
|
115
|
+
DIEL_CUCLAD_217LX = Material(er=2.17, tand=0.0009, color="#21912b", opacity=0.3)
|
|
116
|
+
DIEL_CUCLAD_233LX = Material(er=2.33, tand=0.0013, color="#21912b", opacity=0.3)
|
|
117
|
+
DIEL_CUCLAD_250GT = Material(er=2.5, tand=0.0018, color="#21912b", opacity=0.3)
|
|
118
|
+
DIEL_CUCLAD_250GX = Material(er=2.4, tand=0.0018, color="#21912b", opacity=0.3)
|
|
119
|
+
DIEL_CUFLON = Material(er=2.05, tand=0.00045, color="#21912b", opacity=0.3)
|
|
120
|
+
DIEL_DICLAD_522 = Material(er=2.4, tand=0.0018, color="#21912b", opacity=0.3)
|
|
121
|
+
DIEL_DICLAD_527 = Material(er=2.4, tand=0.0018, color="#21912b", opacity=0.3)
|
|
122
|
+
DIEL_DICLAD_870 = Material(er=2.33, tand=0.0013, color="#21912b", opacity=0.3)
|
|
123
|
+
DIEL_DICLAD_880 = Material(er=2.17, tand=0.0009, color="#21912b", opacity=0.3)
|
|
124
|
+
DIEL_DICLAD_880_PIM = Material(er=2.17, tand=0.0009, color="#21912b", opacity=0.3)
|
|
125
|
+
DIEL_GETEK = Material(er=3.5, tand=0.01, color="#21912b", opacity=0.3)
|
|
126
|
+
DIEL_GETEK = Material(er=3.8, tand=0.01, color="#21912b", opacity=0.3)
|
|
127
|
+
DIEL_IS6802_80 = Material(er=2.80, tand=0.003, color="#21912b", opacity=0.3)
|
|
128
|
+
DIEL_IS6803_00 = Material(er=3.00, tand=0.003, color="#21912b", opacity=0.3)
|
|
129
|
+
DIEL_IS6803_20 = Material(er=3.20, tand=0.003, color="#21912b", opacity=0.3)
|
|
130
|
+
DIEL_IS6803_33 = Material(er=3.33, tand=0.003, color="#21912b", opacity=0.3)
|
|
131
|
+
DIEL_IS6803_38 = Material(er=3.38, tand=0.0032, color="#21912b", opacity=0.3)
|
|
132
|
+
DIEL_IS6803_45 = Material(er=3.45, tand=0.0035, color="#21912b", opacity=0.3)
|
|
133
|
+
DIEL_ISOCLAD_917 = Material(er=2.17, tand=0.0013, color="#21912b", opacity=0.3)
|
|
134
|
+
DIEL_ISOCLAD_933 = Material(er=2.33, tand=0.0016, color="#21912b", opacity=0.3)
|
|
135
135
|
DIEL_ISOLA_I_TERA_MT = Material(er=3.45, tand=0.0030, color="#3c9747")
|
|
136
136
|
DIEL_ISOLA_NELCO_4000_13 = Material(er=3.77, tand=0.008, color="#3c9747")
|
|
137
|
-
DIEL_MAT_25N = Material(er=3.38, tand=0.0025, color="#21912b")
|
|
138
|
-
DIEL_MAT25FR = Material(er=3.58, tand=0.0035, color="#21912b")
|
|
139
|
-
DIEL_MEGTRON6R5775 = Material(er=3.61, tand=0.004, color="#21912b")
|
|
140
|
-
DIEL_MERCURYWAVE_9350 = Material(er=3.5, tand=0.004, color="#21912b")
|
|
141
|
-
DIEL_MULTICLAD_HF = Material(er=3.7, tand=0.0045, color="#21912b")
|
|
142
|
-
DIEL_N_8000 = Material(er=3.5, tand=0.011, color="#21912b")
|
|
143
|
-
DIEL_N4350_13RF = Material(er=3.5, tand=0.0065, color="#21912b")
|
|
144
|
-
DIEL_N4380_13RF = Material(er=3.8, tand=0.007, color="#21912b")
|
|
145
|
-
DIEL_N8000Q = Material(er=3.2, tand=0.006, color="#21912b")
|
|
146
|
-
DIEL_N9300_13RF = Material(er=3, tand=0.004, color="#21912b")
|
|
147
|
-
DIEL_N9320_13RF = Material(er=3.2, tand=0.0045, color="#21912b")
|
|
148
|
-
DIEL_N9338_13RF = Material(er=3.38, tand=0.0046, color="#21912b")
|
|
149
|
-
DIEL_N9350_13RF = Material(er=3.48, tand=0.0055, color="#21912b")
|
|
150
|
-
DIEL_NH9294 = Material(er=2.94, tand=0.0022, color="#21912b")
|
|
151
|
-
DIEL_NH9300 = Material(er=3.00, tand=0.0023, color="#21912b")
|
|
152
|
-
DIEL_NH9320 = Material(er=3.20, tand=0.0024, color="#21912b")
|
|
153
|
-
DIEL_NH9338 = Material(er=3.38, tand=0.0025, color="#21912b")
|
|
154
|
-
DIEL_NH9348 = Material(er=3.48, tand=0.003, color="#21912b")
|
|
155
|
-
DIEL_NH9350 = Material(er=3.50, tand=0.003, color="#21912b")
|
|
156
|
-
DIEL_NH9410 = Material(er=4.10, tand=0.003, color="#21912b")
|
|
157
|
-
DIEL_NH9450 = Material(er=4.50, tand=0.003, color="#21912b")
|
|
158
|
-
DIEL_NORCLAD = Material(er=2.55, tand=0.0011, color="#21912b")
|
|
159
|
-
DIEL_NX9240 = Material(er=2.40, tand=0.0016, color="#21912b")
|
|
160
|
-
DIEL_NX9245 = Material(er=2.45, tand=0.0016, color="#21912b")
|
|
161
|
-
DIEL_NX9250 = Material(er=2.50, tand=0.0017, color="#21912b")
|
|
162
|
-
DIEL_NX9255 = Material(er=2.55, tand=0.0018, color="#21912b")
|
|
163
|
-
DIEL_NX9260 = Material(er=2.60, tand=0.0019, color="#21912b")
|
|
164
|
-
DIEL_NX9270 = Material(er=2.70, tand=0.002, color="#21912b")
|
|
165
|
-
DIEL_NX9294 = Material(er=2.94, tand=0.0022, color="#21912b")
|
|
166
|
-
DIEL_NX9300 = Material(er=3.00, tand=0.0023, color="#21912b")
|
|
167
|
-
DIEL_NX9320 = Material(er=3.20, tand=0.0024, color="#21912b")
|
|
168
|
-
DIEL_NY9208 = Material(er=2.08, tand=0.0006, color="#21912b")
|
|
169
|
-
DIEL_NY9217 = Material(er=2.17, tand=0.0008, color="#21912b")
|
|
170
|
-
DIEL_NY9220 = Material(er=2.20, tand=0.0009, color="#21912b")
|
|
171
|
-
DIEL_NY9233 = Material(er=2.33, tand=0.0011, color="#21912b")
|
|
172
|
-
DIEL_POLYGUIDE = Material(er=2.320, tand=0.0005, color="#21912b")
|
|
173
|
-
DIEL_RF_30 = Material(er=3.00, tand=0.0019, color="#21912b")
|
|
174
|
-
DIEL_RF_301 = Material(er=2.97, tand=0.0018, color="#21912b")
|
|
175
|
-
DIEL_RF_35 = Material(er=3.50, tand=0.0025, color="#21912b")
|
|
176
|
-
DIEL_RF_35A2 = Material(er=3.50, tand=0.0015, color="#21912b")
|
|
177
|
-
DIEL_RF_35P = Material(er=3.50, tand=0.0034, color="#21912b")
|
|
178
|
-
DIEL_RF_35TC = Material(er=3.50, tand=0.0011, color="#21912b")
|
|
179
|
-
DIEL_RF_41 = Material(er=4.10, tand=0.0038, color="#21912b")
|
|
180
|
-
DIEL_RF_43 = Material(er=4.30, tand=0.0033, color="#21912b")
|
|
181
|
-
DIEL_RF_45 = Material(er=4.50, tand=0.0037, color="#21912b")
|
|
182
|
-
DIEL_RF_60A = Material(er=6.15, tand=0.0038, color="#21912b")
|
|
183
|
-
DIEL_RO3003 = Material(er=3.00, tand=0.0011, color="#21912b")
|
|
184
|
-
DIEL_RO3006 = Material(er=6.15, tand=0.002, color="#21912b")
|
|
185
|
-
DIEL_RO3010 = Material(er=10.2, tand=0.0022, color="#21912b")
|
|
186
|
-
DIEL_RO3035 = Material(er=3.50, tand=0.0017, color="#21912b")
|
|
187
|
-
DIEL_RO3203 = Material(er=3.02, tand=0.0016, color="#21912b")
|
|
188
|
-
DIEL_RO3206 = Material(er=6.15, tand=0.0027, color="#21912b")
|
|
189
|
-
DIEL_RO3210 = Material(er=10.2, tand=0.0027, color="#21912b")
|
|
190
|
-
DIEL_RO3730 = Material(er=3.00, tand=0.0016, color="#21912b")
|
|
191
|
-
DIEL_RO4003C = Material(er=3.38, tand=0.0029, color="#21912b")
|
|
192
|
-
DIEL_RO4350B = Material(er=3.48, tand=0.0037, color="#21912b")
|
|
193
|
-
DIEL_RO4350B_TX = Material(er=3.48, tand=0.0034, color="#21912b")
|
|
194
|
-
DIEL_RO4360 = Material(er=6.15, tand=0.0038, color="#21912b")
|
|
195
|
-
DIEL_RO4533 = Material(er=3.30, tand=0.0025, color="#21912b")
|
|
196
|
-
DIEL_RO4534 = Material(er=3.40, tand=0.0027, color="#21912b")
|
|
197
|
-
DIEL_RO4535 = Material(er=3.50, tand=0.0037, color="#21912b")
|
|
198
|
-
DIEL_RO4730 = Material(er=3.00, tand=0.0033, color="#21912b")
|
|
199
|
-
DIEL_RT_Duroid_5870 = Material(er=2.33, tand=0.0012, color="#21912b")
|
|
200
|
-
DIEL_RT_Duroid_5880 = Material(er=2.20, tand=0.0009, color="#21912b")
|
|
201
|
-
DIEL_RT_Duroid_5880LZ = Material(er=1.96, tand=0.0019, color="#21912b")
|
|
202
|
-
DIEL_RT_Duroid_6002 = Material(er=2.94, tand=0.0012, color="#21912b")
|
|
203
|
-
DIEL_RT_Duroid_6006 = Material(er=6.15, tand=0.0027, color="#21912b")
|
|
204
|
-
DIEL_RT_Duroid_6010_2LM = Material(er=10.2, tand=0.0023, color="#21912b")
|
|
205
|
-
DIEL_RT_Duroid_6035HTC = Material(er=3.50, tand=0.0013, color="#21912b")
|
|
206
|
-
DIEL_RT_Duroid_6202 = Material(er=2.94, tand=0.0015, color="#21912b")
|
|
207
|
-
DIEL_RT_Duroid_6202PR = Material(er=2.90, tand=0.002, color="#21912b")
|
|
208
|
-
DIEL_SYRON_70000_002IN_Thick = Material(er=3.4, tand=0.0045, color="#21912b")
|
|
209
|
-
DIEL_SYRON_71000_004IN_THICK = Material(er=3.39, tand=0.005, color="#21912b")
|
|
210
|
-
DIEL_SYRON_71000INCH = Material(er=3.61, tand=0.006, color="#21912b")
|
|
211
|
-
DIEL_TACLAMPLUS= Material(er=2.10, tand=0.0004, color="#21912b")
|
|
212
|
-
DIEL_TC350 = Material(er=3.50, tand=0.002, color="#21912b")
|
|
213
|
-
DIEL_TC600 = Material(er=6.15, tand=0.002, color="#21912b")
|
|
214
|
-
DIEL_THETA = Material(er=3.85, tand=0.0123, color="#21912b")
|
|
215
|
-
DIEL_TLA_6 = Material(er=2.62, tand=0.0017, color="#21912b")
|
|
216
|
-
DIEL_TLC_27 = Material(er=2.75, tand=0.003, color="#21912b")
|
|
217
|
-
DIEL_TLC_30 = Material(er=3.00, tand=0.003, color="#21912b")
|
|
218
|
-
DIEL_TLC_32 = Material(er=3.20, tand=0.003, color="#21912b")
|
|
219
|
-
DIEL_TLC_338 = Material(er=3.38, tand=0.0034, color="#21912b")
|
|
220
|
-
DIEL_TLC_35 = Material(er=3.50, tand=0.0037, color="#21912b")
|
|
221
|
-
DIEL_TLE_95 = Material(er=2.95, tand=0.0028, color="#21912b")
|
|
222
|
-
DIEL_TLF_34 = Material(er=3.40, tand=0.002, color="#21912b")
|
|
223
|
-
DIEL_TLF_35 = Material(er=3.50, tand=0.002, color="#21912b")
|
|
224
|
-
DIEL_TLG_29 = Material(er=2.87, tand=0.0027, color="#21912b")
|
|
225
|
-
DIEL_TLG_30 = Material(er=3, tand=0.0038, color="#21912b")
|
|
226
|
-
DIEL_TLP_3 = Material(er=2.33, tand=0.0009, color="#21912b")
|
|
227
|
-
DIEL_TLP_5 = Material(er=2.20, tand=0.0009, color="#21912b")
|
|
228
|
-
DIEL_TLP_5A = Material(er=2.17, tand=0.0009, color="#21912b")
|
|
229
|
-
DIEL_TLT_0 = Material(er=2.45, tand=0.0019, color="#21912b")
|
|
230
|
-
DIEL_TLT_6 = Material(er=2.65, tand=0.0019, color="#21912b")
|
|
231
|
-
DIEL_TLT_7 = Material(er=2.60, tand=0.0019, color="#21912b")
|
|
232
|
-
DIEL_TLT_8 = Material(er=2.55, tand=0.0019, color="#21912b")
|
|
233
|
-
DIEL_TLT_9 = Material(er=2.50, tand=0.0019, color="#21912b")
|
|
234
|
-
DIEL_TLX_0 = Material(er=2.45, tand=0.0019, color="#21912b")
|
|
235
|
-
DIEL_TLX_6 = Material(er=2.65, tand=0.0019, color="#21912b")
|
|
236
|
-
DIEL_TLX_7 = Material(er=2.60, tand=0.0019, color="#21912b")
|
|
237
|
-
DIEL_TLX_8 = Material(er=2.55, tand=0.0019, color="#21912b")
|
|
238
|
-
DIEL_TLX_9 = Material(er=2.50, tand=0.0019, color="#21912b")
|
|
239
|
-
DIEL_TLY_3 = Material(er=2.33, tand=0.0012, color="#21912b")
|
|
240
|
-
DIEL_TLY_3F = Material(er=2.33, tand=0.0012, color="#21912b")
|
|
241
|
-
DIEL_TLY_5 = Material(er=2.20, tand=0.0009, color="#21912b")
|
|
242
|
-
DIEL_TLY_5_L = Material(er=2.20, tand=0.0009, color="#21912b")
|
|
243
|
-
DIEL_TLY_5A = Material(er=2.17, tand=0.0009, color="#21912b")
|
|
244
|
-
DIEL_TLY_5AL = Material(er=2.17, tand=0.0009, color="#21912b")
|
|
245
|
-
DIEL_TMM_10 = Material(er=9.20, tand=0.0022, color="#21912b")
|
|
246
|
-
DIEL_TMM_10i = Material(er=9.80, tand=0.002, color="#21912b")
|
|
247
|
-
DIEL_TMM_3 = Material(er=3.27, tand=0.002, color="#21912b")
|
|
248
|
-
DIEL_TMM_4 = Material(er=4.50, tand=0.002, color="#21912b")
|
|
249
|
-
DIEL_TMM_6 = Material(er=6.00, tand=0.0023, color="#21912b")
|
|
250
|
-
DIEL_TRF_41 = Material(er=4.10, tand=0.0035, color="#21912b")
|
|
251
|
-
DIEL_TRF_43 = Material(er=4.30, tand=0.0035, color="#21912b")
|
|
252
|
-
DIEL_TRF_45 = Material(er=4.50, tand=0.0035, color="#21912b")
|
|
253
|
-
DIEL_TSM_26 = Material(er=2.60, tand=0.0014, color="#21912b")
|
|
254
|
-
DIEL_TSM_29 = Material(er=2.94, tand=0.0013, color="#21912b")
|
|
255
|
-
DIEL_TSM_30 = Material(er=3.00, tand=0.0013, color="#21912b")
|
|
256
|
-
DIEL_TSM_DS = Material(er=2.85, tand=0.001, color="#21912b")
|
|
257
|
-
DIEL_TSM_DS3 = Material(er=3.00, tand=0.0011, color="#21912b")
|
|
258
|
-
DIEL_ULTRALAM_2000 = Material(er=2.4, tand=0.0019, color="#21912b")
|
|
259
|
-
DIEL_ULTRALAM_3850 = Material(er=2.9, tand=0.0025, color="#21912b")
|
|
260
|
-
DIEL_XT_Duroid_80000_002IN_Thick = Material(er=3.23, tand=0.0035, color="#21912b")
|
|
261
|
-
DIEL_XT_Duroid_8100 = Material(er=3.54, tand=0.0049, color="#21912b")
|
|
262
|
-
DIEL_XT_Duroid_81000_004IN_Thick = Material(er=3.32, tand=0.0038, color="#21912b")
|
|
137
|
+
DIEL_MAT_25N = Material(er=3.38, tand=0.0025, color="#21912b", opacity=0.3)
|
|
138
|
+
DIEL_MAT25FR = Material(er=3.58, tand=0.0035, color="#21912b", opacity=0.3)
|
|
139
|
+
DIEL_MEGTRON6R5775 = Material(er=3.61, tand=0.004, color="#21912b", opacity=0.3)
|
|
140
|
+
DIEL_MERCURYWAVE_9350 = Material(er=3.5, tand=0.004, color="#21912b", opacity=0.3)
|
|
141
|
+
DIEL_MULTICLAD_HF = Material(er=3.7, tand=0.0045, color="#21912b", opacity=0.3)
|
|
142
|
+
DIEL_N_8000 = Material(er=3.5, tand=0.011, color="#21912b", opacity=0.3)
|
|
143
|
+
DIEL_N4350_13RF = Material(er=3.5, tand=0.0065, color="#21912b", opacity=0.3)
|
|
144
|
+
DIEL_N4380_13RF = Material(er=3.8, tand=0.007, color="#21912b", opacity=0.3)
|
|
145
|
+
DIEL_N8000Q = Material(er=3.2, tand=0.006, color="#21912b", opacity=0.3)
|
|
146
|
+
DIEL_N9300_13RF = Material(er=3, tand=0.004, color="#21912b", opacity=0.3)
|
|
147
|
+
DIEL_N9320_13RF = Material(er=3.2, tand=0.0045, color="#21912b", opacity=0.3)
|
|
148
|
+
DIEL_N9338_13RF = Material(er=3.38, tand=0.0046, color="#21912b", opacity=0.3)
|
|
149
|
+
DIEL_N9350_13RF = Material(er=3.48, tand=0.0055, color="#21912b", opacity=0.3)
|
|
150
|
+
DIEL_NH9294 = Material(er=2.94, tand=0.0022, color="#21912b", opacity=0.3)
|
|
151
|
+
DIEL_NH9300 = Material(er=3.00, tand=0.0023, color="#21912b", opacity=0.3)
|
|
152
|
+
DIEL_NH9320 = Material(er=3.20, tand=0.0024, color="#21912b", opacity=0.3)
|
|
153
|
+
DIEL_NH9338 = Material(er=3.38, tand=0.0025, color="#21912b", opacity=0.3)
|
|
154
|
+
DIEL_NH9348 = Material(er=3.48, tand=0.003, color="#21912b", opacity=0.3)
|
|
155
|
+
DIEL_NH9350 = Material(er=3.50, tand=0.003, color="#21912b", opacity=0.3)
|
|
156
|
+
DIEL_NH9410 = Material(er=4.10, tand=0.003, color="#21912b", opacity=0.3)
|
|
157
|
+
DIEL_NH9450 = Material(er=4.50, tand=0.003, color="#21912b", opacity=0.3)
|
|
158
|
+
DIEL_NORCLAD = Material(er=2.55, tand=0.0011, color="#21912b", opacity=0.3)
|
|
159
|
+
DIEL_NX9240 = Material(er=2.40, tand=0.0016, color="#21912b", opacity=0.3)
|
|
160
|
+
DIEL_NX9245 = Material(er=2.45, tand=0.0016, color="#21912b", opacity=0.3)
|
|
161
|
+
DIEL_NX9250 = Material(er=2.50, tand=0.0017, color="#21912b", opacity=0.3)
|
|
162
|
+
DIEL_NX9255 = Material(er=2.55, tand=0.0018, color="#21912b", opacity=0.3)
|
|
163
|
+
DIEL_NX9260 = Material(er=2.60, tand=0.0019, color="#21912b", opacity=0.3)
|
|
164
|
+
DIEL_NX9270 = Material(er=2.70, tand=0.002, color="#21912b", opacity=0.3)
|
|
165
|
+
DIEL_NX9294 = Material(er=2.94, tand=0.0022, color="#21912b", opacity=0.3)
|
|
166
|
+
DIEL_NX9300 = Material(er=3.00, tand=0.0023, color="#21912b", opacity=0.3)
|
|
167
|
+
DIEL_NX9320 = Material(er=3.20, tand=0.0024, color="#21912b", opacity=0.3)
|
|
168
|
+
DIEL_NY9208 = Material(er=2.08, tand=0.0006, color="#21912b", opacity=0.3)
|
|
169
|
+
DIEL_NY9217 = Material(er=2.17, tand=0.0008, color="#21912b", opacity=0.3)
|
|
170
|
+
DIEL_NY9220 = Material(er=2.20, tand=0.0009, color="#21912b", opacity=0.3)
|
|
171
|
+
DIEL_NY9233 = Material(er=2.33, tand=0.0011, color="#21912b", opacity=0.3)
|
|
172
|
+
DIEL_POLYGUIDE = Material(er=2.320, tand=0.0005, color="#21912b", opacity=0.3)
|
|
173
|
+
DIEL_RF_30 = Material(er=3.00, tand=0.0019, color="#21912b", opacity=0.3)
|
|
174
|
+
DIEL_RF_301 = Material(er=2.97, tand=0.0018, color="#21912b", opacity=0.3)
|
|
175
|
+
DIEL_RF_35 = Material(er=3.50, tand=0.0025, color="#21912b", opacity=0.3)
|
|
176
|
+
DIEL_RF_35A2 = Material(er=3.50, tand=0.0015, color="#21912b", opacity=0.3)
|
|
177
|
+
DIEL_RF_35P = Material(er=3.50, tand=0.0034, color="#21912b", opacity=0.3)
|
|
178
|
+
DIEL_RF_35TC = Material(er=3.50, tand=0.0011, color="#21912b", opacity=0.3)
|
|
179
|
+
DIEL_RF_41 = Material(er=4.10, tand=0.0038, color="#21912b", opacity=0.3)
|
|
180
|
+
DIEL_RF_43 = Material(er=4.30, tand=0.0033, color="#21912b", opacity=0.3)
|
|
181
|
+
DIEL_RF_45 = Material(er=4.50, tand=0.0037, color="#21912b", opacity=0.3)
|
|
182
|
+
DIEL_RF_60A = Material(er=6.15, tand=0.0038, color="#21912b", opacity=0.3)
|
|
183
|
+
DIEL_RO3003 = Material(er=3.00, tand=0.0011, color="#21912b", opacity=0.3)
|
|
184
|
+
DIEL_RO3006 = Material(er=6.15, tand=0.002, color="#21912b", opacity=0.3)
|
|
185
|
+
DIEL_RO3010 = Material(er=10.2, tand=0.0022, color="#21912b", opacity=0.3)
|
|
186
|
+
DIEL_RO3035 = Material(er=3.50, tand=0.0017, color="#21912b", opacity=0.3)
|
|
187
|
+
DIEL_RO3203 = Material(er=3.02, tand=0.0016, color="#21912b", opacity=0.3)
|
|
188
|
+
DIEL_RO3206 = Material(er=6.15, tand=0.0027, color="#21912b", opacity=0.3)
|
|
189
|
+
DIEL_RO3210 = Material(er=10.2, tand=0.0027, color="#21912b", opacity=0.3)
|
|
190
|
+
DIEL_RO3730 = Material(er=3.00, tand=0.0016, color="#21912b", opacity=0.3)
|
|
191
|
+
DIEL_RO4003C = Material(er=3.38, tand=0.0029, color="#21912b", opacity=0.3)
|
|
192
|
+
DIEL_RO4350B = Material(er=3.48, tand=0.0037, color="#21912b", opacity=0.3)
|
|
193
|
+
DIEL_RO4350B_TX = Material(er=3.48, tand=0.0034, color="#21912b", opacity=0.3)
|
|
194
|
+
DIEL_RO4360 = Material(er=6.15, tand=0.0038, color="#21912b", opacity=0.3)
|
|
195
|
+
DIEL_RO4533 = Material(er=3.30, tand=0.0025, color="#21912b", opacity=0.3)
|
|
196
|
+
DIEL_RO4534 = Material(er=3.40, tand=0.0027, color="#21912b", opacity=0.3)
|
|
197
|
+
DIEL_RO4535 = Material(er=3.50, tand=0.0037, color="#21912b", opacity=0.3)
|
|
198
|
+
DIEL_RO4730 = Material(er=3.00, tand=0.0033, color="#21912b", opacity=0.3)
|
|
199
|
+
DIEL_RT_Duroid_5870 = Material(er=2.33, tand=0.0012, color="#21912b", opacity=0.3)
|
|
200
|
+
DIEL_RT_Duroid_5880 = Material(er=2.20, tand=0.0009, color="#21912b", opacity=0.3)
|
|
201
|
+
DIEL_RT_Duroid_5880LZ = Material(er=1.96, tand=0.0019, color="#21912b", opacity=0.3)
|
|
202
|
+
DIEL_RT_Duroid_6002 = Material(er=2.94, tand=0.0012, color="#21912b", opacity=0.3)
|
|
203
|
+
DIEL_RT_Duroid_6006 = Material(er=6.15, tand=0.0027, color="#21912b", opacity=0.3)
|
|
204
|
+
DIEL_RT_Duroid_6010_2LM = Material(er=10.2, tand=0.0023, color="#21912b", opacity=0.3)
|
|
205
|
+
DIEL_RT_Duroid_6035HTC = Material(er=3.50, tand=0.0013, color="#21912b", opacity=0.3)
|
|
206
|
+
DIEL_RT_Duroid_6202 = Material(er=2.94, tand=0.0015, color="#21912b", opacity=0.3)
|
|
207
|
+
DIEL_RT_Duroid_6202PR = Material(er=2.90, tand=0.002, color="#21912b", opacity=0.3)
|
|
208
|
+
DIEL_SYRON_70000_002IN_Thick = Material(er=3.4, tand=0.0045, color="#21912b", opacity=0.3)
|
|
209
|
+
DIEL_SYRON_71000_004IN_THICK = Material(er=3.39, tand=0.005, color="#21912b", opacity=0.3)
|
|
210
|
+
DIEL_SYRON_71000INCH = Material(er=3.61, tand=0.006, color="#21912b", opacity=0.3)
|
|
211
|
+
DIEL_TACLAMPLUS= Material(er=2.10, tand=0.0004, color="#21912b", opacity=0.3)
|
|
212
|
+
DIEL_TC350 = Material(er=3.50, tand=0.002, color="#21912b", opacity=0.3)
|
|
213
|
+
DIEL_TC600 = Material(er=6.15, tand=0.002, color="#21912b", opacity=0.3)
|
|
214
|
+
DIEL_THETA = Material(er=3.85, tand=0.0123, color="#21912b", opacity=0.3)
|
|
215
|
+
DIEL_TLA_6 = Material(er=2.62, tand=0.0017, color="#21912b", opacity=0.3)
|
|
216
|
+
DIEL_TLC_27 = Material(er=2.75, tand=0.003, color="#21912b", opacity=0.3)
|
|
217
|
+
DIEL_TLC_30 = Material(er=3.00, tand=0.003, color="#21912b", opacity=0.3)
|
|
218
|
+
DIEL_TLC_32 = Material(er=3.20, tand=0.003, color="#21912b", opacity=0.3)
|
|
219
|
+
DIEL_TLC_338 = Material(er=3.38, tand=0.0034, color="#21912b", opacity=0.3)
|
|
220
|
+
DIEL_TLC_35 = Material(er=3.50, tand=0.0037, color="#21912b", opacity=0.3)
|
|
221
|
+
DIEL_TLE_95 = Material(er=2.95, tand=0.0028, color="#21912b", opacity=0.3)
|
|
222
|
+
DIEL_TLF_34 = Material(er=3.40, tand=0.002, color="#21912b", opacity=0.3)
|
|
223
|
+
DIEL_TLF_35 = Material(er=3.50, tand=0.002, color="#21912b", opacity=0.3)
|
|
224
|
+
DIEL_TLG_29 = Material(er=2.87, tand=0.0027, color="#21912b", opacity=0.3)
|
|
225
|
+
DIEL_TLG_30 = Material(er=3, tand=0.0038, color="#21912b", opacity=0.3)
|
|
226
|
+
DIEL_TLP_3 = Material(er=2.33, tand=0.0009, color="#21912b", opacity=0.3)
|
|
227
|
+
DIEL_TLP_5 = Material(er=2.20, tand=0.0009, color="#21912b", opacity=0.3)
|
|
228
|
+
DIEL_TLP_5A = Material(er=2.17, tand=0.0009, color="#21912b", opacity=0.3)
|
|
229
|
+
DIEL_TLT_0 = Material(er=2.45, tand=0.0019, color="#21912b", opacity=0.3)
|
|
230
|
+
DIEL_TLT_6 = Material(er=2.65, tand=0.0019, color="#21912b", opacity=0.3)
|
|
231
|
+
DIEL_TLT_7 = Material(er=2.60, tand=0.0019, color="#21912b", opacity=0.3)
|
|
232
|
+
DIEL_TLT_8 = Material(er=2.55, tand=0.0019, color="#21912b", opacity=0.3)
|
|
233
|
+
DIEL_TLT_9 = Material(er=2.50, tand=0.0019, color="#21912b", opacity=0.3)
|
|
234
|
+
DIEL_TLX_0 = Material(er=2.45, tand=0.0019, color="#21912b", opacity=0.3)
|
|
235
|
+
DIEL_TLX_6 = Material(er=2.65, tand=0.0019, color="#21912b", opacity=0.3)
|
|
236
|
+
DIEL_TLX_7 = Material(er=2.60, tand=0.0019, color="#21912b", opacity=0.3)
|
|
237
|
+
DIEL_TLX_8 = Material(er=2.55, tand=0.0019, color="#21912b", opacity=0.3)
|
|
238
|
+
DIEL_TLX_9 = Material(er=2.50, tand=0.0019, color="#21912b", opacity=0.3)
|
|
239
|
+
DIEL_TLY_3 = Material(er=2.33, tand=0.0012, color="#21912b", opacity=0.3)
|
|
240
|
+
DIEL_TLY_3F = Material(er=2.33, tand=0.0012, color="#21912b", opacity=0.3)
|
|
241
|
+
DIEL_TLY_5 = Material(er=2.20, tand=0.0009, color="#21912b", opacity=0.3)
|
|
242
|
+
DIEL_TLY_5_L = Material(er=2.20, tand=0.0009, color="#21912b", opacity=0.3)
|
|
243
|
+
DIEL_TLY_5A = Material(er=2.17, tand=0.0009, color="#21912b", opacity=0.3)
|
|
244
|
+
DIEL_TLY_5AL = Material(er=2.17, tand=0.0009, color="#21912b", opacity=0.3)
|
|
245
|
+
DIEL_TMM_10 = Material(er=9.20, tand=0.0022, color="#21912b", opacity=0.3)
|
|
246
|
+
DIEL_TMM_10i = Material(er=9.80, tand=0.002, color="#21912b", opacity=0.3)
|
|
247
|
+
DIEL_TMM_3 = Material(er=3.27, tand=0.002, color="#21912b", opacity=0.3)
|
|
248
|
+
DIEL_TMM_4 = Material(er=4.50, tand=0.002, color="#21912b", opacity=0.3)
|
|
249
|
+
DIEL_TMM_6 = Material(er=6.00, tand=0.0023, color="#21912b", opacity=0.3)
|
|
250
|
+
DIEL_TRF_41 = Material(er=4.10, tand=0.0035, color="#21912b", opacity=0.3)
|
|
251
|
+
DIEL_TRF_43 = Material(er=4.30, tand=0.0035, color="#21912b", opacity=0.3)
|
|
252
|
+
DIEL_TRF_45 = Material(er=4.50, tand=0.0035, color="#21912b", opacity=0.3)
|
|
253
|
+
DIEL_TSM_26 = Material(er=2.60, tand=0.0014, color="#21912b", opacity=0.3)
|
|
254
|
+
DIEL_TSM_29 = Material(er=2.94, tand=0.0013, color="#21912b", opacity=0.3)
|
|
255
|
+
DIEL_TSM_30 = Material(er=3.00, tand=0.0013, color="#21912b", opacity=0.3)
|
|
256
|
+
DIEL_TSM_DS = Material(er=2.85, tand=0.001, color="#21912b", opacity=0.3)
|
|
257
|
+
DIEL_TSM_DS3 = Material(er=3.00, tand=0.0011, color="#21912b", opacity=0.3)
|
|
258
|
+
DIEL_ULTRALAM_2000 = Material(er=2.4, tand=0.0019, color="#21912b", opacity=0.3)
|
|
259
|
+
DIEL_ULTRALAM_3850 = Material(er=2.9, tand=0.0025, color="#21912b", opacity=0.3)
|
|
260
|
+
DIEL_XT_Duroid_80000_002IN_Thick = Material(er=3.23, tand=0.0035, color="#21912b", opacity=0.3)
|
|
261
|
+
DIEL_XT_Duroid_8100 = Material(er=3.54, tand=0.0049, color="#21912b", opacity=0.3)
|
|
262
|
+
DIEL_XT_Duroid_81000_004IN_Thick = Material(er=3.32, tand=0.0038, color="#21912b", opacity=0.3)
|
|
263
263
|
|
|
264
264
|
# Legacy FR Materials
|
|
265
|
-
DIEL_FR1 = Material(er=4.8, tand=0.025, color="#3c9747") # Paper + phenolic resin
|
|
266
|
-
DIEL_FR2 = Material(er=4.8, tand=0.02, color="#3c9747") # Paper + phenolic resin
|
|
267
|
-
DIEL_FR3 = Material(er=4.5, tand=0.02, color="#2b7a4b") # Paper + epoxy resin
|
|
268
|
-
DIEL_FR4 = Material(er=4.4, tand=0.015, color="#1e8449") # Woven glass + epoxy resin (industry standard)
|
|
269
|
-
DIEL_FR5 = Material(er=4.2, tand=0.012, color="#156e38") # Woven glass + high-temp epoxy resin
|
|
270
|
-
DIEL_FR6 = Material(er=5.2, tand=0.030, color="#145a32") # Paper + unknown resin, poor thermal performance
|
|
265
|
+
DIEL_FR1 = Material(er=4.8, tand=0.025, color="#3c9747", opacity=0.3) # Paper + phenolic resin
|
|
266
|
+
DIEL_FR2 = Material(er=4.8, tand=0.02, color="#3c9747", opacity=0.3) # Paper + phenolic resin
|
|
267
|
+
DIEL_FR3 = Material(er=4.5, tand=0.02, color="#2b7a4b", opacity=0.3) # Paper + epoxy resin
|
|
268
|
+
DIEL_FR4 = Material(er=4.4, tand=0.015, color="#1e8449", opacity=0.3) # Woven glass + epoxy resin (industry standard)
|
|
269
|
+
DIEL_FR5 = Material(er=4.2, tand=0.012, color="#156e38", opacity=0.3) # Woven glass + high-temp epoxy resin
|
|
270
|
+
DIEL_FR6 = Material(er=5.2, tand=0.030, color="#145a32", opacity=0.3) # Paper + unknown resin, poor thermal performance
|
|
271
271
|
|
|
272
272
|
# Magnetic Materials
|
|
273
|
-
MU_METAL = Material(cond=1.0e6, ur=200000, color="#666680")
|
|
273
|
+
MU_METAL = Material(cond=1.0e6, ur=200000, color="#666680", opacity=0.3)
|
|
274
274
|
|
|
275
275
|
|
|
276
276
|
############################################################
|
|
277
277
|
# FOAMS #
|
|
278
278
|
############################################################
|
|
279
279
|
|
|
280
|
-
FOAM_ROHACELL_31 = Material(er=1.05, tand=0.0005, color="#f0e1a1") # PMI-based structural foam
|
|
281
|
-
FOAM_ROHACELL_51 = Material(er=1.07, tand=0.0006, color="#f0dea0") # denser version
|
|
282
|
-
FOAM_ROHACELL_71 = Material(er=1.10, tand=0.0007, color="#e5d199")
|
|
283
|
-
FOAM_PEI = Material(er=1.15, tand=0.0035, color="#e0b56f") # polyetherimide-based foam
|
|
284
|
-
FOAM_PMI = Material(er=1.10, tand=0.0008, color="#d9c690") # polymethacrylimide
|
|
285
|
-
FOAM_PVC = Material(er=1.20, tand=0.0040, color="#cccccc")
|
|
286
|
-
FOAM_EPS = Material(er=1.03, tand=0.0050, color="#f7f7f7") # expanded polystyrene
|
|
287
|
-
FOAM_XPS = Material(er=1.05, tand=0.0030, color="#e0e0e0") # extruded polystyrene
|
|
288
|
-
FOAM_PU = Material(er=1.10, tand=0.0080, color="#d0d0d0") # polyurethane foam
|
|
289
|
-
FOAM_GLAS = Material(er=3.10, tand=0.0050, color="#888888") # cellular glass, denser
|
|
290
|
-
FOAM_AIREX_C70 = Material(er=1.10, tand=0.0010, color="#f7e7a3") # PET closed cell
|
|
291
|
-
FOAM_AIREX_T92 = Material(er=1.10, tand=0.0020, color="#f6d08a") # higher strength PET
|
|
292
|
-
FOAM_PVC_CORECELL = Material(er=1.56, tand=0.0025, color="#aaaaaa") # structural core PVC
|
|
280
|
+
FOAM_ROHACELL_31 = Material(er=1.05, tand=0.0005, color="#f0e1a1", opacity=0.15) # PMI-based structural foam
|
|
281
|
+
FOAM_ROHACELL_51 = Material(er=1.07, tand=0.0006, color="#f0dea0", opacity=0.15) # denser version
|
|
282
|
+
FOAM_ROHACELL_71 = Material(er=1.10, tand=0.0007, color="#e5d199", opacity=0.15)
|
|
283
|
+
FOAM_PEI = Material(er=1.15, tand=0.0035, color="#e0b56f", opacity=0.15) # polyetherimide-based foam
|
|
284
|
+
FOAM_PMI = Material(er=1.10, tand=0.0008, color="#d9c690", opacity=0.15) # polymethacrylimide
|
|
285
|
+
FOAM_PVC = Material(er=1.20, tand=0.0040, color="#cccccc", opacity=0.15)
|
|
286
|
+
FOAM_EPS = Material(er=1.03, tand=0.0050, color="#f7f7f7", opacity=0.15) # expanded polystyrene
|
|
287
|
+
FOAM_XPS = Material(er=1.05, tand=0.0030, color="#e0e0e0", opacity=0.15) # extruded polystyrene
|
|
288
|
+
FOAM_PU = Material(er=1.10, tand=0.0080, color="#d0d0d0", opacity=0.15) # polyurethane foam
|
|
289
|
+
FOAM_GLAS = Material(er=3.10, tand=0.0050, color="#888888", opacity=0.15) # cellular glass, denser
|
|
290
|
+
FOAM_AIREX_C70 = Material(er=1.10, tand=0.0010, color="#f7e7a3", opacity=0.15) # PET closed cell
|
|
291
|
+
FOAM_AIREX_T92 = Material(er=1.10, tand=0.0020, color="#f6d08a", opacity=0.15) # higher strength PET
|
|
292
|
+
FOAM_PVC_CORECELL = Material(er=1.56, tand=0.0025, color="#aaaaaa", opacity=0.15) # structural core PVC
|