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 --- 698/CH15/EX15.11/P11_heat_from_brake_drive.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 698/CH15/EX15.11/P11_heat_from_brake_drive.sce (limited to '698/CH15/EX15.11/P11_heat_from_brake_drive.sce') diff --git a/698/CH15/EX15.11/P11_heat_from_brake_drive.sce b/698/CH15/EX15.11/P11_heat_from_brake_drive.sce new file mode 100644 index 000000000..40cb9357c --- /dev/null +++ b/698/CH15/EX15.11/P11_heat_from_brake_drive.sce @@ -0,0 +1,23 @@ +clc +//Example 15.11 +// Heat from brake drive + +//------------------------------------------------------------------------------ +//Given Data: + +T_atm=28 +T_surf=228 +Ar=6 +C=44 + +res11= mopen(TMPDIR+'11_heat_from_brake_drive.txt','wt') + +Hd=C*(T_surf-T_atm)*Ar +mfprintf(res11,'Hd=C*(T_surf-T-atm)*Ar\n') +mfprintf(res11,'Hd = %0.1f kW',Hd * 1e-3) + +mclose(res11); +editor(TMPDIR+'11_heat_from_brake_drive.txt') + +//------------------------------------------------------------------------------ +//--------------------------------End of program-------------------------------- \ No newline at end of file -- cgit