CGPACK progress, FEB-2015

CGPACK > FEB-2015

previous | UP | next

Download CGPACK Download CGPACK
Download CGPACK
Download CGPACK

13-FEB-2015: Further ParaFEM/CGPACK multi-scale model results.

Now feedback to ParaFEM from CGPACK has been added. The prototype is very simple - some damage variable, D , is calculated based on the fracture on the CA scale. Initially, D = 1 . When the damage is so extensive, that a volume of material has no remaining load bearing capacity, then D = 0 . In other words, similar to ideas of Rabotnov and Lemaitre. The Young's modulus at the FE scale, E , is updated as E = E 0 D .

The FE models is a 10mm by 10mm by 10mm cube of steel with typical properties: Young's modulus is 200GPa and the Poisson's ratio is 0.33. The model is taken from Program 12.1 from Lee Margett's Chapter 12 of the book "Programming the Finite Element Method", 5th Edition. The BC are u 1 ( x 1 = 0 ) = 0 , u 2 ( x 2 = 0 ) = 0 , u 3 ( x 3 = 0 ) = 0 . The tensile load is applied along x3 at x3=10mm. The load is distributed along a small patch around x1=x2=0. The load is increased in 5 load increments from 0 to 1kN.

Polycrystalline microstructure is populated in the whole model. There are 1000 grains, i.e. the mean grain size is 1mm. The mean grain size is deliberately taken much higher than in a typical mild steel, to speed up the calculations in this proof of concept example. The grain resolution is 10,000, meaning that each grain is represented, on average, by 10,000 cellular automata cells.

The fracture length scale is the length a cleavage crack will propagate per unit of time. In other words the fracture length is equivalent to the cleavage speed. In this example it is taken as 1 km/s. As this is a quasi-static model, there are no time increments. Artificial time increments are linked to the load increments, as:


! no real time increments in this problem, so use the inverse
! of the number of load iterations.
cgca_time_inc = 1.0_rdef / cgca_linum * 1.0e-4

! run cleavage for a correct number of iterations, which is a function
! of the characteristic length and the time increment
cgca_clvg_iter = nint( cgca_length * cgca_lres * cgca_time_inc )

Below is the contour plot of u3, produced by FE. Note that the max. displacement is now over two times greater than before. The difference is due to damage on CA scale being passed over to FE scale via the reduction of the Young's modulus.

FE displacements

A single microcrack, which acts as the cleavage nucleus, was positioned at x1=x2=0, x3=5mm.

Results on CA scale are shown below.

Grain boundaries:

GB

Cracks, green are on {110} planes, yellow are on {100} planes:

cracks

Cracks superimposed over semi-transparent grain boundaries.

cracks+GB

previous | UP | next