thermal conductivity coeffs

This commit is contained in:
dino.celebic 2026-01-23 23:38:50 +01:00
commit 6039802b9f

View file

@ -438,22 +438,22 @@ double FEM_Matrix::Thermal_coefficient(const int subdomain)
{ {
// outside // outside
case 0: case 0:
lambda = 1.0; lambda = 0.026;
break; break;
// ceramic // ceramic
case 1: case 1:
lambda = 1.0; lambda = 3.0; // anything from 1 to 4
break; break;
// water // water
case 2: case 2:
lambda = 1.0; lambda = 0.6;
break; break;
// air // air
case 3: case 3:
lambda = 1.0; lambda = 0.026; // depends on temperature actually
break; break;
default: default: