From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 3456/CH13/EX13.3/Exx13_3.sce | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 3456/CH13/EX13.3/Exx13_3.sce (limited to '3456/CH13/EX13.3/Exx13_3.sce') diff --git a/3456/CH13/EX13.3/Exx13_3.sce b/3456/CH13/EX13.3/Exx13_3.sce new file mode 100644 index 000000000..cb70baa6c --- /dev/null +++ b/3456/CH13/EX13.3/Exx13_3.sce @@ -0,0 +1,12 @@ +//Example 13.3 +//Prediction of long time properties +//Page No. 464 +clc;clear;close; + +t=10^5; //in hr +C1=20; //in no unit +T1=1200; //in Fahrenheit +T2=1600; //in Fahrenheit +P_1200=(T1+460)*(log10(t)+C1); +P_1600=(T2+460)*(log10(t)+C1); +printf('\nAt T = 1200 F, P = %g\nAt T = 1600 F, P = %g\nAnd from the master ploy of Astroploy, corresponding stress required are sigma = 78000 psi and sigma = 11000 psi',P_1200,P_1600); -- cgit