diff options
Diffstat (limited to 'Elements_Of_Physical_Chemistry_by_P_Atkins/13-Atomic_structure.ipynb')
-rw-r--r-- | Elements_Of_Physical_Chemistry_by_P_Atkins/13-Atomic_structure.ipynb | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/Elements_Of_Physical_Chemistry_by_P_Atkins/13-Atomic_structure.ipynb b/Elements_Of_Physical_Chemistry_by_P_Atkins/13-Atomic_structure.ipynb new file mode 100644 index 0000000..6a1ab03 --- /dev/null +++ b/Elements_Of_Physical_Chemistry_by_P_Atkins/13-Atomic_structure.ipynb @@ -0,0 +1,84 @@ +{ +"cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Chapter 13: Atomic structure" + ] + }, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 13.2_i: illustration_2.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"clc\n", +"//Initialization of variables\n", +"dv=1 //pm^3\n", +"a0=52.9 //pm\n", +"//calculations\n", +"Probability=dv/(%pi*a0^3)\n", +"//results\n", +"printf('probability of finding electron = %.1e',Probability)\n", +"printf('\n Chance that electron would be found is one in %d times',1/Probability)" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 13.3_i: illustration_3.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"clc\n", +"//Initialization of variables\n", +"dr=1 //pm\n", +"r=52.9 //pm\n", +"//calculations\n", +"Probability=4*%e^(-2) *dr/r\n", +"//results\n", +"printf('About 1 inspection in %d',1/Probability +3)" + ] + } +], +"metadata": { + "kernelspec": { + "display_name": "Scilab", + "language": "scilab", + "name": "scilab" + }, + "language_info": { + "file_extension": ".sce", + "help_links": [ + { + "text": "MetaKernel Magics", + "url": "https://github.com/calysto/metakernel/blob/master/metakernel/magics/README.md" + } + ], + "mimetype": "text/x-octave", + "name": "scilab", + "version": "0.7.1" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} |