#include "implicit_f.inc"
Go to the source code of this file.
|
| subroutine | tempcg (numnod, nel, ixc, temp, tempel) |
◆ tempcg()
| subroutine tempcg |
( |
integer, intent(in) | numnod, |
|
|
integer, intent(in) | nel, |
|
|
integer, dimension(nixc,*) | ixc, |
|
|
| temp, |
|
|
| tempel ) |
Definition at line 33 of file tempcg.F.
34 use element_mod , only : nixc
35
36
37
38#include "implicit_f.inc"
39
40
41
42 INTEGER ,INTENT(IN) :: NUMNOD
43 INTEGER ,INTENT(IN) :: NEL
44 INTEGER IXC(NIXC,*)
47
48
49
50 INTEGER I
51
52
53 DO i=1,nel
54 tempel(i) = fourth * (temp(ixc(2,i)) + temp(ixc(3,i)) +
55 . temp(ixc(4,i)) + temp(ixc(5,i)) )
56 ENDDO
57
58 RETURN