summaryrefslogtreecommitdiff
path: root/587/CH3/EX3.17/example3_17.sce
diff options
context:
space:
mode:
Diffstat (limited to '587/CH3/EX3.17/example3_17.sce')
-rwxr-xr-x587/CH3/EX3.17/example3_17.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/587/CH3/EX3.17/example3_17.sce b/587/CH3/EX3.17/example3_17.sce
new file mode 100755
index 000000000..80dd7d4f5
--- /dev/null
+++ b/587/CH3/EX3.17/example3_17.sce
@@ -0,0 +1,16 @@
+clear;
+clc;
+
+//Example13.17[The R value of a Wall with Rigid Foam]
+//Given:-
+//using values from previous example
+R_old=2.23;//AS written in book[m^2.degree Celcius/W]
+//R value of of the fibreboard and the foam insulation, respectively
+R_removed=0.23;//[m^2.degree Celcius/W]
+R_added=0.98;//[m^2.degree Celcius/W]
+//Solution:-
+R_new=R_old-R_removed+R_added;//[m^2.degree Celcius/W]
+increase=((R_new-R_old)/R_old)*100;
+disp("m^2.degree Celcius/W",R_old,"Old R value is")
+disp("m^2.degree Celcius/W",R_new,"New R value is")
+disp(increase,"Percent increase in R-value") \ No newline at end of file