OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
soltosph_hour.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/.
23!||====================================================================
24!|| sig_heph1 ../engine/source/elements/sph/soltosph_hour.F
25!||--- called by ------------------------------------------------------
26!|| soltosphp ../engine/source/elements/sph/soltosph.F
27!||--- uses -----------------------------------------------------
28!|| element_mod ../common_source/modules/elements/element_mod.F90
29!||====================================================================
30 SUBROUTINE sig_heph1(
31 1 JR0, JS0, JT0, GSIG,
32 2 FHOUR, SIG_HEPH,PM, IXS,
33 3 II, NEL, LFT, LLT)
34 use element_mod , only : nixs
35C-----------------------------------------------
36C I m p l i c i t T y p e s
37C-----------------------------------------------
38#include "implicit_f.inc"
39C-----------------------------------------------
40C G l o b a l P a r a m e t e r s
41C-----------------------------------------------
42#include "mvsiz_p.inc"
43#include "param_c.inc"
44C-----------------------------------------------
45C C o m m o n B l o c k s
46C-----------------------------------------------
47C-----------------------------------------------
48C D u m m y A r g u m e n t s
49C-----------------------------------------------
50 INTEGER, INTENT(INOUT) :: LFT
51 INTEGER, INTENT(INOUT) :: LLT
52 INTEGER IXS(NIXS,*),II(6),NEL
54 . gsig(*),fhour(nel,3,4),jr0(*),js0(*),jt0(*) ,
55 . sig_heph(mvsiz,6,7),pm(npropm,*)
56C-----------------------------------------------
57C L o c a l V a r i a b l e s
58C-----------------------------------------------
59 INTEGER I
60 my_real
61 . NU1,NU2,NU3
62C-----------------------------------------------
63
64C-----------------------------------------------
65C
66C SIG_HEPH(,1) -> mean stress
67C SIG_HEPH(,2) -> hourglass stress component proportional to ZETA
68C SIG_HEPH(,3) -> hourglass stress component proportional to ETA
69C SIG_HEPH(,4) -> hourglass stress component proportional to KSI
70C SIG_HEPH(,5) -> hourglass stress component proportional to ZETA*ETA
71C SIG_HEPH(,6) -> hourglass stress component proportional to ZETA*KSI
72C SIG_HEPH(,7) -> hourglass stress component proportional to ETA*KSI
73C
74 DO i=lft,llt
75 nu1=one/(one-pm(21,ixs(1,i)))
76 nu2=pm(21,ixs(1,i))*nu1
77 nu3=one+pm(21,ixs(1,i))
78C
79 sig_heph(i,1,1)=gsig(ii(1)+i)
80 sig_heph(i,2,1)=gsig(ii(2)+i)
81 sig_heph(i,3,1)=gsig(ii(3)+i)
82 sig_heph(i,4,1)=gsig(ii(4)+i)
83 sig_heph(i,5,1)=gsig(ii(5)+i)
84 sig_heph(i,6,1)=gsig(ii(6)+i)
85C
86 sig_heph(i,1,2)=2*twenty4*(nu1*fhour(i,1,2)+nu2*fhour(i,2,1))
87 sig_heph(i,2,2)=2*twenty4*(nu1*fhour(i,2,1)+nu2*fhour(i,1,2))
88 sig_heph(i,4,2)=twenty4*(jr0(i)*fhour(i,1,1)/js0(i)+js0(i)*fhour(i,2,2)/jr0(i))
89 sig_heph(i,1,3)=2*twenty4*(nu1*fhour(i,1,3)+nu2*fhour(i,3,1))
90 sig_heph(i,3,3)=2*twenty4*(nu1*fhour(i,3,1)+nu2*fhour(i,1,3))
91 sig_heph(i,6,3)=twenty4*(jr0(i)*fhour(i,1,1)/jt0(i)+jt0(i)*fhour(i,3,3)/jr0(i))
92 sig_heph(i,2,4)=2*twenty4*(nu1*fhour(i,2,3)+nu2*fhour(i,3,2))
93 sig_heph(i,3,4)=2*twenty4*(nu1*fhour(i,3,2)+nu2*fhour(i,2,3))
94 sig_heph(i,5,4)=twenty4*(js0(i)*fhour(i,2,2)/jt0(i)+jt0(i)*fhour(i,3,3)/js0(i))
95 sig_heph(i,1,5)=2*twenty4*nu3*fhour(i,1,4)
96 sig_heph(i,2,6)=2*twenty4*nu3*fhour(i,2,4)
97 sig_heph(i,3,7)=2*twenty4*nu3*fhour(i,3,4)
98 END DO
99C
100 RETURN
101 END
102C
#define my_real
Definition cppsort.cpp:32
subroutine sig_heph1(jr0, js0, jt0, gsig, fhour, sig_heph, pm, ixs, ii, nel, lft, llt)