*** empty log message ***
This commit is contained in:
parent
783ea0a254
commit
27056f0ee4
4 changed files with 11 additions and 3 deletions
3
Cantera/src/spectra/.cvsignore
Normal file
3
Cantera/src/spectra/.cvsignore
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
*.d
|
||||
Makefile
|
||||
.depends
|
||||
|
|
@ -41,7 +41,8 @@ namespace Cantera {
|
|||
}
|
||||
|
||||
/**
|
||||
* The number of quantum states with the same J.
|
||||
* The number of quantum states with the same J. For a
|
||||
* quantum-mechanical rotor, this is simply 2J+1.
|
||||
*/
|
||||
int Rotor::degeneracy(int J) {
|
||||
return 2*J + 1;
|
||||
|
|
@ -53,7 +54,7 @@ namespace Cantera {
|
|||
* If T/Trot > 100, then the classical value (T/Trot) is
|
||||
* is returned. Otherwise, it is computed as a sum
|
||||
* \f[
|
||||
* z = \sum_{J=0}^{J_{max} (2J + 1) \exp(-E(J)/kT)
|
||||
* z = \sum_{J=0}^{J_{max}} (2J + 1) \exp(-E(J)/kT)
|
||||
* \f]
|
||||
*/
|
||||
doublereal Rotor::partitionFunction(doublereal T, int cutoff) {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,9 @@
|
|||
*
|
||||
* These classes are used to simulate the absorption and emission spectra of
|
||||
* molecules.
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* @ingroup thermoprops
|
||||
*/
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1,3 @@
|
|||
spectratest
|
||||
*.csv
|
||||
Makefile
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue