#include "implicit_f.inc"
#include "mvsiz_p.inc"
Go to the source code of this file.
◆ s10nxt4()
| subroutine s10nxt4 |
( |
| nx, |
|
|
integer | nel ) |
Definition at line 29 of file s10nxt4.F.
30
31
32
33#include "implicit_f.inc"
34
35
36
37#include "mvsiz_p.inc"
38
39
40
41 INTEGER NEL
43
44
45
46 INTEGER I,IP,K1,K2,K3,K4
47 INTEGER IPERM(4,4)
48
49 DATA iperm/
50 . 2, 4, 3, 1,
51 . 4, 1, 3, 2,
52 . 1, 4, 2, 3,
53 . 1, 2, 3, 4/
55
56 alph=zep5854102
57 beta=zep1381966
58
59 DO ip=1,4
60 k1 = iperm(1,ip)
61 k2 = iperm(2,ip)
62 k3 = iperm(3,ip)
63 k4 = iperm(4,ip)
64 DO i=1,nel
65 nx(i,k1,ip) = beta
66 nx(i,k2,ip) = beta
67 nx(i,k3,ip) = beta
68 nx(i,k4,ip) = alph
69 ENDDO
70 ENDDO
71
72 RETURN