Salome HOME
Updated GUI documentation
[tools/solverlab.git] / CoreFlows / Documentation / PhysicalModels / ScalarModelsPage.ipynb
1 {
2  "cells": [
3   {
4    "cell_type": "code",
5    "execution_count": 1,
6    "metadata": {},
7    "outputs": [
8     {
9      "data": {
10       "text/markdown": [
11        "The scalar models\n",
12        "=================\n",
13        "\n",
14        "The transport equation\t\n",
15        "----------------------\n",
16        " \n",
17        "$$\n",
18        " \\partial_t H + \\vec{u}\\cdot\\vec{\\nabla} H = \\Phi+\\lambda_{sf}(T_s-T)\n",
19        "$$\n",
20        "\n",
21        "where\n",
22        "\n",
23        "- $ H $ the main unknown is the fluid enthalpy field\n",
24        "- $ \\vec{u} $ is the constant transport velocity\n",
25        "- $ \\Phi $ is the heat source term if explicitely known\n",
26        "- $ T_s $ is the rod temperature field provided by the user\n",
27        "- $ T=T_0+\\frac{H-H_0}{c_p}$ is the fluid temperature field\n",
28        "- $ \\lambda_{sf}$ is the fluid-rod heat transfer coefficient provided by the user\n",
29        "- $ c_p $ is the fluid specific heat, provided by the user and assumed constant\n",
30        "\n",
31        "See the [Transport equation page](TransportEq.ipynb)\n",
32        "\n",
33        "The diffusion equation\t\n",
34        "----------------------\n",
35        "$$\n",
36        " \\partial_t T =d\\triangle T +\\frac{ \\Phi+\\lambda_{sf}(T_f-T)}{\\rho c_p}\n",
37        "$$\n",
38        "where\n",
39        "- $T$ the main unknown is the rod temperature field\n",
40        "- $d=\\frac{\\lambda}{\\rho c_p}$ is the rod diffusivity\n",
41        "- $\\lambda_{sf}$ is the fluid-rod heat transfer coefficient provided by the user\n",
42        "- $\\rho$ is the rod density assumed constant\n",
43        "- $c_p$ is the rod specific heat, provided by the user and assumed constant\n",
44        "- $\\Phi$ is the heat source term if explicitely known\n",
45        "- $T_f$ is the fluid temperature field provided by the user\n",
46        "\n",
47        "See the [Diffusion equation page](DiffusionEq.ipynb)\n",
48        "\n"
49       ],
50       "text/plain": [
51        "<IPython.core.display.Markdown object>"
52       ]
53      },
54      "metadata": {},
55      "output_type": "display_data"
56     }
57    ],
58    "source": [
59     "from IPython.display import display, Markdown\n",
60     "display(Markdown('ScalarModelsPage.md'))"
61    ]
62   }
63  ],
64  "metadata": {
65   "kernelspec": {
66    "display_name": "Python 2",
67    "language": "python",
68    "name": "python2"
69   },
70   "language_info": {
71    "codemirror_mode": {
72     "name": "ipython",
73     "version": 2
74    },
75    "file_extension": ".py",
76    "mimetype": "text/x-python",
77    "name": "python",
78    "nbconvert_exporter": "python",
79    "pygments_lexer": "ipython2",
80    "version": "2.7.12"
81   }
82  },
83  "nbformat": 4,
84  "nbformat_minor": 2
85 }