diff options
Diffstat (limited to '3763/CH12/EX12.1/Ex12_1.sce')
-rw-r--r-- | 3763/CH12/EX12.1/Ex12_1.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3763/CH12/EX12.1/Ex12_1.sce b/3763/CH12/EX12.1/Ex12_1.sce new file mode 100644 index 000000000..7f5cc48d1 --- /dev/null +++ b/3763/CH12/EX12.1/Ex12_1.sce @@ -0,0 +1,15 @@ +clear +// +// +// + +//Variable declaration +sigma0=8.55 +K=2.45 +sigma=10**-3 //steel size(mm) + +//Calculation +sigma=sigma0+(K/sqrt(sigma)) //yield strength + +//Result +printf("\n yield strength is %0.3f kg/mm**2",sigma) |