diff --git a/testApp/chemFoam.C b/testApp/chemFoam.C index 2a1567d..3d0675a 100644 --- a/testApp/chemFoam.C +++ b/testApp/chemFoam.C @@ -245,7 +245,21 @@ int main(int argc, char *argv[]) ) ; - Info << kSp << nl << endl; + forAll(thermo.composition().species(), k) + { + XY = 0.0; + XY[k] = 1.0; + gas_.setState_TPY(thermo.T()[0], p[0], XY.data()); + + logWriter + ( + "k_"+thermo.composition().species()[k], + thermo.T()[0], + kSp[k], + tr_->thermalConductivity() + ) + ; + } } Info << logWriter.numErrors() << " / " << logWriter.numTests() << " End" << nl << endl;