Skip to content

Commit aba9fd2

Browse files
authored
Merge pull request #101 from victorkemp/fix-issue-#99
Fix issue #99 shell orthotropic thermal strain
2 parents 0657f7e + a9efcdb commit aba9fd2

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

Source/EMG/EMG1/SHELL_ABD_MATRICES.f90

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,12 @@ SUBROUTINE SHELL_ABD_MATRICES ( INT_ELEM_ID, WRITE_WARN )
186186
ENDDO
187187

188188
DO I=1,3
189-
ALPM(I) = ALPVEC(I,1)
190189
ALPB(I) = ALPVEC(I,2)
191190
ENDDO
191+
192+
ALPM(1) = ALPVEC(1,1) ! xx
193+
ALPM(2) = ALPVEC(2,1) ! yy
194+
ALPM(3) = ALPVEC(4,1)*2 ! xy
192195

193196
CALL MATMULT_FFF ( EB, ALPB, 3, 3, 1, DUM )
194197
DO I=1,3

0 commit comments

Comments
 (0)