diff options
Diffstat (limited to 'Principles_Of_Geotechnical_Engineering_by_B_M_Das/2-weight_volume_relationships.ipynb')
-rw-r--r-- | Principles_Of_Geotechnical_Engineering_by_B_M_Das/2-weight_volume_relationships.ipynb | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/Principles_Of_Geotechnical_Engineering_by_B_M_Das/2-weight_volume_relationships.ipynb b/Principles_Of_Geotechnical_Engineering_by_B_M_Das/2-weight_volume_relationships.ipynb new file mode 100644 index 0000000..9da5bd1 --- /dev/null +++ b/Principles_Of_Geotechnical_Engineering_by_B_M_Das/2-weight_volume_relationships.ipynb @@ -0,0 +1,61 @@ +{ +"cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Chapter 2: weight volume relationships" + ] + }, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 2.2: solved.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"clc\n", +"//initialisation of variables\n", +"//from graph\n", +"d= 0.15 //mm\n", +"w= 0.17 //mm\n", +"a= 0.27 //mm\n", +"//calculations\n", +"C= a/d\n", +"c= w^2/(a*d)\n", +"//results\n", +"printf ('uniformity coefficient = % f ',C)\n", +"printf ('coefficient of gradation = % 2f ',c)" + ] + } +], +"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 +} |