Building initial repository

This commit is contained in:
Eric 2026-01-07 15:32:30 -05:00
commit 840c359f2a
35 changed files with 6861 additions and 0 deletions

BIN
module 7/.DS_Store vendored Normal file

Binary file not shown.

561
module 7/CO2_phases.ipynb Normal file

File diff suppressed because one or more lines are too long

331
module 7/N2_phases.ipynb Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

319
module 7/Problem 4.ipynb Normal file

File diff suppressed because one or more lines are too long

10
module 7/README.md Normal file
View file

@ -0,0 +1,10 @@
# Exporting notebooks to PDF
The file `vdw_report.tex.j2` formats the LaTeX PDF output to use a specific filename. It makes additional changes to the format of the code blocks.
To create the output, use the `nbeconvert` utility in `jupyter`:
```
% jupyter nbconvert van_der_waals_EOS.ipynb --to pdf --TemplateExporter.extra_template_paths=. --template-file vdw_report.tex.j2 --no-prompt
```

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

BIN
module 7/pdf/.DS_Store vendored Normal file

Binary file not shown.

BIN
module 7/pdf/CO2_phases.pdf Normal file

Binary file not shown.

BIN
module 7/pdf/Fig_6.6-1.pdf Normal file

Binary file not shown.

BIN
module 7/pdf/Fig_7.3-1.pdf Normal file

Binary file not shown.

BIN
module 7/pdf/Fig_7.3-2.pdf Normal file

Binary file not shown.

BIN
module 7/pdf/Fig_7.3-3.pdf Normal file

Binary file not shown.

BIN
module 7/pdf/Fig_7.3-4.pdf Normal file

Binary file not shown.

BIN
module 7/pdf/N2_phases.pdf Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,25 @@
((*- extends 'latex/index.tex.j2' -*))
% ---------- Remove code cell prompts ----------
((* block input_prompt *))((* endblock input_prompt *))
((* block output_prompt *))((* endblock output_prompt *))
% ---------- Document metadata ----------
((* block title *))
\title{Van der Waals Equation of State}
((* endblock title *))
((* block author *))
\author{Eric Furst}
((* endblock author *))
((* block date *))
\date{\today}
((* endblock date *))
% ---------- Code font size ----------
((* block packages *))
((( super() )))
\usepackage{fancyvrb}
\fvset{fontsize=\footnotesize}
((* endblock packages *))