diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /698/CH15/EX15.11/P11_heat_from_brake_drive.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '698/CH15/EX15.11/P11_heat_from_brake_drive.sce')
-rw-r--r-- | 698/CH15/EX15.11/P11_heat_from_brake_drive.sce | 23 |
1 files changed, 23 insertions, 0 deletions
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 |