Okay, so I've come to terms with the fact that ABAQUS won't let me get DG into my fil. So I'm just going to take the displacements and initial coordinates and get DG the old fashioned way. This means I have to modify some Fortran codes that work with a USUB we have here. It's the ABQMAIN USUB and we have this:
...
ELSE IF (KEY.EQ.30) THEN
F(1,1)=ARRAY(3)
F(2,2)=ARRAY(4)
F(3,3)=ARRAY(5)
F(1,2)=ARRAY(6)
F(1,3)=0
F(2,3)=0
F(2,1)=0
F(3,1)=0
F(3,2)=ARRAY(7)
...
ARRAY(3) and so on were taking values of DG from the fil. Since I'm now exporting the fil with u and X does anyone have any idea what I should be putting in for the values of the ARRAY. I have no clue how the fil file is structured.