Project Questions
Project Questions
The overall domain has been split in small domains, this is what I mean when I say domain, this is how I
did it:
______ ______
| | | |
| 1 | | 7 |
|______|_____________|______|
| | | |
| 2 | 8 | 6 |
| | | |
|______|_____________|______|
|__3___|_____4_______|__5___|
Mesh function is made so that different domains can be created so that the geometry of the problem
can be realized. INPUTS:
OUTPUT:
- mesh_g: matrix with 4 columns containing all the x and y coordinates of all the nodes in a single
domain, information on if a node is on the surface or not (0 no, 1 yes) and the node global
number
- n_el: 1x2 vector containing the number of elements in the x and y directions of the domain
- n_nod_end: global node number of the last node in the domain
this function is repeated 8 times creating a structure which has the different meshes of different
domains. Using this technique allows for simpler calculations later on and also allows for personalization
of the mesh density in different areas of the domain
6
In my program the difference between the two cases is the simple addition of a function called
rad_heat_transfer. After having calculated the convective heat transfer for the surfaces, the program
will send input information to rad_heat_transfer which will basically add to the global matrix and vector
the values of the radiative integrals. Thanks to the linearity of the problem this simple addition will be
enough to consider the radiative heat transfer.