OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
putsignor3.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!|| putsignor3 ../engine/source/elements/solid/solide8z/putsignor3.F
25!||--- called by ------------------------------------------------------
26!|| mmain ../engine/source/materials/mat_share/mmain.F90
27!||--- uses -----------------------------------------------------
28!|| imp_ktan ../engine/share/modules/impbufdef_mod.F
29!|| imp_ktan_def ../engine/share/modules/impbufdef_mod.F
30!||====================================================================
31 SUBROUTINE putsignor3(JFT ,JLT ,MTN,IR,IS,IT,AL_IMP ,SIGNOR)
32C-----------------------------------------------
33C M o d u l e s
34C-----------------------------------------------
35 USE imp_ktan
36 USE imp_ktan_def
37C-----------------------------------------------
38C I m p l i c i t T y p e s
39C-----------------------------------------------
40#include "implicit_f.inc"
41C-----------------------------------------------
42C G l o b a l P a r a m e t e r s
43C-----------------------------------------------
44#include "mvsiz_p.inc"
45C-----------------------------------------------
46C C o m m o n B l o c k s
47C-----------------------------------------------
48#include "impl1_c.inc"
49C-----------------------------------------------
50C D u m m y A r g u m e n t s
51C-----------------------------------------------
52 INTEGER JFT, JLT ,MTN,IR,IS,IT
53C REAL
55 . al_imp(*),signor(mvsiz,6)
56C-----------------------------------------------
57C L o c a l V a r i a b l e s
58C-----------------------------------------------
59 INTEGER I,MX,J,K,IPTR,IPTS,IPTT
60C REAL
61
62 TYPE(l_ktbufep_) , POINTER :: SKBUF
63 TYPE(mlaw_tag_) , POINTER :: MTAG
64C-----------------------------------------------
65 IF (ikt==0) RETURN
66 mtag => ktbuf_str(ng_imp)%MLAW_TAG(mtn)
67 IF (mtag%L_A_KT>0) THEN
68 iptr=max(1,ir)
69 ipts=max(1,is)
70 iptt=max(1,it)
71 skbuf => ktbuf_str(ng_imp)%KTBUFEP(iptr,ipts,iptt)
72 DO i=jft ,jlt
73 j=6*(i-1)
74 skbuf%A_KT(i)=al_imp(i)
75 skbuf%SIGE(j+1)=signor(i,1)
76 skbuf%SIGE(j+2)=signor(i,2)
77 skbuf%SIGE(j+3)=signor(i,3)
78 skbuf%SIGE(j+4)=signor(i,4)
79 skbuf%SIGE(j+5)=signor(i,5)
80 skbuf%SIGE(j+6)=signor(i,6)
81 END DO
82 END IF
83C
84 RETURN
85 END
#define my_real
Definition cppsort.cpp:32
#define max(a, b)
Definition macros.h:21
type(ktbuf_struct_), dimension(:), allocatable, target ktbuf_str
subroutine putsignor3(jft, jlt, mtn, ir, is, it, al_imp, signor)
Definition putsignor3.F:32