source: source/entities.js @ 119:dcdc3f3520b6

Last change on this file since 119:dcdc3f3520b6 was 119:dcdc3f3520b6, checked in by fnevgeny, 15 years ago

Entity list re-ordered.

File size: 8.7 KB
Line 
1var plasma_entities = new Array(
2    {
3        name      : "Plasma frequency",
4        dimension : "frequency",
5        nspecies  : 1,
6        section   : "fundamental",
7        formula   : "%s1.getPlasmaFrequency()",
8        wikiLink  : "Plasma_frequency"
9    },
10    {
11        name      : "Gyrofrequency",
12        dimension : "frequency",
13        nspecies  : 1,
14        section   : "fundamental",
15        formula   : "%s1.getGyroFrequency(this.B)",
16        wikiLink  : "Gyrofrequency"
17    },
18
19    {
20        name      : "Mean interparticle distance",
21        dimension : "length",
22        nspecies  : 1,
23        section   : "fundamental",
24        formula   : "%s1.getMeanDistance()"
25    },
26    {
27        name      : "Debye length",
28        dimension : "length",
29        nspecies  : 1,
30        section   : "fundamental",
31        formula   : "%s1.getDebyeLength()",
32        wikiLink  : "Debye_length"
33    },
34    {
35        name      : "Full Debye length",
36        dimension : "length",
37        nspecies  : 1,
38        section   : "fundamental",
39        formula   : "this.getFullDebyeLength(%s1)",
40        wikiLink  : "Debye_length"
41    },
42    {
43        name      : "Gyroradius",
44        dimension : "length",
45        nspecies  : 1,
46        section   : "fundamental",
47        formula   : "%s1.getGyroRadius(this.B)",
48        wikiLink  : "Gyroradius"
49    },
50    {
51        name      : "Distance of minimal approach",
52        dimension : "length",
53        nspecies  : 1,
54        section   : "fundamental",
55        formula   : "%s1.getMinApproachDistance()"
56    },
57    {
58        name      : "Inertial length",
59        dimension : "length",
60        nspecies  : 1,
61        section   : "fundamental",
62        formula   : "%s1.getInertialLength()",
63        wikiLink  : "Inertial_length"
64    },
65    {
66        name      : "De Broglie wavelength",
67        dimension : "length",
68        nspecies  : 1,
69        section   : "fundamental",
70        formula   : "%s1.getDeBroglieLength()",
71        wikiLink  : "DeBroglie_wavelength"
72    },
73
74    {
75        name      : "Thermal velocity",
76        dimension : "velocity",
77        nspecies  : 1,
78        section   : "fundamental",
79        formula   : "%s1.getThermalVelocity()",
80        wikiLink  : "Thermal_velocity"
81    },
82    {
83        name      : "Alfven velocity",
84        dimension : "velocity",
85        nspecies  : 0,
86        section   : "waves",
87        formula   : "this.getAlfvenVelocity(this.B)",
88        wikiLink  : "Alfven_velocity"
89    },
90
91    {
92        name      : "Coupling parameter",
93        dimension : "none",
94        nspecies  : 1,
95        section   : "fundamental",
96        formula   : "%s1.getCoupling()"
97    },
98    {
99        name      : "Typical Debye screening",
100        dimension : "none",
101        nspecies  : 1,
102        section   : "spectroscopy",
103        formula   : "var r = %s1.getMeanDistance()/%s1.getDebyeLength(); \
104                     (1 + r)*Math.exp(-r)"
105    },
106
107    {
108        name      : "Transition energy",
109        dimension : "energy",
110        nspecies  : 0,
111        section   : "spectroscopy",
112        formula   : "this.getWavenumber()"
113    },
114    {
115        name      : "Natural linewidth",
116        dimension : "energy",
117        nspecies  : 0,
118        section   : "spectroscopy",
119        formula   : "this.getNaturalWidth()"
120    },
121    {
122        name      : "Doppler FWHM",
123        dimension : "energy",
124        nspecies  : 0,
125        section   : "spectroscopy",
126        formula   : "2*this.getDopplerHwhm()",
127        wikiLink  : "Doppler_broadening"
128    },
129    {
130        name      : "Zeeman splitting",
131        dimension : "energy",
132        nspecies  : 0,
133        section   : "spectroscopy",
134        formula   : "2*this.getZeemanSplitting()"
135    },
136    {
137        name      : "Total Stark FWHM",
138        dimension : "energy",
139        nspecies  : 0,
140        section   : "spectroscopy",
141        formula   : "2*this.getStarkHwhm()"
142    },
143    {
144        name      : "Stark FWHM",
145        dimension : "energy",
146        nspecies  : 1,
147        prepos    : "due to",
148        section   : "spectroscopy",
149        formula   : "2*this.getQsHwhm(%s1)*this.getStarkQuasistaticity(%s1)"
150    },
151
152    {
153        name      : "QS Stark FWHM",
154        dimension : "energy",
155        nspecies  : 1,
156        prepos    : "due to",
157        section   : "spectroscopy",
158        formula   : "2*this.getQsHwhm(%s1)"
159    },
160
161    {
162        name      : "Dynamic Stark range",
163        dimension : "energy",
164        nspecies  : 1,
165        section   : "spectroscopy",
166        formula   : "this.getMicrofieldFrequency(%s1)/3e10/(2*Math.PI)"
167    },
168
169    {
170        name      : "Minimal energy distance",
171        dimension : "energy",
172        nspecies  : 0,
173        section   : "spectroscopy",
174        formula   : "this.getMinEnergyDistance()"
175    },
176    {
177        name      : "Fermi energy",
178        dimension : "energy",
179        nspecies  : 0,
180        section   : "fundamental",
181        formula   : "this.getFermiEnergy()",
182        wikiLink  : "Fermi_energy"
183    },
184
185    {
186        name      : "Beta",
187        dimension : "none",
188        nspecies  : 0,
189        section   : "fundamental",
190        formula   : "this.getBeta()",
191        wikiLink  : "Beta_(plasma_physics)"
192    },
193   
194    {
195        name      : "Stark quasistaticity",
196        dimension : "none",
197        nspecies  : 1,
198        section   : "spectroscopy",
199        formula   : "this.getStarkQuasistaticity(%s1)"
200    },
201    {
202        name      : "Static/dynamic Stark ratio",
203        dimension : "none",
204        nspecies  : 1,
205        section   : "spectroscopy",
206        formula   : "this.getStarkRatio(%s1)"
207    },
208
209    {
210        name      : "Transition wavelength",
211        dimension : "length",
212        nspecies  : 0,
213        section   : "spectroscopy",
214        formula   : "1/this.getWavenumber()"
215    },
216
217    {
218        name      : "Transition frequency",
219        dimension : "frequency",
220        nspecies  : 0,
221        section   : "spectroscopy",
222        formula   : "3e10*this.getWavenumber()"
223    },
224
225    {
226        name      : "Holtsmark field",
227        dimension : "efield",
228        nspecies  : 1,
229        section   : "spectroscopy",
230        formula   : "%s1.getHoltsmarkField()"
231    },
232
233    {
234        name      : "Microfield frequency",
235        dimension : "frequency",
236        nspecies  : 1,
237        section   : "spectroscopy",
238        formula   : "this.getMicrofieldFrequency(%s1)"
239    },
240   
241    {
242        name      : "Cyclotron losses",
243        dimension : "power_density",
244        nspecies  : 1,
245        section   : "radiation",
246        formula   : "%s1.getCyclotronLosses(this.B)",
247        wikiLink  : "Cyclotron_radiation"
248    },
249   
250    {
251        name      : "Free-free losses",
252        dimension : "power_density",
253        nspecies  : 0,
254        section   : "radiation",
255        formula   : "this.getBremsstrahlungLosses()"
256    },
257   
258    {
259        name      : "Free-free spectral density",
260        dimension : "spectral_power_density",
261        nspecies  : 0,
262        section   : "radiation",
263        formula   : "this.getBremsstrahlungSpectralDensity()"
264    },
265   
266    {
267        name      : "Free-bound losses",
268        dimension : "power_density",
269        nspecies  : 0,
270        section   : "radiation",
271        formula   : "this.getFreeBoundLosses()"
272    },
273   
274    {
275        name      : "Free-bound spectral density",
276        dimension : "spectral_power_density",
277        nspecies  : 0,
278        section   : "radiation",
279        formula   : "this.getFreeBoundSpectralDensity()"
280    },
281   
282    {
283        name      : "Bound-bound losses",
284        dimension : "power_density",
285        nspecies  : 0,
286        section   : "radiation",
287        formula   : "this.getBoundBoundLosses()"
288    },
289   
290    {
291        name      : "Ideal gas pressure",
292        dimension : "pressure",
293        nspecies  : 1,
294        section   : "fundamental",
295        formula   : "%s1.getPressure()",
296        wikiLink  : "Ideal_gas"
297    },
298   
299    {
300        name      : "Total pressure",
301        dimension : "pressure",
302        nspecies  : 0,
303        section   : "fundamental",
304        formula   : "this.getPressure()"
305    },
306   
307    {
308        name      : "Magnetic field pressure",
309        dimension : "pressure",
310        nspecies  : 0,
311        section   : "fundamental",
312        formula   : "this.getMagneticFieldPressure()",
313        wikiLink  : "Magnetic_pressure"
314    },
315   
316    {
317        name      : "Coulomb logarithm",
318        dimension : "none",
319        nspecies  : 1,
320        section   : "collisions",
321        formula   : "this.e.getCoulombLog(%s1)",
322        wikiLink  : "Coulomb_logarithm",
323        prepos    : "for electrons/"
324    },
325
326    {
327        name      : "Thomson cross-section",
328        dimension : "area",
329        nspecies  : 1,
330        section   : "collisions",
331        formula   : "%s1.getThomsonXsTotal()",
332        wikiLink  : "Thomson_cross_section"
333    }
334);
Note: See TracBrowser for help on using the repository browser.