blob: 055077204fc4cea6acd7f4e7a3ea81eae52b9b5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clc;clear;
//Example 4.13
//given data
maf=0.15;
caf=3.8;
dTaf=1.8;//suffix af for affected tissue
mh=1.2;///suffix h for hand
//calculations
//Ein - Eout = Esystem
//dUaffected tissue - KEhand = 0
//from above equation we can deduce that
Vhand= sqrt(2*maf*caf*dTaf*1000/mh);//for conversion factor mutiplying by 1000 to get m^2/s^2
disp(Vhand,'the velocity of the hand just before impact in m/s');
|