diff options
Diffstat (limited to '3763/CH12/EX12.6/Ex12_6.sce')
-rw-r--r-- | 3763/CH12/EX12.6/Ex12_6.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3763/CH12/EX12.6/Ex12_6.sce b/3763/CH12/EX12.6/Ex12_6.sce new file mode 100644 index 000000000..6826d3552 --- /dev/null +++ b/3763/CH12/EX12.6/Ex12_6.sce @@ -0,0 +1,19 @@ +clear +// +// +// + +//Variable declaration +E=35*10**10 //youngs modulus(Pa) +gama=2 //specific surface energy(J/m**2) +C=2*10**-6 //length(m) +x=17700 +y=2.1 +z=31.25 + +//Calculation +sigma_f=sqrt(2*E*gama/(%pi*C)) //fracture stress(Pa) +T=x/((sigma_f/(9.8*10**6))-y+z) //transition temperature(K) + +//Result +printf("\n transition temperature is %0.0f K",T) |