summaryrefslogtreecommitdiff
path: root/sample_notebooks/SumedhKadam/Chapter_1_General.ipynb
blob: 62d27f1f17670815136f4f40c5bb2bcc176ad3f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Chapter 1 General Principles"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Ex 1.1  Page No 10 "
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 27,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Part(a)\n",
      "(10 mN)(5 GN) =  50 kilo Newton square\n",
      "\n",
      "Part(b)\n",
      "(100 mm)(0.5 MN square) =  25 Gigameter Newton square\n",
      "\n",
      "Part(c)\n",
      "(50 MN cube)(500 Gg) =  100 Kilo Newton cube per kg\n"
     ]
    }
   ],
   "source": [
    "# Example Number 1.1\n",
    "\n",
    "# Part(a)\n",
    "# Variable Declaration\n",
    "a = 10                        # [micro Newton(mN)]\n",
    "b = 5                         # [Giga Newton(GN)]\n",
    "\n",
    "# Calculation\n",
    "# We have to find c = a * b\n",
    "c = 10*5                      # [micro Newton(mN)*Giga Newton(GN)]\n",
    "c = (10*10**(-3))*(5*10**(9)) # [N**(2)]\n",
    "c = (10*10**(-3))*(5*10**(9))*10**(-6) #[kN**(2)]\n",
    "\n",
    "#Result\n",
    "print\"Part(a)\"\n",
    "print \"(10 mN)(5 GN) = \",int(c),\"kilo Newton square\\n\"\n",
    "\n",
    "# Part(b)\n",
    "# Variable Declaration\n",
    "a = 100                      #[millimeter(mm)]\n",
    "b = 0.5**(2)                 #[mega Newton square(MN**(2))]\n",
    "\n",
    "# Calculation\n",
    "# We have to find c = a * b\n",
    "c = (100*10**(-3))*(0.25*10**(12))  #[m.N**(2)]\n",
    "c = (100*10**(-3))*(0.25*10**(12))*10**(-9) #[Gm.N**(2)]\n",
    "\n",
    "#Result\n",
    "print\"Part(b)\"\n",
    "print \"(100 mm)(0.5 MN square) = \",int(c),\"Gigameter Newton square\\n\"\n",
    "\n",
    "# Part(c) (Correction in the question (50 MN cube)(500 Gg))\n",
    "# Variable Declaration\n",
    "a = 50                     #[mega newton cube((MN)**(3))]\n",
    "b = 500                    #[gigagram(Gg)]\n",
    "\n",
    "# Calculation\n",
    "# We have to find c = a / b\n",
    "c = 50*(10**(6))**3 / 500*10**(6)     #[N**(3)/kg]\n",
    "c = (50*((10**(6))**3) / (500*10**(6)))*10**(-9) #[kN**(3)/kg]\n",
    "\n",
    "#Result\n",
    "print\"Part(c)\"\n",
    "print \"(50 MN cube)(500 Gg) = \",int(c),\"Kilo Newton cube per kg\"\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 2",
   "language": "python",
   "name": "python2"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 2
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython2",
   "version": "2.7.12"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 2
}