#include "implicit_f.inc"
Go to the source code of this file.
|
| subroutine | s8etotsh10 (mb, bxx, byy, bzz, bxy, byz, bxz, nel) |
◆ s8etotsh10()
| subroutine s8etotsh10 |
( |
| mb, |
|
|
| bxx, |
|
|
| byy, |
|
|
| bzz, |
|
|
| bxy, |
|
|
| byz, |
|
|
| bxz, |
|
|
integer | nel ) |
Definition at line 28 of file s8etotsh10.F.
31
32
33
34#include "implicit_f.inc"
35
36
37
38
39
40
41 INTEGER NEL
42
44 . mb(nel,6),bxx(*),byy(*),bzz(*),
45 . bxy(*),bxz(*),byz(*)
46
47
48
49 INTEGER I
50
51 DO i=1,nel
52 mb(i,1) = bxx(i)
53 mb(i,2) = byy(i)
54 mb(i,3) = bzz(i)
55 mb(i,4) = bxy(i)
56 mb(i,5) = byz(i)
57 mb(i,6) = bxz(i)
58 END DO
59
60 RETURN