Changeset 312:93bdfc0e3904


Ignore:
Timestamp:
Jul 1, 2012, 4:11:37 PM (12 years ago)
Author:
Evgeny Stambulchik <Evgeny.Stambulchik@…>
Branch:
default
Phase:
public
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/entities.js

    r310 r312  
    136136    },
    137137    {
     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    {
    138146        id        : "Fine_structure",
    139147        name      : "Fine structure",
     
    145153    },
    146154    {
     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    {
    147164        id        : "doppler_fwhm",
    148165        name      : "Doppler FWHM",
     
    154171    },
    155172    {
     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    {
    156182        id        : "zeeman_splitting",
    157183        name      : "Zeeman splitting",
     
    162188    },
    163189    {
     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    {
    164198        id        : "total_stark_fwhm",
    165199        name      : "Total Stark FWHM",
     
    168202        section   : "spectroscopy",
    169203        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())"
    170212    },
    171213    {
Note: See TracChangeset for help on using the changeset viewer.