Fibers orientation

Is it possible to create different orientations of fiber in cubit?

Hi @Nikhil231998,

Cubit does not have built in capability to support orthotropic materials. As a material model no.

I have seen people create geometric sections corresponding to a fiber angle and assign properties to a block defined by each geometric section. Doing that is a significant project.

Thanks,
Karl

For changing the fiber orientation, changing orientation of mesh will work?

Here is what I have seen before. The user was creating a test coupon. You can then assign angles to the element sets (blocks) in your analysis code. I don’t know if that captures your use case.

Karl

reset
create vertex 0 0 0
create vertex 1 0 0
create vertex 2 3 0
create surface parallelogram vertex 1 2 3 
surface 1 copy move x 1 repeat 5
Surface all copy reflect origin 1 3 0  direction 0 1 0  
Surface all copy reflect origin 1 6 0  direction 0 1 0  
webcut volume all with general plane x move to location at vertex 53    
delete volume 25 to 28
webcut volume 18 24 12 6  with general plane x move to location at vertex 70  
delete volume 6, 12, 18, 24
imprint all 
merge all

block 1 surf 2 to 5 25 40 20 to 23 31 36
block 2 surf 8 to 11 27 38 14 to 17 29 34

mesh surf all

Thankyou for your help.