summaryrefslogtreecommitdiff
path: root/647/CH1/EX1.6/Example1_6.sce
blob: 805672ba328ba99239aa75f5f67ddebd91f3b595 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
clear;
clc;

// Example: 1.6
// Page: 9

// Solution

printf("Example: 1.6 - Page: 9\n\n");

//*****Data*****//
F = 150;// [N]
Displacement = 10;// [m]
//**************//

W = F*Displacement;// [J]

printf("Work done by the system is %d J\n",W);