Salome HOME
Updated GUI documentation
[tools/solverlab.git] / CoreFlows / Documentation / PhysicalModels / DiffusionEq.ipynb
1 {
2  "cells": [
3   {
4    "cell_type": "code",
5    "execution_count": 2,
6    "metadata": {},
7    "outputs": [
8     {
9      "data": {
10       "text/markdown": [
11        "The diffusion equation\n",
12        "======================\n",
13        "\n",
14        "$$\n",
15        " \\partial_t T =d\\triangle T +\\frac{ \\Phi+\\lambda_{sf}(T_f-T)}{\\rho c_p}\n",
16        "$$\n",
17        "where\n",
18        "- $T$ the main unknown is the solid temperature field\n",
19        "- $\\rho$ is the solid density assumed constant and possibly set by the user\n",
20        "- $c_p$ is the solid specific heat, possibly set provided by the user and assumed constant\n",
21        "- $\\lambda$ is the solid thermal conductivity possibly set provided by the user\n",
22        "- $d=\\frac{\\lambda}{\\rho c_p}$ is the solid diffusivity\n",
23        "- $\\lambda_{sf}$ is the fluid-solid heat transfer coefficient provided by the user\n",
24        "- $\\Phi$ is the heat source term if explicitely known\n",
25        "- $T_f$ is the fluid temperature field provided by the user\n",
26        "\n",
27        "The class [DiffusionEquation](../../Models/inc/DiffusionEquation.hxx) implementing a scalar diffusion equation for the temperature in a solid. The default values for $\\rho, c_p, \\lambda$ are those of Uranium oxyde at $900 K$.  \n",
28        "\n",
29        "\n",
30        "\\subpage ExampleDiffusionEqPage \"Here are C and Python example scripts\"\n",
31        "\n",
32        "\n"
33       ],
34       "text/plain": [
35        "<IPython.core.display.Markdown object>"
36       ]
37      },
38      "metadata": {},
39      "output_type": "display_data"
40     }
41    ],
42    "source": [
43     "from IPython.display import display, Markdown\n",
44     "display(Markdown('DiffusionEq.md'))"
45    ]
46   }
47  ],
48  "metadata": {
49   "kernelspec": {
50    "display_name": "Python 2",
51    "language": "python",
52    "name": "python2"
53   },
54   "language_info": {
55    "codemirror_mode": {
56     "name": "ipython",
57     "version": 2
58    },
59    "file_extension": ".py",
60    "mimetype": "text/x-python",
61    "name": "python",
62    "nbconvert_exporter": "python",
63    "pygments_lexer": "ipython2",
64    "version": "2.7.12"
65   }
66  },
67  "nbformat": 4,
68  "nbformat_minor": 2
69 }