source: source/entities.js @ 218:0235fefcfb61

Last change on this file since 218:0235fefcfb61 was 218:0235fefcfb61, checked in by fnevgeny, 13 years ago

Implemented 2-species relaxation rate.

File size: 11.4 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        : "mean_interparticle_distance",
23        name      : "Mean interparticle distance",
24        dimension : "length",
25        nspecies  : 1,
26        section   : "fundamental",
27        formula   : "%s1.getMeanDistance()",
28        wikiLink  : "Mean_inter-particle_distance"
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.getMeanDistance()/%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.getTransitionEnergy()"
128    },
129    {
130        id        : "natural_linewidth",
131        name      : "Natural linewidth",
132        dimension : "energy",
133        nspecies  : 0,
134        section   : "spectroscopy",
135        formula   : "this.plasma.getNaturalWidth()"
136    },
137    {
138        id        : "Fine_structure",
139        name      : "Fine structure",
140        dimension : "energy",
141        nspecies  : 0,
142        section   : "spectroscopy",
143        formula   : "this.plasma.getFineStructure()",
144        wikiLink  : "Fine_structure"
145    },
146    {
147        id        : "doppler_fwhm",
148        name      : "Doppler FWHM",
149        dimension : "energy",
150        nspecies  : 0,
151        section   : "spectroscopy",
152        formula   : "2*this.plasma.getDopplerHwhm()",
153        wikiLink  : "Doppler_broadening"
154    },
155    {
156        id        : "zeeman_splitting",
157        name      : "Zeeman splitting",
158        dimension : "energy",
159        nspecies  : 0,
160        section   : "spectroscopy",
161        formula   : "2*this.plasma.getZeemanSplitting()"
162    },
163    {
164        id        : "total_stark_fwhm",
165        name      : "Total Stark FWHM",
166        dimension : "energy",
167        nspecies  : 0,
168        section   : "spectroscopy",
169        formula   : "2*this.plasma.getStarkHwhm()"
170    },
171    {
172        id        : "stark_fwhm",
173        name      : "Stark FWHM",
174        dimension : "energy",
175        nspecies  : 1,
176        prepos    : "due to",
177        section   : "spectroscopy",
178        formula   : "2*this.plasma.getQsHwhm(%s1)*this.plasma.getStarkQuasistaticity(%s1)"
179    },
180
181    {
182        id        : "qs_stark_fwhm",
183        name      : "QS Stark FWHM",
184        dimension : "energy",
185        nspecies  : 1,
186        prepos    : "due to",
187        section   : "spectroscopy",
188        formula   : "2*this.plasma.getQsHwhm(%s1)"
189    },
190
191    {
192        id        : "dynamic_stark_range",
193        name      : "Dynamic Stark range",
194        dimension : "energy",
195        nspecies  : 1,
196        section   : "spectroscopy",
197        formula   : "this.plasma.getMicrofieldFrequency(%s1)"
198    },
199
200    {
201        id        : "minimal_energy_distance",
202        name      : "Minimal energy distance",
203        dimension : "energy",
204        nspecies  : 0,
205        section   : "spectroscopy",
206        formula   : "this.plasma.getMinEnergyDistance()"
207    },
208    {
209        id        : "fermi_energy",
210        name      : "Fermi energy",
211        dimension : "energy",
212        nspecies  : 0,
213        section   : "fundamental",
214        formula   : "this.plasma.getFermiEnergy()",
215        wikiLink  : "Fermi_energy"
216    },
217    {
218        id        : "chemical_potential",
219        name      : "Chemical potential",
220        dimension : "energy",
221        nspecies  : 1,
222        section   : "fundamental",
223        formula   : "%s1.getChemicalPotential()",
224        wikiLink  : "Chemical_potential"
225    },
226
227    {
228        id        : "beta",
229        name      : "Beta",
230        dimension : "none",
231        nspecies  : 0,
232        section   : "fundamental",
233        formula   : "this.plasma.getBeta()",
234        wikiLink  : "Beta_(plasma_physics)"
235    },
236   
237    {
238        id        : "stark_quasistaticity",
239        name      : "Stark quasistaticity",
240        dimension : "none",
241        nspecies  : 1,
242        section   : "spectroscopy",
243        formula   : "this.plasma.getStarkQuasistaticity(%s1)"
244    },
245    {
246        id        : "static_to_dynamic_stark_ratio",
247        name      : "Static/dynamic Stark ratio",
248        dimension : "none",
249        nspecies  : 1,
250        section   : "spectroscopy",
251        formula   : "this.plasma.getStarkRatio(%s1)"
252    },
253
254    {
255        id        : "transition_wavelength",
256        name      : "Transition wavelength",
257        dimension : "length",
258        nspecies  : 0,
259        section   : "spectroscopy",
260        formula   : "pf.base.Bohr.c/this.plasma.getTransitionEnergy()*(2*Math.PI)"
261    },
262
263    {
264        id        : "transition_frequency",
265        name      : "Transition frequency",
266        dimension : "frequency",
267        nspecies  : 0,
268        section   : "spectroscopy",
269        formula   : "this.plasma.getTransitionEnergy()/(2*Math.PI)"
270    },
271
272    {
273        id        : "holtsmark_field",
274        name      : "Holtsmark field",
275        dimension : "efield",
276        nspecies  : 1,
277        section   : "spectroscopy",
278        formula   : "%s1.getHoltsmarkField()"
279    },
280
281    {
282        id        : "microfield_frequency",
283        name      : "Microfield frequency",
284        dimension : "frequency",
285        nspecies  : 1,
286        section   : "spectroscopy",
287        formula   : "this.plasma.getMicrofieldFrequency(%s1)"
288    },
289   
290    {
291        id        : "cyclotron_losses",
292        name      : "Cyclotron losses",
293        dimension : "power_density",
294        nspecies  : 1,
295        section   : "radiation",
296        formula   : "%s1.getCyclotronLosses(this.plasma.B)",
297        wikiLink  : "Cyclotron_radiation"
298    },
299   
300    {
301        id        : "free-free_losses",
302        name      : "Free-free losses",
303        dimension : "power_density",
304        nspecies  : 0,
305        section   : "radiation",
306        formula   : "this.plasma.getBremsstrahlungLosses()",
307        wikiLink  : "Bremsstrahlung"
308    },
309   
310    {
311        id        : "dree-free_spectral_density",
312        name      : "Free-free spectral density",
313        dimension : "spectral_power_density",
314        nspecies  : 0,
315        section   : "radiation",
316        formula   : "this.plasma.getBremsstrahlungSpectralDensity()",
317        wikiLink  : "Bremsstrahlung"
318    },
319   
320    {
321        id        : "free-bound_losses",
322        name      : "Free-bound losses",
323        dimension : "power_density",
324        nspecies  : 0,
325        section   : "radiation",
326        formula   : "this.plasma.getFreeBoundLosses()"
327    },
328   
329    {
330        id        : "free-bound_spectral_density",
331        name      : "Free-bound spectral density",
332        dimension : "spectral_power_density",
333        nspecies  : 0,
334        section   : "radiation",
335        formula   : "this.plasma.getFreeBoundSpectralDensity()"
336    },
337   
338    {
339        id        : "bound-bound_losses",
340        name      : "Bound-bound losses",
341        dimension : "power_density",
342        nspecies  : 0,
343        section   : "radiation",
344        formula   : "this.plasma.getBoundBoundLosses()"
345    },
346   
347    {
348        id        : "ideal_gas_pressure",
349        name      : "Ideal gas pressure",
350        dimension : "pressure",
351        nspecies  : 1,
352        section   : "fundamental",
353        formula   : "%s1.getPressure()",
354        wikiLink  : "Ideal_gas"
355    },
356   
357    {
358        id        : "total_pressure",
359        name      : "Total pressure",
360        dimension : "pressure",
361        nspecies  : 0,
362        section   : "fundamental",
363        formula   : "this.plasma.getPressure()"
364    },
365   
366    {
367        id        : "magnetic_field_pressure",
368        name      : "Magnetic field pressure",
369        dimension : "pressure",
370        nspecies  : 0,
371        section   : "fundamental",
372        formula   : "this.plasma.getMagneticFieldPressure()",
373        wikiLink  : "Magnetic_pressure"
374    },
375   
376    {
377        id        : "coulomb_logarithm",
378        name      : "Coulomb logarithm",
379        dimension : "none",
380        nspecies  : 2,
381        section   : "collisions",
382        formula   : "this.plasma.getCoulombLog(%s1, %s2)",
383        wikiLink  : "Coulomb_collision"
384    },
385
386    {
387        id        : "relaxation_rate",
388        name      : "Relaxation rate",
389        dimension : "frequency",
390        nspecies  : 2,
391        section   : "collisions",
392        formula   : "this.plasma.getRelaxationRate(%s1, %s2)"
393    },
394
395    {
396        id        : "thomson_cross-section",
397        name      : "Thomson cross-section",
398        dimension : "area",
399        nspecies  : 1,
400        section   : "collisions",
401        formula   : "%s1.getThomsonXsTotal()",
402        wikiLink  : "Thomson_cross_section"
403    }
404);
Note: See TracBrowser for help on using the repository browser.