diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3648/CH2/EX2.6 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3648/CH2/EX2.6')
-rw-r--r-- | 3648/CH2/EX2.6/Ex2_6.sce | 11 | ||||
-rw-r--r-- | 3648/CH2/EX2.6/Ex2_6.txt | 2 |
2 files changed, 13 insertions, 0 deletions
diff --git a/3648/CH2/EX2.6/Ex2_6.sce b/3648/CH2/EX2.6/Ex2_6.sce new file mode 100644 index 000000000..f4d6135d9 --- /dev/null +++ b/3648/CH2/EX2.6/Ex2_6.sce @@ -0,0 +1,11 @@ +//Example 2_6
+clc();
+clear;
+//To find the forces exerted bythe pedestals on the board
+tou=900 //units in Newtons
+d1=3 //units in Meters
+d2=1.5 //Units in Meters
+F1=-(tou*d1)/d2 //Units in Newtons
+F2=tou-F1 //units in Newtons
+printf("The First Force F1=%d N\n",F1)
+printf("The Second Force F2=%d N\n",F2)
diff --git a/3648/CH2/EX2.6/Ex2_6.txt b/3648/CH2/EX2.6/Ex2_6.txt new file mode 100644 index 000000000..4721f368c --- /dev/null +++ b/3648/CH2/EX2.6/Ex2_6.txt @@ -0,0 +1,2 @@ +The First Force F1=-1800 N
+The Second Force F2=2700 N
\ No newline at end of file |