Permalink
Showing
with
1,956 additions
and 6 deletions.
- +5 −6 HW3/README.md
- BIN lecture_07/.lecture_07.md.swo
- BIN lecture_07/.lecture_07.md.swp
- +6 −0 lecture_08/.ipynb_checkpoints/lecture_08-checkpoint.ipynb
- BIN lecture_08/Auchain_model.gif
- BIN lecture_08/au_chain.jpg
- BIN lecture_08/goldenratio.png
- +1,941 −0 lecture_08/lecture_08.ipynb
- +4 −0 lecture_08/lennard_jones.m
- BIN lecture_08/octave-workspace
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,6 @@ | ||
{ | ||
"cells": [], | ||
"metadata": {}, | ||
"nbformat": 4, | ||
"nbformat_minor": 2 | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,4 @@ | ||
function E_LJ =lennard_jones(x,sigma,epsilon) | ||
E_LJ = 4*epsilon*((sigma./x).^12-(sigma./x).^6); | ||
end | ||
|
Binary file not shown.