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
case 0:
lambda = 1.0;
lambda = 0.026;
break;
// ceramic
case 1:
lambda = 1.0;
lambda = 3.0; // anything from 1 to 4
break;
// water
case 2:
lambda = 1.0;
lambda = 0.6;
break;
// air
case 3:
lambda = 1.0;
lambda = 0.026; // depends on temperature actually
break;
default: