#include "implicit_f.inc"
Go to the source code of this file.
|
| subroutine | i21fpen (nsn, i_stok, cand_n, cand_e, peni, ftxsav, ftysav, ftzsav, cand_tag, ifpen, inacti) |
◆ i21fpen()
| subroutine i21fpen |
( |
integer | nsn, |
|
|
integer | i_stok, |
|
|
integer, dimension(*) | cand_n, |
|
|
integer, dimension(*) | cand_e, |
|
|
| peni, |
|
|
| ftxsav, |
|
|
| ftysav, |
|
|
| ftzsav, |
|
|
integer, dimension(*) | cand_tag, |
|
|
integer, dimension(*) | ifpen, |
|
|
integer | inacti ) |
Definition at line 28 of file i21fpen.F.
32
33
34
35#include "implicit_f.inc"
36
37
38
39
40
41
42
43
44
45 INTEGER I_STOK,NSN,
46 INTEGER CAND_N(*), CAND_E(*), IFPEN(*), CAND_TAG(*)
47
49 . ftxsav(*), ftysav(*), ftzsav(*), peni(*)
50
51
52
53 INTEGER I, N
54
55
56 DO n=1,nsn
57 cand_tag(n) = 0
58 END DO
59
60 DO i=1,i_stok
61 n = cand_n(i)
62 cand_tag(n)=1
63 END DO
64
65 DO n=1,nsn
66 IF(cand_tag(n)==0.AND.ifpen(n)/=0)THEN
67 ftxsav(n)=zero
68 ftysav(n)=zero
69 ftzsav(n)=zero
70 peni(n) =zero
71 ifpen(n) =0
72 END IF
73 END DO
74
75 RETURN