From 7bc77cb1ed33745c720952c92b3b2747c5cbf2df Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Sat, 3 Feb 2018 11:01:52 +0530 Subject: Added new code --- 3886/CH17/EX17.14/17_14.sce | 11 +++++++++++ 3886/CH17/EX17.14/17_14.txt | 5 +++++ 2 files changed, 16 insertions(+) create mode 100644 3886/CH17/EX17.14/17_14.sce create mode 100644 3886/CH17/EX17.14/17_14.txt (limited to '3886/CH17/EX17.14') diff --git a/3886/CH17/EX17.14/17_14.sce b/3886/CH17/EX17.14/17_14.sce new file mode 100644 index 000000000..0c1e94235 --- /dev/null +++ b/3886/CH17/EX17.14/17_14.sce @@ -0,0 +1,11 @@ +//car and lorry +//refer fig. 17.13 (a) and (b) +//Let the velocity of vehicle after collision be vx in x direction and vy in y direction +vx=18 //kmph +//applying impulse momentum equation in y-direction +vy=12 //kmph +//Resultant velocity +v=sqrt((vx^2)+(vy^2)) //kmph +//its inclination to main road +theta=atand(vy/vx) //degree +printf("\nv=%.3f kmph\ntheta=%.3f degree",v,theta) diff --git a/3886/CH17/EX17.14/17_14.txt b/3886/CH17/EX17.14/17_14.txt new file mode 100644 index 000000000..50f934b3e --- /dev/null +++ b/3886/CH17/EX17.14/17_14.txt @@ -0,0 +1,5 @@ + +--> exec('E:\My program EM\17. Impulse momentum\17.14.sce', -1) + +v=21.633 kmph +theta=33.690 degree \ No newline at end of file -- cgit