Skip to content
Snippets Groups Projects
Commit 76dc6453 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

uncomment conv+rad bc

parent bb5ec1e7
No related branches found
No related tags found
No related merge requests found
Pipeline #8293 passed
...@@ -42,6 +42,10 @@ Jacobian { ...@@ -42,6 +42,10 @@ Jacobian {
{ Region All ; Jacobian Vol ; } { Region All ; Jacobian Vol ; }
} }
} }
{ Name Sur ;
Case { { Region All ; Jacobian Sur ; }
}
}
} }
......
...@@ -10,6 +10,14 @@ FunctionSpace { ...@@ -10,6 +10,14 @@ FunctionSpace {
} }
} }
Group {
DefineGroup [ SurfaceConv_The, SurfaceRad_The ];
}
Function {
DefineFunction [ h, T0, rad ];
}
Formulation { Formulation {
{ Name Thermal_T ; Type FemEquation ; { Name Thermal_T ; Type FemEquation ;
Quantity { Quantity {
...@@ -26,18 +34,16 @@ Formulation { ...@@ -26,18 +34,16 @@ Formulation {
Galerkin { [ - /* 0.5 * */ 1/sigma[] * SquNorm[sigma[]*{d v}] , {T} ] ; Galerkin { [ - /* 0.5 * */ 1/sigma[] * SquNorm[sigma[]*{d v}] , {T} ] ;
In Domain_The ; Integration GradGrad ; Jacobian Vol ; } In Domain_The ; Integration GradGrad ; Jacobian Vol ; }
/*
Galerkin { [ h[] * Dof{T} , {T} ] ; // Convection boundary condition Galerkin { [ h[] * Dof{T} , {T} ] ; // Convection boundary condition
In SurfaceConv_The ; Integration GradGrad ; Jacobian Sur ; } In SurfaceConv_The ; Integration GradGrad ; Jacobian Sur ; }
Galerkin { [ -h[] * TemperatureConv[] , {T} ] ; Galerkin { [ -h[] * T0[] , {T} ] ;
In SurfaceConv_The ; Integration GradGrad ; Jacobian Sur ; }
*/
/*
Galerkin { [ rad[] * {T}^4 , {T} ] ; // Convection boundary condition
In SurfaceConv_The ; Integration GradGrad ; Jacobian Sur ; } In SurfaceConv_The ; Integration GradGrad ; Jacobian Sur ; }
Galerkin { [ -rad[] * TemperatureConv[]^4 , {T} ] ;
In SurfaceConv_The ; Integration GradGrad ; Jacobian Sur ; } Galerkin { [ rad[] * {T}^4 , {T} ] ; // Radiation boundary condition
*/ In SurfaceRad_The ; Integration GradGrad ; Jacobian Sur ; }
Galerkin { [ -rad[] * T0[]^4 , {T} ] ;
In SurfaceRad_The ; Integration GradGrad ; Jacobian Sur ; }
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment