diff options
Diffstat (limited to '3816/CH4/EX4.1/4_1.sce')
-rw-r--r-- | 3816/CH4/EX4.1/4_1.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3816/CH4/EX4.1/4_1.sce b/3816/CH4/EX4.1/4_1.sce new file mode 100644 index 000000000..f9855ea21 --- /dev/null +++ b/3816/CH4/EX4.1/4_1.sce @@ -0,0 +1,19 @@ +clc;
+clear;
+G=41;//Mass
+P=110;//Total loss
+S=0.1;//Cooling surface area
+lamda=29;//Emissivity
+Cp=420;//Specific heat of the machine
+theta_m=P/(S*lamda);
+disp(theta_m,'Final steady temperature rise:')
+Tow=(G*Cp)/(S*lamda);
+disp(Tow,'Time constant is:')
+t=[1:0.01:8];
+T=((-t)/(Tow/3600));
+theta=38*(1-exp(T));//The temperature rise time relation is
+theta_t=theta_m/Tow;
+disp(theta_t,'Initial rate of rise is:')
+plot(t,theta);
+xlabel('Temperature rise/Time relation (h)');
+ylabel('Temperature rise(deg C)')
|