OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
cbatempel.F File Reference
#include "implicit_f.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine cbatempel (jft, jlt, ng, ixc, temp, tempel)

Function/Subroutine Documentation

◆ cbatempel()

subroutine cbatempel ( integer jft,
integer jlt,
integer ng,
integer, dimension(nixc,*) ixc,
temp,
tempel )

Definition at line 30 of file cbatempel.F.

32 use element_mod , only : nixc
33C-----------------------------------------------
34C I m p l i c i t T y p e s
35C-----------------------------------------------
36#include "implicit_f.inc"
37C-----------------------------------------------
38C D u m m y A r g u m e n t s
39C-----------------------------------------------
40 INTEGER JFT, JLT,NG,IXC(NIXC,*)
41 my_real temp(*),tempel(*)
42C-----------------------------------------------
43C L o c a l V a r i a b l e s
44C-----------------------------------------------
45 INTEGER I,KSI ,ETA ,SF1,SF2 ,SF3 ,SF4
46 my_real
47 . vpg(2,4),pg1,pg
48 parameter(pg=.577350269189626)
49 parameter(pg1=-.577350269189626)
50C--------------------------
51C INITIALISATION
52C-------------------------
53 DATA vpg/pg1,pg1,pg,pg1,pg,pg,pg1,pg/
54C-----------------------------------------------
55C --- Temperature in Gauss point NG
56 ksi = vpg(1,ng)
57 eta = vpg(2,ng)
58
59 sf1 = (1-ksi)*(1-eta)
60 sf2 = (1+ksi)*(1-eta)
61 sf3 = (1+ksi)*(1+eta)
62 sf4 = (1-ksi)*(1+eta)
63
64 DO i=jft,jlt
65 tempel(i) = fourth * (sf1 *temp(ixc(2,i)) + sf2*temp(ixc(3,i)) +
66 . sf3 *temp(ixc(4,i)) + sf4*temp(ixc(5,i)) )
67 ENDDO
68C
69 RETURN
#define my_real
Definition cppsort.cpp:32