diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3850/CH28/EX28.4 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3850/CH28/EX28.4')
-rw-r--r-- | 3850/CH28/EX28.4/Ex28_4.sce | 20 | ||||
-rw-r--r-- | 3850/CH28/EX28.4/Ex28_4.txt | 2 |
2 files changed, 22 insertions, 0 deletions
diff --git a/3850/CH28/EX28.4/Ex28_4.sce b/3850/CH28/EX28.4/Ex28_4.sce new file mode 100644 index 000000000..8bff3c869 --- /dev/null +++ b/3850/CH28/EX28.4/Ex28_4.sce @@ -0,0 +1,20 @@ + +//To calculate the Net Rate of Heat Loss
+
+//Example 28.4
+
+clear;
+
+clc;
+
+A=10*10^-4;//Surface Area of Blackbody in m^2
+
+T=400;//Initial Temperature in Kelvin
+
+T0=300;//Final Temperature in Kelvin
+
+Sigma=5.67*10^-8;//Stefan Constant
+
+delU=Sigma*A*(T^4-T0^4);//Net Rate of Heat Loss
+
+printf("The net rate of loss of heat is=%2f W",delU);
diff --git a/3850/CH28/EX28.4/Ex28_4.txt b/3850/CH28/EX28.4/Ex28_4.txt new file mode 100644 index 000000000..a4b04eb10 --- /dev/null +++ b/3850/CH28/EX28.4/Ex28_4.txt @@ -0,0 +1,2 @@ + + The net rate of loss of heat is=0.992250 W
\ No newline at end of file |