diff options
Diffstat (limited to '3753/CH6/EX6.1/Ex6_1.sce')
-rw-r--r-- | 3753/CH6/EX6.1/Ex6_1.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3753/CH6/EX6.1/Ex6_1.sce b/3753/CH6/EX6.1/Ex6_1.sce new file mode 100644 index 000000000..af0634043 --- /dev/null +++ b/3753/CH6/EX6.1/Ex6_1.sce @@ -0,0 +1,16 @@ +//Example number 6.1, Page number 6.46 + +clc;clear;close + + +// Variable declaration +El=10**-2*50; // energy loss(J) +H=El*60; // heat produced(J) +d=7.7*10**3; // iron rod(kg/m**3) +s=0.462*10**-3; // specific heat(J/kg K) + +// Calculation +theta=H/(d*s); // temperature rise(K) + +// Result +printf("temperature rise is %.2f K",(theta)) |