source: source/entities.js @ 219:fe7cb8676e83

Last change on this file since 219:fe7cb8676e83 was 219:fe7cb8676e83, checked in by fnevgeny, 13 years ago

Added Dreicer field.

File size: 11.6 KB
RevLine 
[70]1var plasma_entities = new Array(
2    {
[181]3        id        : "plasma_frequency",
[70]4        name      : "Plasma frequency",
5        dimension : "frequency",
6        nspecies  : 1,
[210]7        section   : "waves",
[96]8        formula   : "%s1.getPlasmaFrequency()",
9        wikiLink  : "Plasma_frequency"
[70]10    },
11    {
[181]12        id        : "gyrofrequency",
[70]13        name      : "Gyrofrequency",
14        dimension : "frequency",
15        nspecies  : 1,
16        section   : "fundamental",
[144]17        formula   : "%s1.getGyroFrequency(this.plasma.B)",
[96]18        wikiLink  : "Gyrofrequency"
[70]19    },
20
21    {
[181]22        id        : "mean_interparticle_distance",
[119]23        name      : "Mean interparticle distance",
24        dimension : "length",
25        nspecies  : 1,
26        section   : "fundamental",
[191]27        formula   : "%s1.getMeanDistance()",
28        wikiLink  : "Mean_inter-particle_distance"
[119]29    },
30    {
[181]31        id        : "debye_length",
[70]32        name      : "Debye length",
33        dimension : "length",
34        nspecies  : 1,
35        section   : "fundamental",
[96]36        formula   : "%s1.getDebyeLength()",
37        wikiLink  : "Debye_length"
[70]38    },
39    {
[181]40        id        : "full_debye_length",
[70]41        name      : "Full Debye length",
42        dimension : "length",
43        nspecies  : 1,
44        section   : "fundamental",
[144]45        formula   : "this.plasma.getFullDebyeLength(%s1)",
[96]46        wikiLink  : "Debye_length"
[70]47    },
48    {
[181]49        id        : "gyroradius",
[119]50        name      : "Gyroradius",
[70]51        dimension : "length",
52        nspecies  : 1,
53        section   : "fundamental",
[144]54        formula   : "%s1.getGyroRadius(this.plasma.B)",
[119]55        wikiLink  : "Gyroradius"
[70]56    },
57    {
[181]58        id        : "distance_of_minimal_approach",
[70]59        name      : "Distance of minimal approach",
60        dimension : "length",
61        nspecies  : 1,
62        section   : "fundamental",
63        formula   : "%s1.getMinApproachDistance()"
64    },
65    {
[181]66        id        : "inertial_length",
[70]67        name      : "Inertial length",
68        dimension : "length",
69        nspecies  : 1,
[210]70        section   : "waves",
[96]71        formula   : "%s1.getInertialLength()",
72        wikiLink  : "Inertial_length"
[70]73    },
[119]74    {
[181]75        id        : "de_broglie_wavelength",
[119]76        name      : "De Broglie wavelength",
77        dimension : "length",
78        nspecies  : 1,
79        section   : "fundamental",
80        formula   : "%s1.getDeBroglieLength()",
81        wikiLink  : "DeBroglie_wavelength"
82    },
[70]83
84    {
[181]85        id        : "thermal_velocity",
[70]86        name      : "Thermal velocity",
87        dimension : "velocity",
88        nspecies  : 1,
89        section   : "fundamental",
[96]90        formula   : "%s1.getThermalVelocity()",
91        wikiLink  : "Thermal_velocity"
[70]92    },
93    {
[181]94        id        : "alfven_velocity",
[70]95        name      : "Alfven velocity",
96        dimension : "velocity",
[101]97        nspecies  : 0,
[103]98        section   : "waves",
[144]99        formula   : "this.plasma.getAlfvenVelocity(this.plasma.B)",
[96]100        wikiLink  : "Alfven_velocity"
[70]101    },
102
103    {
[181]104        id        : "coupling_parameter",
[70]105        name      : "Coupling parameter",
106        dimension : "none",
107        nspecies  : 1,
108        section   : "fundamental",
109        formula   : "%s1.getCoupling()"
110    },
111    {
[181]112        id        : "typical_debye_screening",
[70]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    {
[181]122        id        : "transition_energy",
[70]123        name      : "Transition energy",
124        dimension : "energy",
125        nspecies  : 0,
126        section   : "spectroscopy",
[197]127        formula   : "this.plasma.getTransitionEnergy()"
[70]128    },
129    {
[181]130        id        : "natural_linewidth",
[70]131        name      : "Natural linewidth",
132        dimension : "energy",
133        nspecies  : 0,
134        section   : "spectroscopy",
[144]135        formula   : "this.plasma.getNaturalWidth()"
[70]136    },
137    {
[190]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    {
[181]147        id        : "doppler_fwhm",
[70]148        name      : "Doppler FWHM",
149        dimension : "energy",
150        nspecies  : 0,
151        section   : "spectroscopy",
[144]152        formula   : "2*this.plasma.getDopplerHwhm()",
[96]153        wikiLink  : "Doppler_broadening"
[70]154    },
155    {
[181]156        id        : "zeeman_splitting",
[70]157        name      : "Zeeman splitting",
158        dimension : "energy",
159        nspecies  : 0,
160        section   : "spectroscopy",
[144]161        formula   : "2*this.plasma.getZeemanSplitting()"
[70]162    },
163    {
[181]164        id        : "total_stark_fwhm",
[70]165        name      : "Total Stark FWHM",
166        dimension : "energy",
167        nspecies  : 0,
168        section   : "spectroscopy",
[144]169        formula   : "2*this.plasma.getStarkHwhm()"
[70]170    },
171    {
[181]172        id        : "stark_fwhm",
[119]173        name      : "Stark FWHM",
174        dimension : "energy",
175        nspecies  : 1,
176        prepos    : "due to",
177        section   : "spectroscopy",
[144]178        formula   : "2*this.plasma.getQsHwhm(%s1)*this.plasma.getStarkQuasistaticity(%s1)"
[119]179    },
180
181    {
[181]182        id        : "qs_stark_fwhm",
[70]183        name      : "QS Stark FWHM",
184        dimension : "energy",
185        nspecies  : 1,
[87]186        prepos    : "due to",
[70]187        section   : "spectroscopy",
[144]188        formula   : "2*this.plasma.getQsHwhm(%s1)"
[70]189    },
190
191    {
[181]192        id        : "dynamic_stark_range",
[70]193        name      : "Dynamic Stark range",
194        dimension : "energy",
195        nspecies  : 1,
196        section   : "spectroscopy",
[197]197        formula   : "this.plasma.getMicrofieldFrequency(%s1)"
[70]198    },
199
200    {
[181]201        id        : "minimal_energy_distance",
[70]202        name      : "Minimal energy distance",
203        dimension : "energy",
204        nspecies  : 0,
205        section   : "spectroscopy",
[144]206        formula   : "this.plasma.getMinEnergyDistance()"
[70]207    },
[75]208    {
[181]209        id        : "fermi_energy",
[75]210        name      : "Fermi energy",
211        dimension : "energy",
212        nspecies  : 0,
213        section   : "fundamental",
[144]214        formula   : "this.plasma.getFermiEnergy()",
[96]215        wikiLink  : "Fermi_energy"
[75]216    },
[135]217    {
[181]218        id        : "chemical_potential",
[135]219        name      : "Chemical potential",
220        dimension : "energy",
221        nspecies  : 1,
222        section   : "fundamental",
223        formula   : "%s1.getChemicalPotential()",
224        wikiLink  : "Chemical_potential"
225    },
[70]226
227    {
[181]228        id        : "beta",
[119]229        name      : "Beta",
[70]230        dimension : "none",
[119]231        nspecies  : 0,
232        section   : "fundamental",
[144]233        formula   : "this.plasma.getBeta()",
[119]234        wikiLink  : "Beta_(plasma_physics)"
[70]235    },
[119]236   
[70]237    {
[181]238        id        : "stark_quasistaticity",
[70]239        name      : "Stark quasistaticity",
240        dimension : "none",
241        nspecies  : 1,
242        section   : "spectroscopy",
[144]243        formula   : "this.plasma.getStarkQuasistaticity(%s1)"
[70]244    },
[119]245    {
[181]246        id        : "static_to_dynamic_stark_ratio",
[119]247        name      : "Static/dynamic Stark ratio",
248        dimension : "none",
249        nspecies  : 1,
250        section   : "spectroscopy",
[144]251        formula   : "this.plasma.getStarkRatio(%s1)"
[119]252    },
[70]253
254    {
[181]255        id        : "transition_wavelength",
[70]256        name      : "Transition wavelength",
257        dimension : "length",
258        nspecies  : 0,
259        section   : "spectroscopy",
[197]260        formula   : "pf.base.Bohr.c/this.plasma.getTransitionEnergy()*(2*Math.PI)"
[70]261    },
262
263    {
[181]264        id        : "transition_frequency",
[70]265        name      : "Transition frequency",
266        dimension : "frequency",
267        nspecies  : 0,
268        section   : "spectroscopy",
[197]269        formula   : "this.plasma.getTransitionEnergy()/(2*Math.PI)"
[70]270    },
271
272    {
[181]273        id        : "holtsmark_field",
[70]274        name      : "Holtsmark field",
275        dimension : "efield",
276        nspecies  : 1,
277        section   : "spectroscopy",
278        formula   : "%s1.getHoltsmarkField()"
279    },
280
281    {
[181]282        id        : "microfield_frequency",
[70]283        name      : "Microfield frequency",
284        dimension : "frequency",
285        nspecies  : 1,
286        section   : "spectroscopy",
[144]287        formula   : "this.plasma.getMicrofieldFrequency(%s1)"
[70]288    },
289   
290    {
[181]291        id        : "cyclotron_losses",
[70]292        name      : "Cyclotron losses",
293        dimension : "power_density",
294        nspecies  : 1,
295        section   : "radiation",
[144]296        formula   : "%s1.getCyclotronLosses(this.plasma.B)",
[96]297        wikiLink  : "Cyclotron_radiation"
[70]298    },
299   
300    {
[181]301        id        : "free-free_losses",
[70]302        name      : "Free-free losses",
303        dimension : "power_density",
304        nspecies  : 0,
305        section   : "radiation",
[192]306        formula   : "this.plasma.getBremsstrahlungLosses()",
307        wikiLink  : "Bremsstrahlung"
[70]308    },
309   
310    {
[181]311        id        : "dree-free_spectral_density",
[70]312        name      : "Free-free spectral density",
313        dimension : "spectral_power_density",
314        nspecies  : 0,
315        section   : "radiation",
[192]316        formula   : "this.plasma.getBremsstrahlungSpectralDensity()",
317        wikiLink  : "Bremsstrahlung"
[70]318    },
319   
320    {
[181]321        id        : "free-bound_losses",
[70]322        name      : "Free-bound losses",
323        dimension : "power_density",
324        nspecies  : 0,
325        section   : "radiation",
[144]326        formula   : "this.plasma.getFreeBoundLosses()"
[70]327    },
328   
329    {
[181]330        id        : "free-bound_spectral_density",
[70]331        name      : "Free-bound spectral density",
332        dimension : "spectral_power_density",
333        nspecies  : 0,
334        section   : "radiation",
[144]335        formula   : "this.plasma.getFreeBoundSpectralDensity()"
[70]336    },
337   
338    {
[181]339        id        : "bound-bound_losses",
[70]340        name      : "Bound-bound losses",
341        dimension : "power_density",
342        nspecies  : 0,
343        section   : "radiation",
[144]344        formula   : "this.plasma.getBoundBoundLosses()"
[70]345    },
346   
347    {
[181]348        id        : "ideal_gas_pressure",
[70]349        name      : "Ideal gas pressure",
350        dimension : "pressure",
351        nspecies  : 1,
352        section   : "fundamental",
[96]353        formula   : "%s1.getPressure()",
354        wikiLink  : "Ideal_gas"
[70]355    },
356   
357    {
[181]358        id        : "total_pressure",
[70]359        name      : "Total pressure",
360        dimension : "pressure",
361        nspecies  : 0,
362        section   : "fundamental",
[144]363        formula   : "this.plasma.getPressure()"
[70]364    },
365   
366    {
[181]367        id        : "magnetic_field_pressure",
[70]368        name      : "Magnetic field pressure",
369        dimension : "pressure",
370        nspecies  : 0,
371        section   : "fundamental",
[144]372        formula   : "this.plasma.getMagneticFieldPressure()",
[96]373        wikiLink  : "Magnetic_pressure"
[70]374    },
375   
376    {
[181]377        id        : "coulomb_logarithm",
[102]378        name      : "Coulomb logarithm",
379        dimension : "none",
[214]380        nspecies  : 2,
[103]381        section   : "collisions",
[215]382        formula   : "this.plasma.getCoulombLog(%s1, %s2)",
[192]383        wikiLink  : "Coulomb_collision"
[102]384    },
385
386    {
[218]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    {
[181]396        id        : "thomson_cross-section",
[70]397        name      : "Thomson cross-section",
398        dimension : "area",
399        nspecies  : 1,
400        section   : "collisions",
[96]401        formula   : "%s1.getThomsonXsTotal()",
402        wikiLink  : "Thomson_cross_section"
[219]403    },
404
405    {
406        id        : "dreicer_field",
407        name      : "Dreicer field",
408        dimension : "efield",
409        nspecies  : 0,
410        section   : "collisions",
411        formula   : "this.plasma.getDreicerField()"
[70]412    }
413);
Note: See TracBrowser for help on using the repository browser.