OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
s8ztempel.F
Go to the documentation of this file.
1Copyright> OpenRadioss
2Copyright> Copyright (C) 1986-2025 Altair Engineering Inc.
3Copyright>
4Copyright> This program is free software: you can redistribute it and/or modify
5Copyright> it under the terms of the GNU Affero General Public License as published by
6Copyright> the Free Software Foundation, either version 3 of the License, or
7Copyright> (at your option) any later version.
8Copyright>
9Copyright> This program is distributed in the hope that it will be useful,
10Copyright> but WITHOUT ANY WARRANTY; without even the implied warranty of
11Copyright> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12Copyright> GNU Affero General Public License for more details.
13Copyright>
14Copyright> You should have received a copy of the GNU Affero General Public License
15Copyright> along with this program. If not, see <https://www.gnu.org/licenses/>.
16Copyright>
17Copyright>
18Copyright> Commercial Alternative: Altair Radioss Software
19Copyright>
20Copyright> As an alternative to this open-source version, Altair also offers Altair Radioss
21Copyright> software under a commercial license. Contact Altair to discuss further if the
22Copyright> commercial version may interest you: https://www.altair.com/radioss/.
23C
24!||====================================================================
25!|| s8ztempel ../engine/source/elements/solid/solide8z/s8ztempel.F
26!||--- called by ------------------------------------------------------
27!|| s8cforc3 ../engine/source/elements/thickshell/solide8c/s8cforc3.F
28!|| s8eforc3 ../engine/source/elements/solid/solide8e/s8eforc3.F
29!|| s8zforc3 ../engine/source/elements/solid/solide8z/s8zforc3.F
30!||====================================================================
31 SUBROUTINE s8ztempel(LFT,LLT,NI,KSI,ETA,ZETA,
32 1 NC1,NC2,NC3,NC4,NC5,NC6,NC7,NC8,
33 2 TEMP,TEMPEL)
34C-----------------------------------------------
35C I m p l i c i t T y p e s
36C-----------------------------------------------
37#include "implicit_f.inc"
38C-----------------------------------------------
39C D u m m y A r g u m e n t s
40C-----------------------------------------------
41 INTEGER LFT,LLT,NC1(*), NC2(*), NC3(*), NC4(*),
42 . NC5(*), NC6(*), NC7(*), NC8(*)
43C REAL
45 . ksi,eta,zeta,ni(*),temp(*),tempel(*)
46C-----------------------------------------------
47C L o c a l V a r i a b l e s
48C-----------------------------------------------
49 INTEGER I
50C REAL
52 . rp,sp,tp,sm,rm,tm
53C-----------------------------------------------
54C
55C isoparametric shape function
56C
57 rp = one + ksi
58 sp = one + eta
59 tp = one + zeta
60 rm = one - ksi
61 sm = one - eta
62 tm = one - zeta
63 ni(1) = one_over_8*rm*sm*tm
64 ni(2) = one_over_8*rp*sm*tm
65 ni(3) = one_over_8*rp*sp*tm
66 ni(4) = one_over_8*rm*sp*tm
67 ni(5) = one_over_8*rm*sm*tp
68 ni(6) = one_over_8*rp*sm*tp
69 ni(7) = one_over_8*rp*sp*tp
70 ni(8) = one_over_8*rm*sp*tp
71 DO i=lft,llt
72 tempel(i)= ni(1)*temp(nc1(i)) + ni(2)*temp(nc2(i)) +
73 . ni(3)*temp(nc3(i)) + ni(4)*temp(nc4(i)) +
74 . ni(5)*temp(nc5(i)) + ni(6)*temp(nc6(i)) +
75 . ni(7)*temp(nc7(i)) + ni(8)*temp(nc8(i))
76 ENDDO
77C-----------
78 RETURN
79 END
#define my_real
Definition cppsort.cpp:32
subroutine s8ztempel(lft, llt, ni, ksi, eta, zeta, nc1, nc2, nc3, nc4, nc5, nc6, nc7, nc8, temp, tempel)
Definition s8ztempel.F:34