Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion heat_dispersion/HW_heat_dispersion.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
"u[0] = np.linspace(0, 300, columns) # top row runs 0 -> 300\n",
"u[1:,0] = np.linspace(90, 0, rows-1) # left side goes 0 -> 90 bottom to top\n",
"u[-1,:columns//2] = np.linspace(0, 80, columns//2) # 0 (left) to 80 (middle) along the bottom\n",
"u[-1,columns//2:] = np.linspace(80, 0, columns//2) # 80 (middle) to 0 (left) along the bottom\n",
"u[-1,columns//2:] = np.linspace(80, 0, columns//2) # 80 (middle) to 0 (right) along the bottom\n",
"u[:,-1] = np.linspace(300,0,rows) # 0 -> 300 bottom to top along the right"
]
},
Expand Down