diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2870/CH4/EX4.13/Ex4_13.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
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');
|