plasmaReacingFoam remove k in physicalProperties and add constants me and pi
This commit is contained in:
parent
e3278f0f1b
commit
b5071526b7
1 changed files with 8 additions and 5 deletions
|
|
@ -17,11 +17,6 @@ dimensionedScalar epsilon0
|
|||
physicalProperties.lookup("epsilon0")
|
||||
);
|
||||
|
||||
dimensionedScalar k
|
||||
(
|
||||
physicalProperties.lookup("k")
|
||||
);
|
||||
|
||||
CSV<scalar> mueN("mueN", physicalProperties);
|
||||
CSV<scalar> DeN("DeN", physicalProperties);
|
||||
CSV<scalar> TeOfEn("TeOfEn", physicalProperties);
|
||||
|
|
@ -56,13 +51,21 @@ thermo.validate(args.executable(), "h", "e");
|
|||
volScalarField& qc = thermo.qc();
|
||||
basicMultiComponentMixture& composition = thermo.composition();
|
||||
|
||||
//- Electron mass (default in [kg])
|
||||
const dimensionedScalar eMass = constant::atomic::me;
|
||||
|
||||
//- Elementary charge (default in [C])
|
||||
const dimensionedScalar eCharge = constant::electromagnetic::e;
|
||||
|
||||
//- Avogadro number (default in [1/mol])
|
||||
const dimensionedScalar NA = constant::physicoChemical::NA;
|
||||
|
||||
//- Universal gas constant (default in [J/mol/K])
|
||||
const dimensionedScalar R = constant::physicoChemical::R;
|
||||
|
||||
//- Pi
|
||||
const scalar pi = constant::mathematical::pi;
|
||||
|
||||
PtrList<volScalarField>& Y = composition.Y();
|
||||
|
||||
word inertSpecie(thermo.lookup("inertSpecie"));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue