Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jklymak
Created March 17, 2019 23:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jklymak/1dcc05566340d26ba1c518b21a4ccbcc to your computer and use it in GitHub Desktop.
Save jklymak/1dcc05566340d26ba1c518b21a4ccbcc to your computer and use it in GitHub Desktop.
Temp budget calc
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## idea:\n",
"\n",
"Calculate the temperature flux is a region from $x=0$ to $x=L$, between $y=y_0$ and $y=y_0 + \\delta y$\n",
"\n",
"We divide the data into *three* components as in the paper. \n",
"\n",
"$$ T(x, y) = T_0(y) + T_x(y)\\,x + T'(x, y) $$\n",
"\n",
"$$ v(x, y) = v_0(y) + v_x(y)\\,x + v'(x, y) $$\n",
"\n",
"$$ u(x, y) = u_0(y) + u_x(y)\\,x + u'(x, y) $$\n",
"\n",
"The resolved flux out the \"north\" side is \n",
"\n",
"$$\\int_0^L vT \\ \\mathrm{d}x $$\n",
"\n",
"The decomposition has 9 terms, of which at least two integrate to zero:\n",
"\n",
"$$\\int_0^L vT \\ \\mathrm{d}x = v_0T_0 L + v_0 T_x \\frac{L^2}{2} + 0 + v_x T_0 \\frac{L^2}{2} + v_x T_x \\frac{L^3}{3} + v_x \\int_0^L T' x\\ \\mathrm{d}x + 0 + T_x \\int_0^L v' x\\ \\mathrm{d}x + \\int_0^L v' T' \\mathrm{d}x $$\n",
" \n",
"Given that, I don't understand how so many terms dropped out in the paper's eq 7. You seem to have decided that whatever you are calling $\\Delta T = T_x \\ x$ has no x-dependence. If so, thats incorrect. \n",
"\n",
"Eq 7 also has a mysterious $\\Delta \\Pi'_a$. What is this? \n",
"\n",
"\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.2"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment