Could somebody please explain why
real[int, int] IDeviatoric = [[2/3, -1/3, -1/3, 0, 0, 0],
[-1/3, 2/3, -1/3, 0, 0, 0],
[-1/3, -1/3, 2/3, 0, 0, 0],
[0, 0, 0, 1, 0, 0],
[0, 0, 0, 0, 1, 0],
[0, 0, 0, 0, 0, 1]];
cout << IDeviatoric << endl;
prints out
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 1 0 0
0 0 0 0 1 0
0 0 0 0 0 1
What happened with all the elements divided by 3? Jesus chirst …