diff options
Diffstat (limited to '3753/CH1/EX1.8/Ex1_8.sce')
-rw-r--r-- | 3753/CH1/EX1.8/Ex1_8.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3753/CH1/EX1.8/Ex1_8.sce b/3753/CH1/EX1.8/Ex1_8.sce new file mode 100644 index 000000000..59f5befe0 --- /dev/null +++ b/3753/CH1/EX1.8/Ex1_8.sce @@ -0,0 +1,16 @@ +//Example number 1.8, Page number 1.37 + +clc;clear;close + + +//Variable declaration +lamda=5890*10**-10 // in m +mu=1.5 // unitless +theta=60*%pi/180 //Converting in to degrees + +//Calculation + +t=(lamda)/(2*mu*(cos(theta))) // in m + +//Result +printf("Smallest thickness of plate,t=%0.4e m",t) |