tweaked parameters to be more realistic -> coffee cup cools down early (as expected)
This commit is contained in:
parent
2d407097db
commit
5ae5e5ed03
5 changed files with 10742 additions and 10731 deletions
|
|
@ -434,7 +434,8 @@ double FEM_Matrix::ThermalConductivity(const int subdomain)
|
|||
{
|
||||
// ceramic mug
|
||||
case 0:
|
||||
lambda = 10.0; // anything from 1 to 4
|
||||
//lambda = 5.0;
|
||||
lambda = 30.0;
|
||||
break;
|
||||
|
||||
// water
|
||||
|
|
@ -673,16 +674,16 @@ double FEM_Matrix::Heat_transfer_coefficient(const int subdomain)
|
|||
{
|
||||
double alpha = 0.0;
|
||||
|
||||
switch (subdomain)
|
||||
switch (subdomain) // radiation!
|
||||
{
|
||||
// ceramic to air
|
||||
case 0:
|
||||
alpha = 1.0;
|
||||
alpha = 15.0;
|
||||
break;
|
||||
|
||||
// air to air (Free Convection Gas - Free Convection Gas : U = 1 - 2 W/m2K (typical window, room to outside air through glass))
|
||||
case 2:
|
||||
alpha = 15.0;
|
||||
alpha = 30.0;
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue