From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3648/CH2/EX2.6/Ex2_6.sce | 11 +++++++++++ 3648/CH2/EX2.6/Ex2_6.txt | 2 ++ 2 files changed, 13 insertions(+) create mode 100644 3648/CH2/EX2.6/Ex2_6.sce create mode 100644 3648/CH2/EX2.6/Ex2_6.txt (limited to '3648/CH2/EX2.6') 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 -- cgit