1 Info<< "Reading thermal properties\n" << endl;
3 IOdictionary thermalProperties
15 Switch thermalStress(thermalProperties.lookup("thermalStress"));
17 dimensionedScalar threeKalpha
20 dimensionSet(0, 2, -2 , -1, 0),
27 dimensionSet(0, 2, -1 , 0, 0),
33 dimensionedScalar C(thermalProperties.lookup("C"));
34 dimensionedScalar rhoK(thermalProperties.lookup("k"));
35 dimensionedScalar alpha(thermalProperties.lookup("alpha"));
37 Info<< "Normalising k : k/rho\n" << endl;
38 dimensionedScalar k = rhoK/rho;
40 Info<< "Calculating thermal coefficients\n" << endl;
42 threeKalpha = threeK*alpha;
43 DT.value() = (k/C).value();
45 Info<< "threeKalpha = " << threeKalpha.value() << " Pa/rho\n";