source: source/entities.js @ 312:93bdfc0e3904

Last change on this file since 312:93bdfc0e3904 was 312:93bdfc0e3904, checked in by Evgeny Stambulchik <Evgeny.Stambulchik@…>, 12 years ago

Added wavelength variants of Stark/Doppler/?...

File size: 15.2 KB
Line 
1var plasma_entities = new Array(
2    {
3        id        : "plasma_frequency",
4        name      : "Plasma frequency",
5        dimension : "frequency",
6        nspecies  : 1,
7        section   : "waves",
8        formula   : "%s1.getPlasmaFrequency()",
9        wikiLink  : "Plasma_frequency"
10    },
11    {
12        id        : "gyrofrequency",
13        name      : "Gyrofrequency",
14        dimension : "frequency",
15        nspecies  : 1,
16        section   : "fundamental",
17        formula   : "%s1.getGyroFrequency(this.plasma.B)",
18        wikiLink  : "Gyrofrequency"
19    },
20
21    {
22        id        : "wigner_seitz_radius",
23        name      : "Typical inter-particle distance",
24        dimension : "length",
25        nspecies  : 1,
26        section   : "fundamental",
27        formula   : "%s1.getTypicalDistance()",
28        wikiLink  : "Wigner-Seitz_radius"
29    },
30    {
31        id        : "debye_length",
32        name      : "Debye length",
33        dimension : "length",
34        nspecies  : 1,
35        section   : "fundamental",
36        formula   : "%s1.getDebyeLength()",
37        wikiLink  : "Debye_length"
38    },
39    {
40        id        : "full_debye_length",
41        name      : "Full Debye length",
42        dimension : "length",
43        nspecies  : 1,
44        section   : "fundamental",
45        formula   : "this.plasma.getFullDebyeLength(%s1)",
46        wikiLink  : "Debye_length"
47    },
48    {
49        id        : "gyroradius",
50        name      : "Gyroradius",
51        dimension : "length",
52        nspecies  : 1,
53        section   : "fundamental",
54        formula   : "%s1.getGyroRadius(this.plasma.B)",
55        wikiLink  : "Gyroradius"
56    },
57    {
58        id        : "distance_of_minimal_approach",
59        name      : "Distance of minimal approach",
60        dimension : "length",
61        nspecies  : 1,
62        section   : "fundamental",
63        formula   : "%s1.getMinApproachDistance()"
64    },
65    {
66        id        : "inertial_length",
67        name      : "Inertial length",
68        dimension : "length",
69        nspecies  : 1,
70        section   : "waves",
71        formula   : "%s1.getInertialLength()",
72        wikiLink  : "Inertial_length"
73    },
74    {
75        id        : "de_broglie_wavelength",
76        name      : "De Broglie wavelength",
77        dimension : "length",
78        nspecies  : 1,
79        section   : "fundamental",
80        formula   : "%s1.getDeBroglieLength()",
81        wikiLink  : "DeBroglie_wavelength"
82    },
83
84    {
85        id        : "thermal_velocity",
86        name      : "Thermal velocity",
87        dimension : "velocity",
88        nspecies  : 1,
89        section   : "fundamental",
90        formula   : "%s1.getThermalVelocity()",
91        wikiLink  : "Thermal_velocity"
92    },
93    {
94        id        : "alfven_velocity",
95        name      : "Alfven velocity",
96        dimension : "velocity",
97        nspecies  : 0,
98        section   : "waves",
99        formula   : "this.plasma.getAlfvenVelocity(this.plasma.B)",
100        wikiLink  : "Alfven_velocity"
101    },
102
103    {
104        id        : "coupling_parameter",
105        name      : "Coupling parameter",
106        dimension : "none",
107        nspecies  : 1,
108        section   : "fundamental",
109        formula   : "%s1.getCoupling()"
110    },
111    {
112        id        : "typical_debye_screening",
113        name      : "Typical Debye screening",
114        dimension : "none",
115        nspecies  : 1,
116        section   : "spectroscopy",
117        formula   : "var r = %s1.getTypicalDistance()/%s1.getDebyeLength(); \
118                     (1 + r)*Math.exp(-r)"
119    },
120
121    {
122        id        : "transition_energy",
123        name      : "Transition energy",
124        dimension : "energy",
125        nspecies  : 0,
126        section   : "spectroscopy",
127        formula   : "this.plasma.r.getTransitionEnergy()"
128    },
129    {
130        id        : "natural_linewidth",
131        name      : "Natural linewidth",
132        dimension : "energy",
133        nspecies  : 0,
134        section   : "spectroscopy",
135        formula   : "this.plasma.r.getNaturalWidth()"
136    },
137    {
138        id        : "natural_linewidth_wl",
139        name      : "Natural linewidth (wl)",
140        dimension : "length",
141        nspecies  : 0,
142        section   : "spectroscopy",
143        formula   : "this.plasma.dE2dWl(this.plasma.r.getNaturalWidth())"
144    },
145    {
146        id        : "Fine_structure",
147        name      : "Fine structure",
148        dimension : "energy",
149        nspecies  : 0,
150        section   : "spectroscopy",
151        formula   : "this.plasma.r.getFineStructure()",
152        wikiLink  : "Fine_structure"
153    },
154    {
155        id        : "Fine_structure_wl",
156        name      : "Fine structure (wl)",
157        dimension : "length",
158        nspecies  : 0,
159        section   : "spectroscopy",
160        formula   : "this.plasma.dE2dWl(this.plasma.r.getFineStructure())",
161        wikiLink  : "Fine_structure"
162    },
163    {
164        id        : "doppler_fwhm",
165        name      : "Doppler FWHM",
166        dimension : "energy",
167        nspecies  : 0,
168        section   : "spectroscopy",
169        formula   : "2*this.plasma.r.getDopplerHwhm()",
170        wikiLink  : "Doppler_broadening"
171    },
172    {
173        id        : "doppler_fwhm_wl",
174        name      : "Doppler FWHM (wl)",
175        dimension : "length",
176        nspecies  : 0,
177        section   : "spectroscopy",
178        formula   : "this.plasma.dE2dWl(2*this.plasma.r.getDopplerHwhm())",
179        wikiLink  : "Doppler_broadening"
180    },
181    {
182        id        : "zeeman_splitting",
183        name      : "Zeeman splitting",
184        dimension : "energy",
185        nspecies  : 0,
186        section   : "spectroscopy",
187        formula   : "2*this.plasma.getZeemanSplitting()"
188    },
189    {
190        id        : "zeeman_splitting_wl",
191        name      : "Zeeman splitting (wl)",
192        dimension : "length",
193        nspecies  : 0,
194        section   : "spectroscopy",
195        formula   : "this.plasma.dE2dWl(2*this.plasma.getZeemanSplitting())"
196    },
197    {
198        id        : "total_stark_fwhm",
199        name      : "Total Stark FWHM",
200        dimension : "energy",
201        nspecies  : 0,
202        section   : "spectroscopy",
203        formula   : "2*this.plasma.getStarkHwhm()"
204    },
205    {
206        id        : "total_stark_fwhm_wl",
207        name      : "Total Stark FWHM (wl)",
208        dimension : "length",
209        nspecies  : 0,
210        section   : "spectroscopy",
211        formula   : "this.plasma.dE2dWl(2*this.plasma.getStarkHwhm())"
212    },
213    {
214        id        : "stark_fwhm",
215        name      : "Stark FWHM",
216        dimension : "energy",
217        nspecies  : 1,
218        prepos    : "due to",
219        section   : "spectroscopy",
220        formula   : "2*this.plasma.getQsHwhm(%s1)*this.plasma.getStarkQuasistaticity(%s1)"
221    },
222
223    {
224        id        : "qs_stark_fwhm",
225        name      : "QS Stark FWHM",
226        dimension : "energy",
227        nspecies  : 1,
228        prepos    : "due to",
229        section   : "spectroscopy",
230        formula   : "2*this.plasma.getQsHwhm(%s1)"
231    },
232
233    {
234        id        : "dynamic_stark_range",
235        name      : "Dynamic Stark range",
236        dimension : "energy",
237        nspecies  : 1,
238        section   : "spectroscopy",
239        formula   : "this.plasma.getMicrofieldFrequency(%s1)"
240    },
241
242    {
243        id        : "minimal_energy_distance",
244        name      : "Minimal energy distance",
245        dimension : "energy",
246        nspecies  : 0,
247        section   : "spectroscopy",
248        formula   : "this.plasma.r.getMinEnergyDistance()"
249    },
250    {
251        id        : "plasmon_energy",
252        name      : "Plasmon energy",
253        dimension : "energy",
254        nspecies  : 0,
255        section   : "spectroscopy",
256        formula   : "this.plasma.e.getPlasmaFrequencyW()",
257        wikiLink  : "Plasmon"
258    },
259    {
260        id        : "fermi_energy",
261        name      : "Fermi energy",
262        dimension : "energy",
263        nspecies  : 0,
264        section   : "fundamental",
265        formula   : "this.plasma.getFermiEnergy()",
266        wikiLink  : "Fermi_energy"
267    },
268    {
269        id        : "fermi_velocity",
270        name      : "Fermi velocity",
271        dimension : "velocity",
272        nspecies  : 0,
273        section   : "fundamental",
274        formula   : "this.plasma.getFermiVelocity()",
275        wikiLink  : "Fermi_velocity"
276    },
277    {
278        id        : "fermi_length",
279        name      : "Fermi screening length",
280        dimension : "length",
281        nspecies  : 0,
282        section   : "fundamental",
283        formula   : "this.plasma.getFermiLength()",
284        wikiLink  : "Electric-field_screening"
285    },
286    {
287        id        : "chemical_potential",
288        name      : "Chemical potential",
289        dimension : "energy",
290        nspecies  : 1,
291        section   : "fundamental",
292        formula   : "%s1.getChemicalPotential()",
293        wikiLink  : "Chemical_potential"
294    },
295
296    {
297        id        : "mass_density",
298        name      : "Mass density",
299        dimension : "mass_density",
300        nspecies  : 1,
301        section   : "fundamental",
302        formula   : "%s1.getMassDensity()",
303        wikiLink  : "Density"
304    },
305    {
306        id        : "mass_density",
307        name      : "Total mass density",
308        dimension : "mass_density",
309        nspecies  : 0,
310        section   : "fundamental",
311        formula   : "this.plasma.getMassDensity()",
312        wikiLink  : "Density"
313    },
314
315    {
316        id        : "beta",
317        name      : "Beta",
318        dimension : "none",
319        nspecies  : 0,
320        section   : "fundamental",
321        formula   : "this.plasma.getBeta()",
322        wikiLink  : "Beta_(plasma_physics)"
323    },
324   
325    {
326        id        : "transition_wavelength",
327        name      : "Transition wavelength",
328        dimension : "length",
329        nspecies  : 0,
330        section   : "spectroscopy",
331        formula   : "pf.base.Bohr.c/this.plasma.r.getTransitionEnergy()*(2*Math.PI)"
332    },
333    {
334        id        : "transition_frequency",
335        name      : "Transition frequency",
336        dimension : "frequency",
337        nspecies  : 0,
338        section   : "spectroscopy",
339        formula   : "this.plasma.r.getTransitionEnergy()/(2*Math.PI)"
340    },
341
342    {
343        id        : "f_abs",
344        name      : "Oscillator strength",
345        dimension : "none",
346        nspecies  : 0,
347        section   : "spectroscopy",
348        formula   : "this.plasma.r.getOscillatorStrength()",
349        wikiLink  : "Oscillator_strength"
350    },
351    {
352        id        : "A",
353        name      : "Einstein coefficient",
354        dimension : "frequency",
355        nspecies  : 0,
356        section   : "spectroscopy",
357        formula   : "this.plasma.r.getEinsteinA()",
358        wikiLink  : "Einstein_coefficients"
359    },
360   
361    {
362        id        : "stark_quasistaticity",
363        name      : "Stark quasistaticity",
364        dimension : "none",
365        nspecies  : 1,
366        section   : "spectroscopy",
367        formula   : "this.plasma.getStarkQuasistaticity(%s1)"
368    },
369    {
370        id        : "static_to_dynamic_stark_ratio",
371        name      : "Static/dynamic Stark ratio",
372        dimension : "none",
373        nspecies  : 1,
374        section   : "spectroscopy",
375        formula   : "this.plasma.getStarkRatio(%s1)"
376    },
377
378    {
379        id        : "holtsmark_field",
380        name      : "Holtsmark field",
381        dimension : "efield",
382        nspecies  : 1,
383        section   : "spectroscopy",
384        formula   : "%s1.getHoltsmarkField()"
385    },
386
387    {
388        id        : "microfield_frequency",
389        name      : "Microfield frequency",
390        dimension : "frequency",
391        nspecies  : 1,
392        section   : "spectroscopy",
393        formula   : "this.plasma.getMicrofieldFrequency(%s1)"
394    },
395   
396    {
397        id        : "cyclotron_losses",
398        name      : "Cyclotron losses",
399        dimension : "power_density",
400        nspecies  : 1,
401        section   : "radiation",
402        formula   : "%s1.getCyclotronLosses(this.plasma.B)",
403        wikiLink  : "Cyclotron_radiation"
404    },
405   
406    {
407        id        : "free-free_losses",
408        name      : "Free-free losses",
409        dimension : "power_density",
410        nspecies  : 0,
411        section   : "radiation",
412        formula   : "this.plasma.getBremsstrahlungLosses()",
413        wikiLink  : "Bremsstrahlung"
414    },
415   
416    {
417        id        : "dree-free_spectral_density",
418        name      : "Free-free spectral density",
419        dimension : "spectral_power_density",
420        nspecies  : 0,
421        section   : "radiation",
422        formula   : "this.plasma.getBremsstrahlungSpectralDensity()",
423        wikiLink  : "Bremsstrahlung"
424    },
425   
426    {
427        id        : "free-bound_losses",
428        name      : "Free-bound losses",
429        dimension : "power_density",
430        nspecies  : 0,
431        section   : "radiation",
432        formula   : "this.plasma.getFreeBoundLosses()"
433    },
434   
435    {
436        id        : "free-bound_spectral_density",
437        name      : "Free-bound spectral density",
438        dimension : "spectral_power_density",
439        nspecies  : 0,
440        section   : "radiation",
441        formula   : "this.plasma.getFreeBoundSpectralDensity()"
442    },
443   
444    {
445        id        : "ideal_gas_pressure",
446        name      : "Ideal gas pressure",
447        dimension : "pressure",
448        nspecies  : 1,
449        section   : "fundamental",
450        formula   : "%s1.getPressure()",
451        wikiLink  : "Ideal_gas"
452    },
453   
454    {
455        id        : "total_pressure",
456        name      : "Total pressure",
457        dimension : "pressure",
458        nspecies  : 0,
459        section   : "fundamental",
460        formula   : "this.plasma.getPressure()"
461    },
462   
463    {
464        id        : "magnetic_field_pressure",
465        name      : "Magnetic field pressure",
466        dimension : "pressure",
467        nspecies  : 0,
468        section   : "fundamental",
469        formula   : "this.plasma.getMagneticFieldPressure()",
470        wikiLink  : "Magnetic_pressure"
471    },
472   
473    {
474        id        : "coulomb_logarithm",
475        name      : "Coulomb logarithm",
476        dimension : "none",
477        nspecies  : 2,
478        section   : "collisions",
479        formula   : "this.plasma.getCoulombLog(%s1, %s2)",
480        wikiLink  : "Coulomb_collision"
481    },
482
483    {
484        id        : "relaxation_rate",
485        name      : "Relaxation rate",
486        dimension : "frequency",
487        nspecies  : 2,
488        section   : "collisions",
489        formula   : "this.plasma.getRelaxationRate(%s1, %s2)"
490    },
491
492    {
493        id        : "thomson_cross-section",
494        name      : "Thomson cross-section",
495        dimension : "area",
496        nspecies  : 1,
497        section   : "collisions",
498        formula   : "%s1.getThomsonXsTotal()",
499        wikiLink  : "Thomson_cross_section"
500    },
501
502    {
503        id        : "classical_ionization_field",
504        name      : "Classical ionization field",
505        dimension : "efield",
506        nspecies  : 0,
507        section   : "spectroscopy",
508        formula   : "this.plasma.r.getClassicalIonizationField()"
509    },
510    {
511        id        : "inglis_teller_field",
512        name      : "Inglis-Teller field",
513        dimension : "efield",
514        nspecies  : 0,
515        section   : "spectroscopy",
516        formula   : "this.plasma.r.getInglisTellerField()",
517        wikiLink  : "Inglis-Teller_equation"
518    },
519    {
520        id        : "dreicer_field",
521        name      : "Dreicer field",
522        dimension : "efield",
523        nspecies  : 0,
524        section   : "collisions",
525        formula   : "this.plasma.getDreicerField()"
526    }
527);
Note: See TracBrowser for help on using the repository browser.