source: source/entities.js @ 369:455f4d224887

Last change on this file since 369:455f4d224887 was 369:455f4d224887, checked in by Evgeny Stambulchik <Evgeny.Stambulchik@…>, 7 years ago

Microfield frequency should be frequency units, not circular freq.

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