OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
check_mod.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!|| check_mod ../common_source/modules/check_mod.F
25!||--- called by ------------------------------------------------------
26!|| contrl ../starter/source/starter/contrl.F
27!|| execargcheck ../engine/source/engine/execargcheck.F
28!|| freform ../engine/source/input/freform.F
29!|| lectur ../engine/source/input/lectur.F
30!|| radioss2 ../engine/source/engine/radioss2.F
31!|| resol ../engine/source/engine/resol.F
32!|| starter0 ../starter/source/starter/starter0.F
33!||====================================================================
34 MODULE check_mod
35
36!--------------------------------------------------------------------
37! RESTART_FILE :
38! engine :
39! ----------
40! if /RFILE/OFF or if -norst cdl are used, then no restart files
41! are written durint the run, even at the end of the engine
42! RESTART_FILE = 0 --> no restart files
43! RESTART_FILE = 1 (default value) --> restart files are written
44! starter :
45! ----------
46! if /CHECK/RFILE/OFF is used or if -check=norst cdl is used, then
47! restart files are not written at the end of the starter
48! KCHECK_STARTER :
49! pointer in LKEY0 (starter)
50!--------------------------------------------------------------------
51 INTEGER :: kcheck_starter
52 INTEGER :: restart_file
53 INTEGER, PARAMETER :: check_message_size=3
54 CHARACTER(len=2048), DIMENSION(CHECK_MESSAGE_SIZE) :: check_message
55
56 CONTAINS
57! ---------------------------------------------------------
58!||====================================================================
59!|| check_message_definition ../common_source/modules/check_mod.F
60!||--- called by ------------------------------------------------------
61!|| radioss2 ../engine/source/engine/radioss2.F
62!|| starter0 ../starter/source/starter/starter0.F
63!||====================================================================
65!$COMMENT
66! CHECK_MESSAGE_DEFINITION description
67! CHECK_MESSAGE_DEFINITION defines the output
68! messages of the /CHECK option
69!$ENDCOMMENT
70! -----------------------------------------------
71! I m p l i c i t T y p e s
72! -----------------------------------------------
73#include "implicit_f.inc"
74! -----------------------------------------------
75 check_message(1:check_message_size)(1:2048) = ''
76 ! 1 --> 3 : /RFILE/OFF option (or -check=norst cdl for the starter
77 ! and -norst cdl for the engine)
78 ! 1 &3,4 --> starter
79 ! 2 --> engine
80 check_message(1)(1:60)=' .. /CHECK/RFILE/OFF : NO PARALLEL RESTART FILES GENERATION'
81 check_message(2)(1:49)=' /RFILE/OFF OPTION : NO RESTART FILES GENERATION'
82 check_message(3)(1:66)=' /CHECK/RFILE/OFF OPTION : NO PARALLEL RESTART FILES GENERATION'
83 RETURN
84 END SUBROUTINE check_message_definition
85
86! ---------------------------------------------------------
87 END MODULE check_mod
integer, parameter check_message_size
Definition check_mod.F:53
integer restart_file
Definition check_mod.F:52
integer kcheck_starter
Definition check_mod.F:51
character(len=2048), dimension(check_message_size) check_message
Definition check_mod.F:54
subroutine check_message_definition()
Definition check_mod.F:65