#include "implicit_f.inc"
#include "mvsiz_p.inc"
Go to the source code of this file.
|
| subroutine | sxfillopt (npe, fill, sti, fx, fy, fz, nel) |
◆ sxfillopt()
| subroutine sxfillopt |
( |
integer | npe, |
|
|
| fill, |
|
|
| sti, |
|
|
| fx, |
|
|
| fy, |
|
|
| fz, |
|
|
integer, intent(in) | nel ) |
Definition at line 30 of file sxfillopt.F.
33
34
35
36#include "implicit_f.inc"
37
38
39
40#include "mvsiz_p.inc"
41
42
43
44
45
46
47 INTEGER, INTENT(IN) :: NEL
48 INTEGER NPE
50 . fill(*),sti(*),
51 . fx(mvsiz,npe), fy(mvsiz,npe), fz(mvsiz,npe)
52
53
54
55 INTEGER I,J
56
57 DO i=1,nel
58 sti(i)=fill(i)*sti(i)
59 END DO
60 DO j=1,npe
61 DO i=1,nel
62 fx(i,j)=fill(i)*fx(i,j)
63 fy(i,j)=fill(i)*fy(i,j)
64 fz(i,j)=fill(i)*fz(i,j)
65 END DO
66 END DO
67
68 RETURN