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 --- 539/CH16/EX16.1.a/Example_16_1a.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 539/CH16/EX16.1.a/Example_16_1a.sce (limited to '539/CH16/EX16.1.a/Example_16_1a.sce') 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 -- cgit