Skip to content

Commit

Permalink
Fix for 'Introduction to Bamboo'
Browse files Browse the repository at this point in the history
  • Loading branch information
dug20 committed Apr 30, 2021
1 parent d1375d4 commit f9c4bf9
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Introduction to Bamboo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@
},
{
"cell_type": "code",
"execution_count": 15,
"execution_count": 9,
"metadata": {
"scrolled": false
},
Expand Down Expand Up @@ -478,7 +478,7 @@
},
{
"cell_type": "code",
"execution_count": 21,
"execution_count": 10,
"metadata": {
"scrolled": true
},
Expand Down Expand Up @@ -512,7 +512,7 @@
},
{
"cell_type": "code",
"execution_count": 16,
"execution_count": 11,
"metadata": {
"scrolled": false
},
Expand Down Expand Up @@ -603,7 +603,7 @@
},
{
"cell_type": "code",
"execution_count": 19,
"execution_count": 12,
"metadata": {
"scrolled": true
},
Expand Down Expand Up @@ -644,22 +644,22 @@
},
{
"cell_type": "code",
"execution_count": 22,
"execution_count": 13,
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"#Steady state stress analysis\n",
"steady_stress_data = engine.run_stress_analysis(heating_result = cooling_data, condition = \"steady\")\n",
"steady_stress = engine.run_stress_analysis(heating_result = cooling_data, condition = \"steady\")\n",
"\n",
"#Transient stress analysis\n",
"transient_stress_data = engine.run_stress_analysis(heating_result = cooling_data, condition= \"transient\", T_amb = inlet_T)"
"transient_stress = engine.run_stress_analysis(heating_result = cooling_data, condition= \"transient\", T_amb = inlet_T)"
]
},
{
"cell_type": "code",
"execution_count": 24,
"execution_count": 14,
"metadata": {},
"outputs": [
{
Expand All @@ -676,14 +676,14 @@
"source": [
"#Show what keys are available from the resulting data\n",
"print(\"\")\n",
"print(steady_stress_data.keys())\n",
"print(steady_stress.keys())\n",
"print(\"\")\n",
"print(transient_stress_data.keys())"
"print(transient_stress.keys())"
]
},
{
"cell_type": "code",
"execution_count": 26,
"execution_count": 15,
"metadata": {},
"outputs": [
{
Expand Down

0 comments on commit f9c4bf9

Please sign in to comment.