Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
weisscharlesj committed Oct 12, 2024
1 parent ce203b1 commit 0224dcd
Show file tree
Hide file tree
Showing 29 changed files with 21,916 additions and 2,506 deletions.
1,373 changes: 1,373 additions & 0 deletions _images/0a007c1c23cf54de7867895ea0fd4818610da5f54d95e2612b8c007d4aa7ca42.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,044 changes: 1,044 additions & 0 deletions _images/0df685179aeba295a1b6a879ccd44163261859e2a082f96727ca84060805b22e.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,373 changes: 1,373 additions & 0 deletions _images/0fbb5a1f48d0736f3a69065f5088ed9509f2f87dbe962402f356e5662df37fa7.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,061 changes: 1,061 additions & 0 deletions _images/1eb16b67a39f3e475b38cf16a9af78164ec4ffd4ce527e35769126424acc1484.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,109 changes: 1,109 additions & 0 deletions _images/27dc3bdfa8579c39f917f3493b601fb9fb7ab07e828600a2eed71d3ba717f430.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,195 changes: 1,195 additions & 0 deletions _images/3428535cb37edacc17eb6df06658a14aedabcdc41190e61e978d899c1f5f4420.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,096 changes: 1,096 additions & 0 deletions _images/4c84e532916e022f8aba273c382a24bfbebdbf7e99bbfc0885d8e3296a157b04.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,241 changes: 1,241 additions & 0 deletions _images/6b60fd45b4f5c06f123a578749678451f8d4d76ec5459c1fa31e490dc89a1950.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,158 changes: 1,158 additions & 0 deletions _images/73f93504d5747ec0d99e854d2cdb9c3f44bea1e49700e9ba89ee9ae5dd6c2652.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,080 changes: 1,080 additions & 0 deletions _images/ae5ed854b26dec4e45acc5ad8999026fb36471d9ce386f551af273a6f91b8dc2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,942 changes: 1,942 additions & 0 deletions _images/b7049355613e04b7b56484b4aa32902ed5d9c3758a01cadf8c29b2e1a0260555.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,278 changes: 1,278 additions & 0 deletions _images/f02ccae45561783769ed8079a35065121e77ef0c8749eb0e86883b44561da6f2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
925 changes: 71 additions & 854 deletions _sources/notebooks/appendix_00/appendix_00_notebook.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion _sources/notebooks/chapter_01/chap_01_notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -3059,7 +3059,7 @@
"```{index} immutable\n",
"```\n",
"\n",
"*Tuples* are another object type similar to lists except that they are *immutable* - that is to say, they cannot be changed once created. They look similar a list except that they use parentheses instead of square brackets. So what use is an unchangeable list-like object? There are times when you might want data inside your code, but you do not want to accidentally change it. Think of it as something similar to locking a file on your computer to avoid accidentally making modifications. While this features is not strictly necessary, it may be a prudent practice in some situation in case you make a mistake.\n",
"*Tuples* are another object type similar to lists except that they are *immutable* - that is to say, they cannot be changed once created. They look similar to a list except that they use parentheses instead of square brackets. So what use is an unchangeable list-like object? There are times when you might want data inside your code, but you do not want to accidentally change it. Think of it as something similar to locking a file on your computer to avoid accidentally making modifications. While this features is not strictly necessary, it may be a prudent practice in some situation in case you make a mistake.\n",
"\n",
"Below is a tuple containing the energy in joules of the first five hydrogen atomic orbitals. There is no need to change this data in your code, so fixing it in a tuple makes sense. Indexing and slicing work exactly the same in tuples as they do in string and lists, so we can use this tuple to quickly calculate the energy difference between any pair of atomic orbitals. "
]
Expand Down
Loading

0 comments on commit 0224dcd

Please sign in to comment.