diff options
Diffstat (limited to '2870/CH4/EX4.13/Ex4_13.sce')
-rwxr-xr-x | 2870/CH4/EX4.13/Ex4_13.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2870/CH4/EX4.13/Ex4_13.sce b/2870/CH4/EX4.13/Ex4_13.sce new file mode 100755 index 000000000..055077204 --- /dev/null +++ b/2870/CH4/EX4.13/Ex4_13.sce @@ -0,0 +1,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');
|