You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
899 B
29 lines
899 B
C Copyright(C) 1999-2020 National Technology & Engineering Solutions
|
|
C of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
|
|
C NTESS, the U.S. Government retains certain rights in this software.
|
|
C
|
|
C See packages/seacas/LICENSE for details
|
|
|
|
SUBROUTINE TRBLK (IDELB, NUMELB, NUMLNK, MAT, NELBLK, NNODES)
|
|
DIMENSION IDELB(*), NUMELB(*), NUMLNK(*), MAT(6,*)
|
|
|
|
IBEG = 0
|
|
IEND = 0
|
|
DO 10 I=1, NELBLK
|
|
if (numlnk(i) .ne. nnodes) then
|
|
CALL PRTERR('FATAL',
|
|
* 'Numbers only handles 3D hex or 2D quadrilateral elements')
|
|
STOP 'Element Error'
|
|
else
|
|
IBEG = IEND + 1
|
|
IEND = IEND + NUMELB(I)
|
|
MAT(1,I) = IDELB(I)
|
|
MAT(2,I) = NUMELB(I)
|
|
MAT(3,I) = IBEG
|
|
MAT(4,I) = IEND
|
|
MAT(5,I) = 1
|
|
MAT(6,I) = I
|
|
end if
|
|
10 CONTINUE
|
|
RETURN
|
|
END
|
|
|