diff options
author | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
commit | f35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch) | |
tree | eb72842d800ac1233e9d890e020eac5fd41b0b1b /3434/CH9/EX9.1.iii/Ex9_1_iii.sce | |
parent | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff) | |
download | Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2 Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip |
updated the code
Diffstat (limited to '3434/CH9/EX9.1.iii/Ex9_1_iii.sce')
-rw-r--r-- | 3434/CH9/EX9.1.iii/Ex9_1_iii.sce | 48 |
1 files changed, 25 insertions, 23 deletions
diff --git a/3434/CH9/EX9.1.iii/Ex9_1_iii.sce b/3434/CH9/EX9.1.iii/Ex9_1_iii.sce index 6387a3e1d..5b1af1f5e 100644 --- a/3434/CH9/EX9.1.iii/Ex9_1_iii.sce +++ b/3434/CH9/EX9.1.iii/Ex9_1_iii.sce @@ -1,23 +1,25 @@ -clc
-// given data
-G=39.0 // temperature gradient in K/km.
-h2=10.0 // depth in km
-rhor=2700.0 // kg/m^3
-cr=820.0 // in J/kg-K
-
-h1=120/G // T1-T0=120 K is given
-h21=h2-h1 // in km
-E0byA=(rhor*(1000**3)*G*cr*h21**2)/2 // in J/km^2 Heat content per square km
-
-thetao=G*h21/2.0 // in degree K
-tau=rhor*cr*h21*(1000**3)/(QbyA*rhow*cw) // in seconds
-tau=tau/(2*60*60*24*365) // in years
-theta=thetao*exp(-t/tau) // in degree Kelvin
-
-Heatinitial=E0byA/(60*60*365*24*tau)/1000000 // intial heat extraction rate in MW /km^2
-
-Heat25=Heatinitial*exp(-t/tau) // heat extraction rate after 25 years in MW /km^2
-
-printf( "Initial Heat extraction rate is %.2f MW/km^2",Heatinitial)
-
-printf(" \n Final Heat extraction rate is %.2f MW/km^2",Heat25)
+clc +// given data +G=39.0 // temperature gradient in K/km. +h2=10.0 // depth in km +rhow = 1000; +rhor=2700.0 // kg/m^3 +cr=820.0 // in J/kg-K +cw=4200.0; // specific heat of water in J/kg-K +QbyA=0.5; +h1=120/G // T1-T0=120 K is given +h21=h2-h1 // in km +E0byA=(rhor*(1000**3)*G*cr*h21**2)/2 // in J/km^2 Heat content per square km +t=25 // time in years +thetao=G*h21/2.0 // in degree K +tau=rhor*cr*h21*(1000**3)/(QbyA*rhow*cw) // in seconds +tau=tau/(2*60*60*24*365) // in years +theta=thetao*exp(-t/tau) // in degree Kelvin + +Heatinitial=E0byA/(60*60*365*24*tau)/1000000 // intial heat extraction rate in MW /km^2 + +Heat25=Heatinitial*exp(-t/tau) // heat extraction rate after 25 years in MW /km^2 + +printf( "Initial Heat extraction rate is %.2f MW/km^2",Heatinitial) + +printf(" \n Final Heat extraction rate is %.2f MW/km^2",Heat25)
\ No newline at end of file |