summaryrefslogtreecommitdiff
path: root/sample_notebooks/RahulJoshi/Chapter_1_An_Overview_of_Heat.ipynb
blob: 0cef27c98ab7e5fb2b9d82a7d1c37f24f7ae5551 (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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {
    "collapsed": true
   },
   "source": [
    "# Example 1.1 Page Number 2"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Heat Flow through the surface is 17850.0 W\n",
      "Temprature Gradient in flow direction -700.0 C/m\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "#variable declaration\n",
    "\n",
    "T = 100 # temperature of wall 1 in deg celcius\n",
    "\n",
    "t = 30 # temperature of wall 2 in deg celcius\n",
    "\n",
    "L = 0.1 # distance between the walls in meters\n",
    "\n",
    "k = 8.5 # thermal conductivity in W/mK\n",
    "\n",
    "A = 3 # area is meters square\n",
    "\n",
    "#calculation\n",
    "\n",
    "Q = (T-t)/(L/(k*A)) # heat flow rate in (W)\n",
    "\n",
    "tempgrad = (-1*Q)/(k*A) # temperature gradient in celcius/meter\n",
    "\n",
    "# Result\n",
    "\n",
    "print(\"Heat Flow through the surface is\",Q,\"W\")\n",
    "\n",
    "print(\"Temprature Gradient in flow direction\",tempgrad,\"C/m\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Example 1.2 Page Number 6"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Convective heat transfer rate  1500.0 W\n",
      "Resistance 0.08 C/W\n",
      "Temprature Gradient along y direction -3000.0 C/m\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "#variable declaration\n",
    "\n",
    "T = 160 # temperature of wall 1 in deg celcius\n",
    "\n",
    "t = 40 # temperature of wall 2 in deg celcius\n",
    "\n",
    "k = 1 # thermal conductivity in W/mK\n",
    "\n",
    "h = 25 # Convective heat transfer coefficient W/m2K\n",
    "\n",
    "A = 0.5 # area is meters square\n",
    "\n",
    "#calculation\n",
    "\n",
    "Q = h*A*(T-t) # heat tranfer by convection (W)\n",
    "\n",
    "r = 1/(h*A) # resistance (C/W)\n",
    "\n",
    "tempgrad = (-1*Q)/(k*A) # temperature gradient in celcius/meter along y\n",
    "\n",
    "# Result\n",
    "\n",
    "print(\"Convective heat transfer rate \",Q,\"W\")\n",
    "\n",
    "print(\"Resistance\",r,\"C/W\")\n",
    "\n",
    "print(\"Temprature Gradient along y direction\",tempgrad,\"C/m\")\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Example 1.3 Page number 7"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Heat Flow through the surface is 2171.37 W\n",
      "Resistance 0.0783 K/W\n",
      "Equivalent thermal coefficient 6.3864 W/m2K\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "#variable declaration\n",
    "\n",
    "T = 473 # temperature of wall 1 kelvin\n",
    "\n",
    "t = 303 # temperature of wall 2 in kelvin\n",
    "\n",
    "sigma = 5.67*10**-8 # Stefen-Boltzmann constant\n",
    "\n",
    "F = 0.46 # emmissivity \n",
    "\n",
    "A = 2 # area is meters sq\n",
    "\n",
    "#calculation\n",
    "\n",
    "Q = F*sigma*A*(T**4-t**4) # heat exchange in (W)\n",
    "\n",
    "R = (T-t)/Q # Resistance in (K/W)\n",
    "\n",
    "hr = 1/(R*A) # equivalent thermal coefficient W/m2K\n",
    "\n",
    "# Result\n",
    "\n",
    "print(\"Heat Flow through the surface is\",round(Q,2),\"W\")\n",
    "\n",
    "print(\"Resistance\",round(R,4),\"K/W\")\n",
    "\n",
    "print(\"Equivalent thermal coefficient\",round(hr,4),\"W/m2K\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Example 1.4 Page number 8"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 17,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Heat Received  7092.23 W\n",
      "T2 =  368.479 K\n",
      "Temprature on other side of the wall 263.3 K\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "#variable declaration\n",
    "\n",
    "Tinf1 = 500 # temperature of wall 1 Kelvin\n",
    "\n",
    "T1 = 400 # temperature of wall 2 in Kelvin\n",
    "\n",
    "sigma = 5.67 # Stefen-Boltzmann constant\n",
    "\n",
    "h = 50 # Convective heat transfer coefficient W/m2K\n",
    "\n",
    "k = 45 # thermal conductivity in W/mK\n",
    "\n",
    "L = 0.2 # slab thickness in meters\n",
    "\n",
    "#calculation\n",
    "\n",
    "Q = sigma*((Tinf1/100)**4 - (T1/100)**4)+ h*(Tinf1-T1) # heat received (W)\n",
    "\n",
    "dT = Q*(L/k) # temp gradient (K)\n",
    "\n",
    "T2 = T1-dT #\n",
    "\n",
    "Tinf2 = 263.3 # temperature on the other side of the wall using trial and error\n",
    "\n",
    "# Result\n",
    "\n",
    "print(\"Heat Received \",round(Q,3),\"W\")\n",
    "\n",
    "print(\"T2 = \",round(T2,3),\"K\")\n",
    "\n",
    "print(\"Temprature on other side of the wall\",round(Tinf2,3),\"K\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Example 1.5 Page number "
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 26,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Rate of change of temperature  0.03984 C/s\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "#variable declaration\n",
    "\n",
    "T1 = 400 # temperature of wall 1 Kelvin\n",
    "\n",
    "T2 = 100 # temperature of wall 2 in Kelvin\n",
    "\n",
    "sigma = 5.67*10**-8 # Stefen-Boltzmann constant\n",
    "\n",
    "h = 200 # Convective heat transfer coefficient W/m2K\n",
    "\n",
    "q = 1.5*10**6 # heat generated in W/m3\n",
    "\n",
    "H = 0.3 # height in meters\n",
    "\n",
    "r = 0.15 # radius in meters\n",
    "\n",
    "rho = 19000 # density in kg/m3\n",
    "\n",
    "cp = 118 # specific heat capacity in kJ/kgK\n",
    "\n",
    "#calculation\n",
    "\n",
    "Sa = 2*3.14*r*H+2*3.14*r**2 # Surface area in meters sq\n",
    "\n",
    "Hc = 3.14*r**2*H*rho*cp # heat capacity in J/deg C\n",
    "\n",
    "Hg = 3.14*r**2*H*q # Heat generated in W\n",
    "\n",
    "Hcon = h*Sa*(T1-T2) # convective heat transfer in W\n",
    "\n",
    "Hrad = sigma*Sa*((T1+273)**4 - (T2+273)**4)\n",
    "\n",
    "Th = Hg-Hcon-Hrad\n",
    "\n",
    "dTbydt = Th/Hc\n",
    "\n",
    "# Result\n",
    "\n",
    "print(\"Rate of change of temperature \",round(dTbydt,5),\"C/s\")\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Example 1.6 Page number 11"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 40,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "BTU/hrftF =  1.7322 W/mC\n",
      "BTU/hrft2F =  5.6831 W/m2C\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "J = 9.47*10**-4 # Joule to BTU conversion\n",
    "\n",
    "m = 39.37 # meter to inch conversion\n",
    "\n",
    "kg = 2.2046 # kg to lb conversion\n",
    "\n",
    "C = 9/5 # Celcius to Farhenight\n",
    "\n",
    "# Calculation\n",
    "\n",
    "BTU = 1/J # in Joule\n",
    "\n",
    "ft = 12/m # in feet\n",
    "\n",
    "a = (BTU/(3600*ft*(5/9))) # in BTU/hrftF\n",
    "\n",
    "print(\"BTU/hrftF = \",round(a,4),\"W/mC\")\n",
    "\n",
    "b = (BTU/(3600*ft**2*(5/9))) # in BTU/hrftF\n",
    "\n",
    "print(\"BTU/hrft2F = \",round(b,4),\"W/m2C\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem 1 page Number 11"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 43,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Temprature gradient along surface -1111.7 C/m\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "#variable declaration\n",
    "\n",
    "T1 = 200 # temperature of wall 1 Kelvin\n",
    "\n",
    "T2 = 60 # temperature of wall 2 in Kelvin\n",
    "\n",
    "sigma = 5.67 # Stefen-Boltzmann constant\n",
    "\n",
    "h = 80 # Convective heat transfer coefficient W/m2K\n",
    "\n",
    "k = 12 # thermal conductivity in W/mK\n",
    "\n",
    "#L = 0.2 # slab thickness in meters\n",
    "\n",
    "#calculation\n",
    "\n",
    "Q = sigma*(((T1+273)/100)**4 - ((T2+273)/100)**4)+ h*(T1-T2) # heat received (W)\n",
    "\n",
    "dTbydx = Q/(-1*k) # temp gradient (K)\n",
    "\n",
    "print(\"Temprature gradient along surface\",round(dTbydx,1),\"C/m\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem 2 Page number 12"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 46,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Temprature only conduction and convection  682.174 C\n",
      "Temprature only conduction and radiation  1139.148 C\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "#variable declaration\n",
    "\n",
    "dTbydx = -9000 # temperature gradient \n",
    "\n",
    "T2 = 30 # temperature of wall 2 in C\n",
    "\n",
    "sigma = 5.67 # Stefen-Boltzmann constant\n",
    "\n",
    "k = -25 # Convective heat transfer coefficient W/mK\n",
    "\n",
    "h = 345 # thermal conductivity in W/m2K\n",
    "\n",
    "A = 1 # area in meters sq\n",
    "\n",
    "#calculation\n",
    "\n",
    "#only conduction and convection\n",
    "\n",
    "T11 = k*A*dTbydx/(h*A) + T2\n",
    "\n",
    "#only conduction and radiation\n",
    "\n",
    "T12 = (((k*A*dTbydx/(sigma)) + ((T2+273)/100)**4)*100**4)**(1/4)-273\n",
    "\n",
    "# Result\n",
    "\n",
    "print(\"Temprature only conduction and convection \",round(T11,3),\"C\")\n",
    "\n",
    "print(\"Temprature only conduction and radiation \",round(T12,3),\"C\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem number 3 Page number 12"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 47,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Wall surface temperature  330.4 K\n",
      "Heat Generated  2252.765 W/m2\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "#variable declaration\n",
    "\n",
    "Qc = 2250 # heat conducted in W/m2\n",
    "\n",
    "T1 = 303 # temperature of wall 2 in C\n",
    "\n",
    "sigma = 5.67 # Stefen-Boltzmann constant\n",
    "\n",
    "h = 75 # thermal conductivity in W/m2K\n",
    "\n",
    "A = 1 # area in meters sq\n",
    "\n",
    "#calculation\n",
    "\n",
    "# taking the approximate value from table 330.4\n",
    "\n",
    "Tapprox = 330.4\n",
    "\n",
    "Q = h*(Tapprox-T1)+sigma*((Tapprox/100)**4-(T1/100)**4)\n",
    "\n",
    "# Result\n",
    "\n",
    "print(\"Wall surface temperature \",round(Tapprox,3),\"K\")\n",
    "\n",
    "print(\"Heat Generated \",round(Q,3),\"W/m2\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem 4 page number 13"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 48,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Wall surface temperature  277.75 K\n",
      "Heat Generated  65.479 W\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "#variable declaration\n",
    "\n",
    "Hc = 65.5 # heat conducted in W/m\n",
    "\n",
    "T1 = 263 # temperature of wall in K\n",
    "\n",
    "sigma = 5.67 # Stefen-Boltzmann constant\n",
    "\n",
    "h = 4.35 # thermal conductivity in W/m2K\n",
    "\n",
    "r = 0.08 # area in meters \n",
    "\n",
    "#calculation\n",
    "\n",
    "# taking the approximate value from table 277.75 K\n",
    "\n",
    "Tapprox = 277.75\n",
    "\n",
    "Q = h*3.14*r*2*(Tapprox-T1)+sigma*2*3.14*r*((Tapprox/100)**4-(T1/100)**4)\n",
    "\n",
    "# Result\n",
    "\n",
    "print(\"Wall surface temperature \",round(Tapprox,3),\"K\")\n",
    "\n",
    "print(\"Heat Generated \",round(Q,3),\"W\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem 5 Page number 14"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 51,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Wall surface temperature  386.1 K\n",
      "Heat Generated  449.65 W\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "#variable declaration\n",
    "\n",
    "Hc = 450 # heat conducted in W/m\n",
    "\n",
    "T1 = 396.4 # temperature of wall in K\n",
    "\n",
    "sigma = 5.67 # Stefen-Boltzmann constant\n",
    "\n",
    "h = 1.5 # thermal conductivity in W/m2K\n",
    "\n",
    "r = 0.08 # area in meters \n",
    "\n",
    "A = 4*3.14*0.48**2 # area in meters sq\n",
    "\n",
    "#calculation\n",
    "\n",
    "# taking the approximate value from table 386.1 K\n",
    "\n",
    "Tapprox = 386.1\n",
    "\n",
    "Q = h*A*(T1-Tapprox)+sigma*A*((T1/100)**4-(Tapprox/100)**4)\n",
    "\n",
    "# Result\n",
    "\n",
    "print(\"Wall surface temperature \",round(Tapprox,3),\"K\")\n",
    "\n",
    "print(\"Heat Generated \",round(Q,3),\"W\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem 6 Page number 14"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 52,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Heat Capacity  1000.0 J/C\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "#variable declaration\n",
    "\n",
    "dTbydt = 0.5 # Temperature transition in C/s\n",
    "\n",
    "Qr = 4000 # Heat Received in J/s\n",
    "\n",
    "Qc = 5200 # Heat Convection in J/s\n",
    "\n",
    "qdot = 1700 # Heat generated in J/s\n",
    "\n",
    "#calculation\n",
    "\n",
    "HeatCapacity = (Qr-Qc+qdot)/dTbydt\n",
    "\n",
    "# Result\n",
    "\n",
    "print(\"Heat Capacity \",round(HeatCapacity,3),\"J/C\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem 7 page number 15"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 54,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Time rate of temperature change  0.1 C/s\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "#variable declaration\n",
    "\n",
    "Q = 240 # Heat Received in J/s\n",
    "\n",
    "qdot = 100000 # Heat generated in J/m3/s\n",
    "\n",
    "rho = 2500 # density in kg/m3\n",
    "\n",
    "cp = 0.52*10**3 # heat capacity in kJ/KgK\n",
    "\n",
    "a = 0.2 # side of the cube in meters\n",
    "\n",
    "#calculation\n",
    "\n",
    "V = a**3\n",
    "\n",
    "dTbydt = (Q+qdot*V)/(rho*V*cp)\n",
    "\n",
    "# Result\n",
    "\n",
    "print(\"Time rate of temperature change \",round(dTbydt,3),\"C/s\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem 8 Page Number 15 "
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 55,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Heat Convected  1309.5 W/m2\n",
      "Heat Received  1303.428 W/m2\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "#variable declaration\n",
    "\n",
    "T1 = 160 # heat conducted in W/m\n",
    "\n",
    "T2 = 30 # temperature of wall in K\n",
    "\n",
    "sigma = 5.67 # Stefen-Boltzmann constant\n",
    "\n",
    "h = 45 # thermal conductivity in W/m2K\n",
    "\n",
    "A = 1 # area in meters sq\n",
    "\n",
    "#calculation\n",
    "\n",
    "# taking the approximate value from table 332 K\n",
    "\n",
    "Tapprox = 332.1 \n",
    "\n",
    "Hc = h*A*(Tapprox-(273+T2)) # Heat Convected in W/m2\n",
    "\n",
    "Hr = sigma*A*(((T1+273)/100)**4-(Tapprox/100)**4) # Heat received in W/m2\n",
    "\n",
    "# Result\n",
    "\n",
    "print(\"Heat Convected \",round(Hc,3),\"W/m2\")\n",
    "\n",
    "print(\"Heat Received \",round(Hr,3),\"W/m2\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem 9 Page number 16"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 60,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Total Heat loss case 1 150.6 W\n",
      "Total Heat loss case 2 81.9 W\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "#variable declaration\n",
    "\n",
    "T1 = 37 # temperature of body in  C\n",
    "\n",
    "T21 = 26 # temperature of air in C\n",
    "\n",
    "T22 = 5 # temperature of walls in room in C\n",
    "\n",
    "sigma = 5.67 # Stefen-Boltzmann constant\n",
    "\n",
    "h = 6 # Convective heat transfer coefficient W/m2K\n",
    "\n",
    "A = 0.6 # area in meters sq\n",
    "\n",
    "#calculation\n",
    "\n",
    "Hc = h*A*(T1-T21) # Heat Convected in W/m2\n",
    "\n",
    "Hr1 = sigma*A*(((T1+273)/100)**4-((T22+273)/100)**4) # Heat received in W/m2\n",
    "\n",
    "Ht1 = Hr1+Hc\n",
    "\n",
    "# calculate when temperature is 26C\n",
    "\n",
    "Hr2 = sigma*A*(((T1+273)/100)**4 - ((T21+273)/100)**4) # Heat received in W/m2\n",
    "\n",
    "Ht2 = Hc+Hr2\n",
    "\n",
    "print(\"Total Heat loss case 1\",round(Ht1,1),\"W\")\n",
    "\n",
    "print(\"Total Heat loss case 2\",round(Ht2,1),\"W\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem 10 Page number 16"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 63,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Net heat Gain 291.1 W\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "#variable declaration\n",
    "\n",
    "T1 = 37 # temperature of body in  C\n",
    "\n",
    "T21 = 650 # temperature of air in C\n",
    "\n",
    "T22 = 5 # temperature of walls in room in C\n",
    "\n",
    "sigma = 5.67 # Stefen-Boltzmann constant\n",
    "\n",
    "h = 6 # Convective heat transfer coefficient W/m2K\n",
    "\n",
    "A = 0.6 # area in meters sq\n",
    "\n",
    "F = 0.01 # fraction of radiation \n",
    "\n",
    "#calculation\n",
    "\n",
    "# Heat loss by convection in W\n",
    "\n",
    "Hc = h*A*(T1-T22)\n",
    "\n",
    "# Heat Gain by radiation\n",
    "\n",
    "Hr = sigma*F*(((T21+273)/100)**4 - ((T1+273)/100)**4) # Heat received in W/m2\n",
    "\n",
    "Hnet = Hr-Hc\n",
    "\n",
    "print(\"Net heat Gain\",round(Hnet,1),\"W\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem 11 Page number 16"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 66,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Equilibrium Temperature =  960.01 K\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "# Variable Declaration\n",
    "\n",
    "Q = 1500 # heat dissipation in W\n",
    "\n",
    "sigma = 5.67 # stefan-Boltzmann constant\n",
    "\n",
    "T2 = 288 # temperature in K\n",
    "\n",
    "r = 0.04 # radius in meters\n",
    "\n",
    "H = 0.25 # height in meters\n",
    "\n",
    "T1 = ((Q/(sigma*3.14*r*H)+(288/100)**4)*100**4)**(1/4)\n",
    "\n",
    "print(\"Equilibrium Temperature = \",round(T1,2),\"K\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem number 12 Page number 17"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 68,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Equilibrium Temperature =  62.0 C\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "# Variable declaration\n",
    "\n",
    "Hr = 800 # Heat Rate in W/m2\n",
    "\n",
    "h1 = 10 # convective heat transfer rate on back of plate in W/m2K\n",
    "\n",
    "h2 = 15 # convective heat transfer rate on front of plate in W/m2K\n",
    "\n",
    "T2 = 30 # temperature on both sides of the plate\n",
    "\n",
    "T = (Hr+h1*30+h2*30)/25\n",
    "\n",
    "print(\"Equilibrium Temperature = \",round(T,2),\"C\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem number 13 Page number 17"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 73,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "temperature of the plate 784.57 K\n",
      "heat transfer with sheet 19668.31 W\n",
      "heat transfer without sheet 39336.61 W\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "# Variable Declaration\n",
    "\n",
    "T1 = 650 # temperature from one side of the source in C\n",
    "\n",
    "T2 = 150 # temperature on other side of the surface in C\n",
    "\n",
    "sigma = 5.67 # stefan-boltzmann constant\n",
    "\n",
    "T = (((((T1+273)/100)**4 + ((T2+273)/100)**4)/2)*100**4)**(1/4)\n",
    "\n",
    "print(\"temperature of the plate\",round(T,2),\"K\")\n",
    "\n",
    "Q1 = sigma*(((T1+273)/100)**4 - (T/100)**4)\n",
    "\n",
    "print(\"heat transfer with sheet\",round(Q1,2),\"W\")\n",
    "\n",
    "Q2 = sigma*(((T1+273)/100)**4 - ((T2+273)/100)**4)\n",
    "\n",
    "print(\"heat transfer without sheet\",round(Q2,2),\"W\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem 14 Page number 18"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 83,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "COnvective heat trasnfer rate 375.0 W/m2K\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "# Variable Declaration\n",
    "\n",
    "Tair = 120 # temperature of air in C\n",
    "\n",
    "T1 = 42 # temperature of plate 1 in C\n",
    "\n",
    "T2 = 30 # temperature of plate 2 in C\n",
    "\n",
    "L = 0.01 # length of the slab in meters\n",
    "\n",
    "A = 1 # area in meters sq\n",
    "\n",
    "k = 22.5 # thermal conductivity in W/mK\n",
    "\n",
    "# Calculation\n",
    "\n",
    "Q = (T1-T2)/(L/(k*A))\n",
    "\n",
    "Tnew = T1+6\n",
    "\n",
    "h = Q/(A*(Tair-Tnew))\n",
    "\n",
    "print(\"COnvective heat trasnfer rate\",round(h,2),\"W/m2K\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem 15 Page number 19"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 87,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Efficiency of the collector when temperature is 32 deg C 47.5 %\n",
      "Efficiency of the collector when temperature is 45 deg C 75.62 %\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "# Variable declaration\n",
    "\n",
    "T1 = 60 # temperature of the tube in C\n",
    "\n",
    "T2 = 32 # temperature of air in C\n",
    "\n",
    "h = 15 # convective heat transfer in W/m2K\n",
    "\n",
    "A = 1 # area in meters sq\n",
    "\n",
    "Qf = 800 # heat flux in W/m2\n",
    "\n",
    "Tnew = 45 # new temperature in C\n",
    "\n",
    "# Calculation\n",
    "\n",
    "Q = h*A*(T1-T2) # heat transfer in W\n",
    "\n",
    "eff = ((Qf-Q)/Qf)*100\n",
    "\n",
    "print(\"Efficiency of the collector when temperature is 32 deg C\",round(eff,2),\"%\")\n",
    "\n",
    "# Heat lost by convection when T = 45 C\n",
    "\n",
    "Q2 = h*A*(Tnew-T2) # heat transfer in W\n",
    "\n",
    "eff1 = ((Qf-Q2)/Qf)*100 \n",
    "\n",
    "print(\"Efficiency of the collector when temperature is 45 deg C\",round(eff1,2),\"%\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem 16 Page Number 19"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 88,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Temperature of the air 428.89 C\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "# Variable declaration\n",
    "\n",
    "Tg = 40 # temperature of the glass plate in C\n",
    "\n",
    "dT = 5 # temperature graditent in C\n",
    "\n",
    "L = 0.001 # length in  meters\n",
    "\n",
    "k = 1.4 # conductive heat transfer coefficient in W/mK\n",
    "\n",
    "A = 1 # area in meters sq\n",
    "\n",
    "h = 18 # convective heat trasnfer coefficient in W/m2K\n",
    "\n",
    "# Calculation\n",
    "\n",
    "Q = dT/(L/(k*A))\n",
    "\n",
    "Tair = (Q/h)+ Tg\n",
    "\n",
    "print(\"Temperature of the air\",round(Tair,2),\"C\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem 17 Page number 20"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 89,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Temperature gradient in the solid -631.58 C/m\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "# Variable Declaration\n",
    "\n",
    "h = 30 # Convective heat transfer coefficient in W/m2K\n",
    "\n",
    "k = 9.5 # conductive heat trasnfer coefficient in W/mK\n",
    "\n",
    "T1 = 260 # temperature of the surface in C\n",
    "\n",
    "T2 = 60 # temperature of the air in C\n",
    "\n",
    "tempgrad = (h/k)*(T2-T1)\n",
    "\n",
    "print(\"Temperature gradient in the solid\",round(tempgrad,2),\"C/m\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem 18 Page number 20"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 90,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Steady state temperature of plate 313.33 K\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "# Variable Declaration\n",
    "\n",
    "A = 1 # area in meters sq\n",
    "\n",
    "h1 = 100 # convective heat transfer coeffcient in W/m2K\n",
    "\n",
    "h2 = 15 # convective heat transfer coeffcient in W/m2K\n",
    "\n",
    "# solving by trial and error we get T1 = 313.33 K\n",
    "\n",
    "T1 = 313.33 \n",
    "\n",
    "print(\"Steady state temperature of plate\",round(T1,2),\"K\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem 19 Page number 21"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 91,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Surface temperature 674.39 K\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "# Variable Declaration\n",
    "\n",
    "k = -22.5 # conductive heat trasnfer coefficient in W/mK\n",
    "\n",
    "tempgrad = -500 # temperature gradient in C/m\n",
    "\n",
    "sigma = 5.67 # stefan-boltzmann constant\n",
    "\n",
    "Ts = 303 # temperatre of surroundings in K\n",
    "\n",
    "# Calculation\n",
    "\n",
    "T2 = ((((k*tempgrad)/sigma)+(Ts/100)**4)*100**4)**(1/4)\n",
    "\n",
    "print(\"Surface temperature\",round(T2,2),\"K\")\n",
    "\n",
    "\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem 20 Page number 21"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 92,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Surface temperatrue 230.2 K\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "# variable declaration \n",
    "\n",
    "Hc = 2000 # heat generated in W\n",
    "\n",
    "r = 1 # radius in meters\n",
    "\n",
    "sigma = 5.67 # stefan boltzmann constant\n",
    "\n",
    "T2 = 0 # temperate of space in K\n",
    "\n",
    "# Calculation \n",
    "\n",
    "T = ((Hc/(4*3.14*r**2*sigma))*100**4)**(1/4)\n",
    "\n",
    "print(\"Surface temperatrue\",round(T,2),\"K\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Problem 21 page Number 22"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 93,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Temperature drop through the wall 1.33 C\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "# Variable Declaration\n",
    "\n",
    "Q = 10 # heat flux in W/m2\n",
    "\n",
    "A = 1 # area in meters sq\n",
    "\n",
    "k = 1.5 # thermal cnductivity in W/mK\n",
    "\n",
    "t = 0.2 # wall thockness in m\n",
    "\n",
    "# Calculation\n",
    "\n",
    "dT = (Q*t)/(k*A)\n",
    "\n",
    "print(\"Temperature drop through the wall\",round(dT,2),\"C\")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "anaconda-cloud": {},
  "kernelspec": {
   "display_name": "Python [default]",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.5.2"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 1
}