thermal conductivity coeffs
This commit is contained in:
parent
888edf6624
commit
6039802b9f
1 changed files with 4 additions and 4 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue