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 --- 3705/CH3/EX3.1/Ex3_1.sce | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 3705/CH3/EX3.1/Ex3_1.sce (limited to '3705/CH3/EX3.1') diff --git a/3705/CH3/EX3.1/Ex3_1.sce b/3705/CH3/EX3.1/Ex3_1.sce new file mode 100644 index 000000000..1888f20e2 --- /dev/null +++ b/3705/CH3/EX3.1/Ex3_1.sce @@ -0,0 +1,22 @@ + +clear// + +//Variable Declaration +P=20*10**3 //Power in W +f=2 //Frequency in Hz +t_max=40*10**6 //Maximum shear stress in Pa +G=83*10**9 //Bulk modulus in Pa +theta=(6*%pi)/180 //Angle of twist in radians +L=3 //Length in m + +//Calculations +//Strength condition +T=P/(2*%pi*f) //Torque in N.m +d1=((16*T)/(%pi*t_max))**0.333 //Max allowable diameter in mm + +//Applying torque-twist relationship +d2=((32*T*L)/(G*theta*%pi))**0.25 //Diameter in mm + +d=max(d1,d2) + +printf("\n To satisfy both strength and rigidity conditions d= %0.1f mm",d*1000) -- cgit