Difference between revisions of "Composite analysis"
From CAELinuxWiki
| Line 17: | Line 17: | ||
==Creating the mesh== | ==Creating the mesh== | ||
===GMSH=== | ===GMSH=== | ||
| + | |||
| + | cs=60; | ||
| + | |||
| + | Point(1)={0,0,0,cs}; | ||
| + | Point(2)={1000/3,0,100,cs}; | ||
| + | Point(3)={2000/3,0,100,cs}; | ||
| + | Point(4)={1000,0,0,cs}; | ||
| + | |||
| + | Spline(1)={1:4}; | ||
| + | |||
| + | |||
| + | Extrude {0, 2000, 0} { | ||
| + | Line{1}; Layers{20}; Recombine; | ||
| + | } | ||
| + | |||
| + | |||
| + | [[Image:Example.jpg]] | ||
| + | |||
| + | |||
===Salome=== | ===Salome=== | ||
Revision as of 11:11, 23 March 2009
This page will be a place to share information involving composite analysis with code_aster. Any help and experience will be wellcame. Please, write comments, ideas, tips, ... in the discussion page. josefrancisco.lopezmarin@gmail.com
Contents
Specimen
Orthotropic materials
Fiber glass:
-
,
-
-
,
Foam:
Creating the mesh
GMSH
cs=60;
Point(1)={0,0,0,cs}; Point(2)={1000/3,0,100,cs}; Point(3)={2000/3,0,100,cs}; Point(4)={1000,0,0,cs};
Spline(1)={1:4};
Extrude {0, 2000, 0} {
Line{1}; Layers{20}; Recombine;
}

