Skip to content

Commit edd4997

Browse files
committed
Updated headers and LOs
1 parent ea54817 commit edd4997

6 files changed

Lines changed: 39 additions & 16 deletions

images/refrigeration cycle.png

940 Bytes
Loading
4.25 MB
Loading

notebooks_en/3_Heat_Transfer.ipynb

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
{
22
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"###### Content under Creative Commons Attribution license CC-BY 4.0, code under BSD 3-Clause License © 2019 Adam Wickenheiser, Lorena Barba"
8+
]
9+
},
310
{
411
"cell_type": "markdown",
512
"metadata": {},

notebooks_en/4_Work.ipynb

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
{
22
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"###### Content under Creative Commons Attribution license CC-BY 4.0, code under BSD 3-Clause License © 2019 Adam Wickenheiser, Lorena Barba"
8+
]
9+
},
310
{
411
"cell_type": "markdown",
512
"metadata": {},
@@ -359,14 +366,13 @@
359366
"metadata": {},
360367
"source": [
361368
"**Example:** We would like to design an Otto cycle that produces $900 J$ of energy per cycle. We are constrained by the following design requirements: \n",
362-
"1. $\\dfrac{v_1}{v_2} \\leq 12$. If this **compression ratio** is any larger, the fuel will autoignite, causing undue vibration in the engine (\"knocking\") leading potentially to damage\n",
369+
"1. $r \\equiv \\dfrac{v_1}{v_2} \\leq 12$. If this **compression ratio** is any larger, the fuel will autoignite, causing undue vibration in the engine (\"knocking\") leading potentially to damage\n",
363370
"1. $P_1 = 1 atm$ and $T_1 = 18 ^\\circ C$. The intake and exhaust occur at (roughly) atmospheric pressure and temperature. We will consider ways to circumvent this requirement in a later lesson.\n",
364371
"1. $T_3 = 1300 ^\\circ C$. This is the maximum temperature the engine can operate at without suffering fatigue damage.\n",
365-
"1. $m = 0.01 kg$ This limits the volume and hence the physical size of the engine.\n",
366372
"1. We will assume the gas in the engine is air. This is a common assumption called the **air standard model**.\n",
367373
"1. The two polytropic processes are governed by $Pv^{1.5} = const.$\n",
368374
"\n",
369-
"What diameter cylinder is necessary to produce the desired work?\n",
375+
"What displacement $V_1-V_2$ is necessary to produce the desired work?\n",
370376
"\n",
371377
"We'd like to make the engine as small as possible (smallest cylinder diameter) and yet still achieve the desired work output. As we previously mentioned, the net work output of the cycle is the area inside the curve on the $P-v$ diagram, so we want to make this area as large as possible. We do this by making $\\dfrac{v_1}{v_2}$ as large as possible, which increases the width of the area, and by making $\\dfrac{T_3}{T_1}$ as large as possible, which increases the height of the area.\n",
372378
"\n",
@@ -432,12 +438,12 @@
432438
" plt.ylabel('Pressure [Pa]')\n",
433439
" plt.xlabel('Specific volume [m^3/kg]')\n",
434440
" \n",
435-
" # compute work using polytropic process integral formulas\n",
441+
" # compute work/mass using polytropic process integral formulas\n",
436442
" if n == 1:\n",
437-
" W = P3*v3*np.log(v4/v3) + P1*v1*np.log(v2/v1)\n",
443+
" w = P3*v3*np.log(v4/v3) + P1*v1*np.log(v2/v1)\n",
438444
" else:\n",
439-
" W = (P2*v2-P1*v1)/(1-n) + (P4*v4-P3*v3)/(1-n)\n",
440-
" return W"
445+
" w = (P2*v2-P1*v1)/(1-n) + (P4*v4-P3*v3)/(1-n)\n",
446+
" return w"
441447
]
442448
},
443449
{
@@ -449,7 +455,7 @@
449455
"T1 = 18.0 + 273.15 # temperature [K]\n",
450456
"P1 = 1.0*101325.0 # pressure [Pa]\n",
451457
"T3 = 1300.0 + 273.15 # temperature [K]\n",
452-
"r = 12 # compression ratio\n",
458+
"r = 12.0 # compression ratio\n",
453459
"n = 1.5 # polytropic process exponent\n",
454460
"\n",
455461
"# plot Otto cycle and compute work/mass\n",

notebooks_en/5_Energy_Balance_Closed_Systems.ipynb

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
{
22
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"###### Content under Creative Commons Attribution license CC-BY 4.0, code under BSD 3-Clause License © 2019 Adam Wickenheiser, Lorena Barba"
8+
]
9+
},
310
{
411
"cell_type": "markdown",
512
"metadata": {},

notebooks_en/6_Energy_Balance_Open_Systems.ipynb

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
{
22
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"###### Content under Creative Commons Attribution license CC-BY 4.0, code under BSD 3-Clause License © 2019 Adam Wickenheiser, Lorena Barba"
8+
]
9+
},
310
{
411
"cell_type": "markdown",
512
"metadata": {},
@@ -20,10 +27,9 @@
2027
"source": [
2128
"## Learning objectives:\n",
2229
"\n",
23-
"1. To be able to calculate the work done in compressing a spring or piston\n",
24-
"1. To be able to write a balance of energy to determine how much energy is required to cause a desired temperature and volume change\n",
25-
"1. To be able to determine if a process is polytropic and calculate the work done\n",
26-
"1. To be able to write an energy balance when multiple forms of work are being done"
30+
"1. To be able to describe how heat, work, and mass transport through devices with flow inlets and outlets\n",
31+
"1. To be able to write an energy balance for open systems (control volumes) with heat transfer and work done\n",
32+
"1. To be able to analyze power and refrigeration cycles using given state information"
2733
]
2834
},
2935
{
@@ -34,10 +40,7 @@
3440
"\n",
3541
"1. [Conservation of Mass in Steady Flow Systems](#consvmass)\n",
3642
"1. [Conservation of Energy in Steady Flow Systems](#consvenergy)\n",
37-
"1. [Control Volume Analysis of a Vapor Power Cycle](#vaporcycle)\n",
38-
"1. [Approximate Solutions Using the Ideal Gas Law](#idealgas)\n",
39-
"1. [Mixing Substances Together](#mixing)\n",
40-
"1. [Problems Involving Nonlinear Equations or Table Look-ups](#nonlinear)"
43+
"1. [Control Volume Analysis of a Vapor Power Cycle](#vaporcycle)"
4144
]
4245
},
4346
{

0 commit comments

Comments
 (0)