OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
s11fx3.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!|| s11fx3 ../engine/source/elements/solid/solide/s11fx3.F
25!||--- called by ------------------------------------------------------
26!|| s4forc3 ../engine/source/elements/solid/solide4/s4forc3.F
27!|| sforc3 ../engine/source/elements/solid/solide/sforc3.F
28!||--- uses -----------------------------------------------------
29!|| ale_connectivity_mod ../common_source/modules/ale/ale_connectivity_mod.F
30!||====================================================================
31 SUBROUTINE s11fx3(
32 1 PM, FLUX, ALE_CONNECT,IXS,
33 2 IPM, BUFMAT, NEL, NFT,
34 3 JALE, JEUL , NUMMAT, S_IXS)
35C-----------------------------------------------
36C M o d u l e s
37C-----------------------------------------------
39C-----------------------------------------------
40C I m p l i c i t T y p e s
41C-----------------------------------------------
42#include "implicit_f.inc"
43#include "comlock.inc"
44#include "task_c.inc"
45C-----------------------------------------------
46C G l o b a l P a r a m e t e r s
47C-----------------------------------------------
48#include "param_c.inc"
49C-----------------------------------------------
50C D u m m y A r g u m e n t s
51C-----------------------------------------------
52 INTEGER, INTENT(IN) :: NEL
53 INTEGER, INTENT(IN) :: NFT
54 INTEGER, INTENT(IN) :: JALE
55 INTEGER, INTENT(IN) :: JEUL
56 INTEGER, INTENT(IN) :: NUMMAT
57 INTEGER, INTENT(IN) :: S_IXS
58 my_real pm(npropm,nummat),flux(6,*),bufmat(*)
59 INTEGER, INTENT(IN) :: IXS(NIXS,S_IXS),IPM(NPROPMI,NUMMAT)
60 TYPE(t_ale_connectivity), INTENT(IN) :: ALE_CONNECT
61C-----------------------------------------------
62C L o c a l V a r i a b l e s
63C-----------------------------------------------
64 INTEGER I, J,JJ,II,K,IFLG,IADBUF,IAD2
65C-----------------------------------------------
66C Incoming Enthalpy material law 11
67C-----------------------------------------------
68 IF(jeul+jale==1)THEN
69 DO i=1,nel
70 iad2 = ale_connect%ee_connect%iad_connect(i + nft)
71 DO k=1,6
72 jj = ale_connect%ee_connect%connected(iad2 + k - 1)
73 IF(jj>0)THEN ! negatif si ebcs
74 j = ixs(1,jj)
75 IF(nint(pm(50,j))==8)THEN
76 !TEST LAW11
77 IF(nint(pm(19,j))==11)THEN
78 flux(k,i) = max(flux(k,i),zero)
79 !TEST LAW51 IFORM=3
80 ELSEIF(nint(pm(19,j))==51)THEN
81 iadbuf = ipm(27,j)
82 iflg = nint(bufmat(31+iadbuf-1))
83 IF (iflg == 6)THEN
84 flux(k,i) = max(flux(k,i),zero)
85 ENDIF
86 endif!LAW TEST
87 endif!ISOLNOD==8
88 endif!JJ>0
89 ENDDO
90 ENDDO
91 ENDIF
92C-----------------------------------------------
93 RETURN
94 END
#define my_real
Definition cppsort.cpp:32
#define max(a, b)
Definition macros.h:21
subroutine s11fx3(pm, flux, ale_connect, ixs, ipm, bufmat, nel, nft, jale, jeul, nummat, s_ixs)
Definition s11fx3.F:35