summaryrefslogtreecommitdiff
path: root/476/CH1/EX1.4/Example_1_4.sce
blob: 42bbba832b61aa9d913f2608469b01c844237348 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//A Textbook of Chemical Engineering Thermodynamics
//Chapter 1
//Introduction and Basic Concepts
//Example 4

clear;
clc;


//Given
F = 600; //weight in N
t = 120; //time in sec
h = 0.18; //height of stairs in m

//To determine the power developed in man
S = 20*h; //total vertical displacement in m
W = F*S; //work done in J
P = W/t; //power developed
mprintf('Power developed is %i W',P);


//end