diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2921/CH20/EX20.2/Ex20_2.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2921/CH20/EX20.2/Ex20_2.sce')
-rwxr-xr-x | 2921/CH20/EX20.2/Ex20_2.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2921/CH20/EX20.2/Ex20_2.sce b/2921/CH20/EX20.2/Ex20_2.sce new file mode 100755 index 000000000..af6c7f4df --- /dev/null +++ b/2921/CH20/EX20.2/Ex20_2.sce @@ -0,0 +1,18 @@ +clc; +clear; +mprintf('MACHINE DESIGN \n Timothy H. Wentzell, P.E. \n EXAMPLE-20.2 Page No.432\n'); + +//Dynamic load capacity +T=200; +n=1750; +L=T*n*60/10^6; +Pd=2400; +Ld=21; +Lc=1; +k=1/3; + +Cd=Pd*(Ld/Lc)^k + +mprintf('\n Dynamic load capacity required = %f lb.',Cd); + +mprintf('\n Bearing 6211 meets this criterion.'); |