OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
debug_mod.F File Reference
#include "implicit_f.inc"
#include "r4r8_p.inc"
#include "com01_c.inc"
#include "com04_c.inc"
#include "task_c.inc"
#include "spmd_c.inc"
#include "chara_c.inc"
#include "units_c.inc"

Go to the source code of this file.

Modules

module  debug_mod

Functions/Subroutines

pure integer function debug_mod::sp_checksum (a, siz1, siz2)
pure integer function debug_mod::dp_checksum (a, siz1, siz2)
pure integer function debug_mod::int_checksum (a, siz1, siz2)
subroutine prepare_debug (itab, numnod)

Variables

integer, dimension(:), allocatable debug_mod::itab_debug
 User Node Identifiers.
integer debug_mod::nc_debug
 Engine Cycle number.

Function/Subroutine Documentation

◆ prepare_debug()

subroutine prepare_debug ( integer, dimension(numnod), intent(in) itab,
integer, intent(in) numnod )

Definition at line 225 of file debug_mod.F.

226 USE debug_mod
227C-----------------------------------------------
228C I m p l i c i t T y p e s
229C-----------------------------------------------
230#include "implicit_f.inc"
231C-----------------------------------------------
232 INTEGER, INTENT(IN) :: NUMNOD
233 INTEGER, DIMENSION(:), INTENT(IN) :: ITAB(NUMNOD)
234C-----------------------------------------------
235 ALLOCATE (itab_debug(numnod))
236 itab_debug(1:numnod)=itab(1:numnod)
237C-----------------------------------------------
238 nc_debug = 0 ! updated in resol loop
239C-----------------------------------------------
integer nc_debug
Engine Cycle number.
Definition debug_mod.F:49
integer, dimension(:), allocatable itab_debug
User Node Identifiers.
Definition debug_mod.F:48