Table of Contents | ||||||
---|---|---|---|---|---|---|
|
Introduction
Expand |
---|
The aim of this document is to give OpenRadioss development guidelines. These guidelines cover the style and the efficiency of the code. OpenRadioss is mostly written in Fortran (Fortran77 and Fortran90 and above) https://fortran-lang.org/. A few functions are written in C and C++. The following rules apply for new code. |
OpenRadioss Coding Standards
Fortran Language
Fortran90 is the programming language used for OpenRadioss development. Fortran95, Fortran2003, Fortran2008 and future extensions may be used only if necessary, and explicitly approved by OpenRadioss maintainers. In such case, these programming guidelines will have to be amended accordingly. It is allowed to use Intrinsic functions coming from Fortran95 up to Fortran2008
For Fortran code, the files should be named “<subroutine_name>.F”, “<module_name>_mod.F>” and “<include_file_name>.inc”. Only fixed format is allowed, extended to 132 columns
C/C++ Language
C routines deal with low level I/O, system calls. C++11 may be used
Preprocessor
C Preprocessor directives can be used to include files, define constants and macros
IMPLICIT NONE
Every OpenRadioss Fortran routine needs to include implicit_f.inc that contains IMPLICIT NONE
Fortran90 Restrictions
Fortran90 features that penalize performance should be avoided:
Object oriented features like operator overloading
Array manipulation, and especially non-contiguous section as subroutine argument is forbidden (assumed-shape-array)
Fortran77 extensions which are not Fortran90 standard are refused
Obsolete Fortran77 Coding
The following statements are not allowed in new code:
EQUIVALENCE
COMMON
SAVE
GOTO
It is also forbidden to use label for DO
loops, multiple RETURN
statements in a subroutine
WIP: Below being edited/modified
Precompiler Directives
Fortran files are of type foo.F. Fortran precompiler is automatically called
Therefore, it is forbidden to name a file .f or .f90
In particular the below directives are in use:
Examples:
#include
to include specific files or commons
#include "implicit_f.inc"
#define
#define my_real DOUBLE PRECISION
#ifdef
mainly used to define platform specific code
IMPLICIT NONE
Expand |
---|
For historical reasons, (in the past it was not supported everywhere) IMPLICIT NONE is automatically added to the source via a specific include implicit_f.inc. Its usage forces the programmer to declare every variable Every Radioss Fortran routine needs to include implicit_f.inc |
Fixed Format
Expand |
---|
To keep coherency between original code and new code, only fixed format is allowed, extended to 132 columns Comments need to begin with They can be placed anywhere ( Several instructions per line are allowed using |
Fortran95, Fortran2003, Fortran2008 Extensions
Expand |
---|
Intrinsic functions are allowed, especially Other Fortran95 extensions are refused Fortran2003 and Fortran2008 extensions are refused |
Fortran 90 Restrictions
Expand |
---|
Object oriented features like operator overloading are forbidden as they can highly penalize performance Array manipulation, and especially non-contiguous section as subroutine argument is forbidden (assumed-shape-array) Array reduction and special functions like |
Fortran 77 Extensions
Expand |
---|
Fortran77 extensions which are not Fortran90 standard are refused |
Obsolete Fortran 77 coding
EQUIVALENCE
EQUIVALENCE
is source of error. The use of EQUIVALENCE
is forbidden
Use MODULE
variables instead.
There is an ongoing effort to clean out the remaining instances in the code
COMMON
COMMON
is a source of error, use MODULE
variables instead
For new development, MODULE
should be used instead of COMMON
Current/existing COMMON
are maintained but one should avoid adding any new variables to existing COMMON
SAVE
SAVE
statement is forbidden. It needs to be replaced by variables in MODULE
Multiple RETURN
Multiple RETURN
statements inside a SUBROUTINE
are forbidden
GOTO
The use of GOTO
is forbidden. Existing GOTO
statements are progressively being removed from the code
DO loop with label
DO
loop with label is prohibited
Data Types
Expand | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
IntegerAll integers are by default 32-bit integers ( Where it is required 64-bit integer ( Use of RealReals can be either 32-bit simple precision or 64-bit double precision reals Real variables need to be declared as my_real.inc is automatically included together with implicit_f.inc to define The pre-compiler automatically replaces
Example:
For some exceptions, it is sometimes needed to explicitly use Such exceptions are limited in the source code Logical
In particular, it is forbidden to use “ Derived data typeDerived data type is one of the main improvements of Fortran90 standard The use of derived data types is strongly encouraged (see OpenRadioss Coding Recommendations ). Derived data type allows to define new structured types The name of a new type should use suffix Example:
Intrinsic functionsProgrammers are only allowed to use generic functions compatible with both single and double precision: Explicitly typed functions are prohibited: Numerical constantsAll real constant variables are declared inside constant.inc common and initialized using Examples: Forbidden:
Allowed:
Zero & infinite valuesTo avoid division by zero, it is advised to test against To avoid infinite value test against These values are generally a good compromise for both double and single precision It is always possible to check version precision using flag
Bitwise logical operationsSemantic of bitwise logical operators like Note: |
Interfacing Fortran and C
Calling convention
There is no standard calling convention between Fortran and C
Here is described the way it is handled in Radioss by defining every potential calling convention
Notice that the importance of this specific point is decreasing with the number of architectures and compilers supported
Fortran 90 calling routine:
Code Block | ||
---|---|---|
| ||
...
INTEGER :: L
my_real :: A(*)
...
CALL DUMMY(A,L)
... |
C callee routine:
Code Block | ||
---|---|---|
| ||
void dummy(a,l)
double *a;
int *l;
{
/* dummy function definition */
...
}
void dummy_(a,l)
double *a;
int *l;
{
dummy(a,l);
}
void _FCALL DUMMY(a,l)
double *a;
int *l;
{
dummy(a,l);
} |
Note:
dummy
, dummy_
and DUMMY
share the 3 possible formats encountered Argument variable correspondence
Fortran
C
INTEGER
*int
REAL
*float
DOUBLE PRECISION
*double
Notes:
A variable of type my_real
is never transferred from Fortran to C directly, It is copied into a REAL
or DOUBLE PRECISION
variable first
CHARACTER
should not be transferred from Fortran to C directly, It is mandatory to use INTEGER
conversion through conversion function ICHAR
at Fortran level and type (char)
at the C levelEvery variable is passed by address at Fortran level, therefore a pointer variable must match at the C level
Examples of type definition under Linux and Windows
Type
Linux, Windows
Size in Bytes
INTEGER
4
INTEGER8
8
REAL
4
DOUBLE PRECISION
8
REAL*4
4
REAL*8
8
Char
1
short
2
int
4
long
4
long long
8
float
4
double
8
Specific code management
Expand |
---|
For some reason, some code may depend on a specific architecture or compiler. In this case, such code is gathered into a unique directory (one for Starter and one for Engine) called spe and spe_inc for include files The rest of the code needs to be machine independent. This facilitates porting to new machine or compiler The specific part of the code is managed by the precompiler using The different supported architectures are defined under hardware.inc A clean up of the supported architecture must be scheduled |
\uD83D\uDCCB Related articles
OpenRadioss HMPP Development Insights
OpenRadioss Coding Recommendations
OpenRadioss Performance Aspects: Vectorization and Optimization
OpenRadioss Performance Aspects: Parallelism
OpenRadioss Coding: Additional Considerations
OpenRadioss Reader ( Radioss Block Format)