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.1.a/Example_16_1a.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 '539/CH16/EX16.1.a/Example_16_1a.sce')
-rwxr-xr-x | 539/CH16/EX16.1.a/Example_16_1a.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/539/CH16/EX16.1.a/Example_16_1a.sce b/539/CH16/EX16.1.a/Example_16_1a.sce new file mode 100755 index 000000000..b3165dc9d --- /dev/null +++ b/539/CH16/EX16.1.a/Example_16_1a.sce @@ -0,0 +1,16 @@ +clear;
+clc;
+
+x=poly([0],'x');
+printf("\tExample 16.1\n");
+
+printf("\n\tPart A");
+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_cl=(E_pr*mf_pr)+(E_gf*mf_gf);
+printf("\nModulus of elasticity of composite is : %f GPa\n",E_cl);
+
+//End
\ No newline at end of file |