summaryrefslogtreecommitdiff
path: root/2138/CH5/EX5.4/EX_5_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '2138/CH5/EX5.4/EX_5_4.sce')
-rwxr-xr-x2138/CH5/EX5.4/EX_5_4.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/2138/CH5/EX5.4/EX_5_4.sce b/2138/CH5/EX5.4/EX_5_4.sce
new file mode 100755
index 000000000..e3fc8f12d
--- /dev/null
+++ b/2138/CH5/EX5.4/EX_5_4.sce
@@ -0,0 +1,13 @@
+//Example 5.4 // potential difference across the heater element
+clc;
+clear;
+close;
+w=20;// in kg
+t1=10;// in degree celsius
+t2=90;//in degree celsius
+t=2*3600+19*60+34;// time in seconds
+I=4;// in ampere
+n=80;//efficiency of conversion in percentage
+ho=w*(t2-t1);//output heat required in kcal
+V=((ho*4187*100)/(I*t*n));// POTENTIAL DROP IN VOLTS
+disp(V,"potential drop across heater element in volts is")