#include "implicit_f.inc"
#include "com04_c.inc"
Go to the source code of this file.
◆ addmast10()
| subroutine addmast10 |
( |
integer, dimension(3,ns10e), intent(in) | icnds10, |
|
|
intent(inout) | ms ) |
Definition at line 28 of file addmast10.F.
29
30
31
32
33#include "implicit_f.inc"
34
35
36
37#include "com04_c.inc"
38
39
40
41 INTEGER, DIMENSION(3,NS10E) ,INTENT(IN):: ICNDS10
42 my_real,
DIMENSION(NUMNOD) ,
INTENT(INOUT):: ms
43
44
45
46
47 INTEGER I,J,ND,,N2
48
50 . facirot,masd
51
52 facirot = nine + third
53 DO i=1,ns10e
54 nd = icnds10(1,i)
55 n1 = icnds10(2,i)
56 n2 = icnds10(3,i)
57 masd = half*ms(nd)
58 ms(n1) = ms(n1) + masd
59 ms(n2) = ms(n2) + masd
60 ms(nd) = ms(nd) *facirot
61 END DO
62
63 RETURN