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 /539/CH16/EX16.2 | |
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 '539/CH16/EX16.2')
-rwxr-xr-x | 539/CH16/EX16.2/Example_16_2.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/539/CH16/EX16.2/Example_16_2.sce b/539/CH16/EX16.2/Example_16_2.sce new file mode 100755 index 000000000..61f618d10 --- /dev/null +++ b/539/CH16/EX16.2/Example_16_2.sce @@ -0,0 +1,16 @@ +//Elastic Modulus Determination for a Glass Fiber-Reinforced Composite—Transverse Direction
+
+clear;
+clc;
+
+printf("\tExample 16.2\n");
+E_gf=69; // in GPa Elasticity of glass fibre
+mf_gf=0.4; //Vol % of glass fibre
+E_pr=3.4; // in GPa Elasticity of poyester resin
+mf_pr=0.6; //Vol % of polyester resin
+
+E_ct=E_pr*E_gf/((E_pr*mf_gf)+(E_gf*mf_pr)); //GPa
+
+printf("\nIn transverse direction, modulus of elaticity is : %f GPa\n",E_ct);
+
+//End
\ No newline at end of file |