The RADIOSS Starter supports the following command line arguments.
Argument |
Short form |
Description |
---|---|---|
-help |
-h |
Print help message |
-version |
-v |
Print RADIOSS release information |
-input [FILE] |
-i |
Set RADIOSS Starter input file |
-nspmd [INTEGER] |
-np |
Set number of SPMD domains |
-nthread [INTEGER] |
-nt |
Set number of threads per SPMD domains |
-notrap |
|
Disable error trapping |
Prints help information on the command line arguments. RADIOSS Starter exits after the printout. Example:
|
Prints RADIOSS release information:
RADIOSS Starter exits after the printout. Example:[user@machine]$ ./s_12.0_linux64 -version RADIOSS Starter version 12.0
|
Sets the RADIOSS Starter input file. The FILE argument must be a RADIOSS Starter input file with the following format: [ROOTNAME]_[RUN NUMBER].rad where: ROOTNAME is the dataset rootname RUN NUMBER is the run number expressed in four numbers. e.g. CRA2V51_0000.rad ROOTNAME: CRA2V51 RUN NUMBER: 0000
Example:
[user@machine]$ ./s_12.0_linux64 -input CRA2V51_0000.rad ************************************************************************ ** ** ** ** ** RADIOSS STARTER 12.0 ** ** ** ** Non-linear Finite Element Analysis Software ** ** from Altair Engineering, Inc. ** ** ** ** ** ** Linux 64 bits, Intel compiler, Intel MPI ** ** ** ** ** ** ** ** Build tag: 0479348_2413000 ** ************************************************************************ ** COPYRIGHT (C) 1986-2010 Altair Engineering, Inc. ** ** All Rights Reserved. Copyright notice does not imply publication. ** ** Contains trade secrets of Altair Engineering Inc. ** ** Decompilation or disassembly of this software strictly prohibited. ** ************************************************************************
.. BLOCK FREE FORMAT CRA2V51 .. CONTROL VARIABLES .. UNITS SYSTEM .. MATERIALS .. NODES .. PROPERTIES .. 3D SHELL ELEMENTS .. SUBSETS .. ELEMENT GROUPS .. NODE GROUP .. BOUNDARY CONDITIONS .. INITIAL VELOCITIES .. ELEMENT GROUPS .. ADDED MASSES .. ELEMENT BUFFER INITIALIZATION .. GEOMETRY PLOT FILE .. RESTART FILE
NORMAL TERMINATION ------------------------ 0 ERROR(S) 0 WARNING(S)
PLEASE CHECK LISTING FILE FOR FURTHER DETAILS
[user@machine]$ |
Sets the number of SPMD domains. Where: SPMD DOMAIN NUMBER: INTEGER is the number of SPMD domains Example:[user@machine]$ ./s_12.0_linux64 -nspmd 4
|
Sets the number of SMP threads per SPMD domain. Each SPMD domain will be computed using a multi-threaded process composed of SMP THREAD NUMBER. Where, SMP THREAD NUMBER: INTEGER is the number of SMP threads per SPMD domain.
Example:[user@machine]$ ./s_12.0_linux64 -nthread 2
|
Disables the trapping error of RADIOSS Starter. By default, in case of error, RADIOSS Starter will display an error message that corresponds to the error occurred and stop properly. If –notrap is used, RADIOSS Starter will continue and potentially core dumps where the error occurs. This behavior is sometimes helpful to trace the error with external tools. General behavior, error handling
If an error is encountered like:
An error message is printed out with the -help printouts.
Example:
[user@machine]$
|