Changeset 227:a65b279dbaba


Ignore:
Timestamp:
Mar 17, 2011, 6:33:14 PM (13 years ago)
Author:
fnevgeny
Branch:
default
Phase:
public
Message:

Inglis-Teller field.

Location:
source
Files:
2 edited

Legend:

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

    r225 r227  
    351351        },
    352352       
     353        getInglisTellerField: function()
     354        {
     355            var Z_core = this.r.getQ() + 1;
     356            var n = this.n_u;
     357           
     358            return Math.pow(Z_core, 3)*
     359                (2*n + 1)/(6*Math.pow(n, 4)*(n + 1)*(n + 1));
     360        },
     361       
    353362
    354363        checkParameters: function()
  • source/entities.js

    r226 r227  
    427427        section   : "spectroscopy",
    428428        formula   : "this.plasma.getClassicalIonizationField()"
     429    },
     430    {
     431        id        : "inglis_teller_field",
     432        name      : "Inglis-Teller field",
     433        dimension : "efield",
     434        nspecies  : 0,
     435        section   : "spectroscopy",
     436        formula   : "this.plasma.getInglisTellerField()",
     437        wikiLink  : "Inglis-Teller_equation"
    429438    }
    430439);
Note: See TracChangeset for help on using the changeset viewer.