OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
fail_init.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!|| fail_init ../starter/source/materials/fail/fail_init.F
25!||--- called by ------------------------------------------------------
26!|| hm_read_fail ../starter/source/materials/fail/hm_read_fail.F
27!||--- uses -----------------------------------------------------
28!||====================================================================
29 SUBROUTINE fail_init(MAT_PARAM ,NUMMAT)
30C-----------------------------------------------
31C M o d u l e s
32C-----------------------------------------------
33 USE matparam_def_mod
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 ,INTENT(IN) :: NUMMAT
42 TYPE (MATPARAM_STRUCT_) ,DIMENSION(NUMMAT) ,INTENT(INOUT) :: MAT_PARAM
43C-----------------------------------------------
44C L o c a l V a r i a b l e s
45C-----------------------------------------------
46 INTEGER IMAT,IFL,NFAIL
47c======================================================================-
48 DO imat = 1,nummat-1
49 nfail = mat_param(imat)%NFAIL
50 ALLOCATE (mat_param(imat)%FAIL(nfail))
51 IF (nfail > 0) THEN
52 DO ifl = 1,nfail
53 mat_param(imat)%FAIL(ifl)%KEYWORD = ' '
54 mat_param(imat)%FAIL(ifl)%IRUPT = 0
55 mat_param(imat)%FAIL(ifl)%FAIL_ID = 0
56 mat_param(imat)%FAIL(ifl)%NUPARAM = 0
57 mat_param(imat)%FAIL(ifl)%NIPARAM = 0
58 mat_param(imat)%FAIL(ifl)%NUVAR = 0
59 mat_param(imat)%FAIL(ifl)%NFUNC = 0
60 mat_param(imat)%FAIL(ifl)%NTABLE = 0
61 mat_param(imat)%FAIL(ifl)%NMOD = 0
62c
63 mat_param(imat)%FAIL(ifl)%FAIL_IP = 0
64 mat_param(imat)%FAIL(ifl)%PTHK = one
65 END DO
66 END IF
67 END DO
68c-----------
69 RETURN
70 END
subroutine fail_init(mat_param, nummat)
Definition fail_init.F:30