blob: 59f5befe018b0220d2d9d41392950cec71257c0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)
|