Skip to content

Instantly share code, notes, and snippets.

@houkensjtu
Created November 28, 2018 15:25
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 houkensjtu/42411b5231b0e55c6463ff7d4148fb17 to your computer and use it in GitHub Desktop.
Save houkensjtu/42411b5231b0e55c6463ff7d4148fb17 to your computer and use it in GitHub Desktop.
Valve
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"%matplotlib inline\n",
"\n",
"import pandas as pd\n",
"import matplotlib.pyplot as plt\n",
"import seaborn as sns\n",
"\n",
"sns.set(style=\"darkgrid\")"
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"# Valve torque calculation\n",
"\n",
"Qian Bao, 11/27/2018\n",
"\n",
"This document shows the process of estimating the torque of the rotating valve.\n",
"\n",
"In order to calculate the torque needed to rotate the valve, we first need to analyze the force exerted on the valve. On the front surface, high pressure is applied on the high pressure port area, low pressure is applied on the low pressure port area, and anywhere in between is under a pressure between high and low pressure. On the back surface, the inner circle area is under low pressure because it's always connected to the low pressure port and the outer ring is under high pressure for the same reason. \n",
"\n",
"<img src=\"./img/diskArea.png\" style=\"height:400px\">\n",
"\n",
"The area of each part is obtained in Solidworks.\n",
"\n",
"$$ \\omega=\\int F\\cdot r $$"
]
},
{
"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.0"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment