summaryrefslogtreecommitdiff
path: root/1394/CH21/EX21.1.2/Ex21_1_2.sce
blob: 11725ad9fffbb42caafb17992bd621f1c6fb5056 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17


clc
//initialization of variables
Tdisc = 30 // Centigrade
T = 21 // Centigrade
T0 = 18 // Centigrade
R0 = 1.5 // cm
V = 1000 // cc
t = 3600 //seconds
Nu = 0.082 //cm^2/sec
omeg = 2*%pi*10/60 //sec^-1
//Calculations
k = -V*(log((Tdisc-T)/(Tdisc-T0)))/(%pi*(R0^2)*t)// k = h/d*cp cm/sec
alpha = ((1/0.62)*(k)*(Nu^(1/6))*(omeg^(-0.5)))^1.5 // cm^2/sec
//Results
printf("the value of thermal diffusivity is %.1e cm^2/sec",alpha)