Changeset 363:b11b9c8f6ebd


Ignore:
Timestamp:
May 14, 2015, 6:12:15 PM (9 years ago)
Author:
Evgeny Stambulchik <Evgeny.Stambulchik@…>
Branch:
default
Phase:
public
Message:

Renamed getStarkHwhm() to getTotalStarkHwhm().

Location:
source
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • source/class/pf/Plasma.js

    r317 r363  
    132132        },
    133133       
    134         getStarkHwhm: function()
     134        getTotalStarkHwhm: function()
    135135        {
    136136            var w = 0;
     
    155155        getTotalFwhm: function()
    156156        {
    157             var s_hwhm = this.getStarkHwhm();
     157            var s_hwhm = this.getTotalStarkHwhm();
    158158            var z_hwhm = this.getZeemanSplitting();
    159159            var d_hwhm = this.r.getDopplerHwhm();
  • source/entities.js

    r354 r363  
    209209        nspecies  : 0,
    210210        section   : "spectroscopy",
    211         formula   : "return 2*this.plasma.getStarkHwhm()",
     211        formula   : "return 2*this.plasma.getTotalStarkHwhm()",
    212212        wikiLink  : "Stark_effect"
    213213    },
     
    218218        nspecies  : 0,
    219219        section   : "spectroscopy",
    220         formula   : "return this.plasma.dE2dWl(2*this.plasma.getStarkHwhm())",
     220        formula   : "return this.plasma.dE2dWl(2*this.plasma.getTotalStarkHwhm())",
    221221        wikiLink  : "Stark_effect"
    222222    },
Note: See TracChangeset for help on using the changeset viewer.