OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
random_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!|| random_mod ../starter/share/modules1/random_mod.F
25!||--- called by ------------------------------------------------------
26!|| execargcheck ../starter/source/starter/execargcheck.F
27!|| hm_preread_eig ../starter/source/general_controls/computation/hm_read_eig.F
28!|| hm_read_eig ../starter/source/general_controls/computation/hm_read_eig.F
29!|| hm_read_rand ../starter/source/general_controls/computation/hm_read_rand.F
30!|| init_random ../starter/source/general_controls/computation/init_random.F
31!|| lectur ../starter/source/starter/lectur.F
32!||====================================================================
34!$COMMENT
35! RANDOM_MOD description
36! module for -rxalea / -rseed command line option
37! allowing to run a starter with /RANDOM option
38! without input deck modification
39!
40! RANDOM_MOD organization :
41! - CMD : logical, true if -rxalea or -rseed are used
42! - ALEA_NBR : double, value for rxalea
43! - SEED_NBR : double, value for rseed
44! - ALEA : logical, true if -rxalea is used
45! - SEED : logical, true if -rseed is used
46!$ENDCOMMENT
48 LOGICAL :: cmd
49 REAL(kind=8) :: alea_nbr,seed_nbr
50 LOGICAL :: alea,SEED
51 END TYPE random_struct
53 END MODULE random_mod
type(random_struct) rand_struct
Definition random_mod.F:52