Salome HOME
Improved message display
[tools/solverlab.git] / CoreFlows / Documentation / PhysicalModels / TransportEq.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 transport equation\n",
12        "======================\n",
13        " \n",
14        "$$\n",
15        " \\partial_t h + \\vec{u}\\cdot\\vec{\\nabla} h = \\Phi+\\lambda_{sf}(T_s-T)\n",
16        "$$\n",
17        "\n",
18        "where\n",
19        "\n",
20        "- $ h $ the main unknown is the fluid enthalpy field\n",
21        "- $ \\vec{u} $ is the constant transport velocity set by the user\n",
22        "- $ \\Phi $ is the heat source term if explicitely known\n",
23        "- $ T_s $ is the rod temperature field provided by the user\n",
24        "- $ T=T_0+\\frac{h-h_0}{c_p}$ is the fluid temperature field\n",
25        "- $ \\lambda_{sf}$ is the fluid-rod heat transfer coefficient provided by the user\n",
26        "- $ c_p $ is the fluid specific heat, provided by the user and assumed constant\n",
27        "\n",
28        "\n",
29        "\n",
30        "The class [TransportEquation](../../Models/inc/TransportEquation.hxx) implements a scalar advection equation for the enthalpy of a fluid. The fluid can be either steam or liquid water around 1 bar or 155 bars.  \n",
31        "\n",
32        "\\subpage ExampleTransportEqPage \"Here are C and Python example scripts\"\t\n",
33        "\n",
34        "\n"
35       ],
36       "text/plain": [
37        "<IPython.core.display.Markdown object>"
38       ]
39      },
40      "metadata": {},
41      "output_type": "display_data"
42     }
43    ],
44    "source": [
45     "from IPython.display import display, Markdown\n",
46     "display(Markdown('TransportEq.md'))"
47    ]
48   }
49  ],
50  "metadata": {
51   "kernelspec": {
52    "display_name": "Python 2",
53    "language": "python",
54    "name": "python2"
55   },
56   "language_info": {
57    "codemirror_mode": {
58     "name": "ipython",
59     "version": 2
60    },
61    "file_extension": ".py",
62    "mimetype": "text/x-python",
63    "name": "python",
64    "nbconvert_exporter": "python",
65    "pygments_lexer": "ipython2",
66    "version": "2.7.12"
67   }
68  },
69  "nbformat": 4,
70  "nbformat_minor": 2
71 }