From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3850/CH28/EX28.4/Ex28_4.sce | 20 ++++++++++++++++++++ 3850/CH28/EX28.4/Ex28_4.txt | 2 ++ 2 files changed, 22 insertions(+) create mode 100644 3850/CH28/EX28.4/Ex28_4.sce create mode 100644 3850/CH28/EX28.4/Ex28_4.txt (limited to '3850/CH28/EX28.4') 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 -- cgit