OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
w_outmaxn.F File Reference
#include "implicit_f.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine w_outmaxn (numnod_l, len_am)

Function/Subroutine Documentation

◆ w_outmaxn()

subroutine w_outmaxn ( integer, intent(in) numnod_l,
integer, intent(inout) len_am )

Definition at line 31 of file w_outmaxn.F.

32C-----------------------------------------------
33C M o d u l e s
34C-----------------------------------------------
35 USE outmax_mod
36C-----------------------------------------------
37C I m p l i c i t T y p e s
38C-----------------------------------------------
39#include "implicit_f.inc"
40C-----------------------------------------------
41C D u m m y A r g u m e n t s
42C-----------------------------------------------
43 INTEGER , INTENT(IN) :: NUMNOD_L
44 INTEGER , INTENT(INOUT) :: LEN_AM
45C-----------------------------------------------
46C L o c a l V a r i a b l e s
47C-----------------------------------------------
48 INTEGER I,LW
49 my_real, DIMENSION(:), ALLOCATABLE :: rtmp
50C-----------------------------------------------
51C-----will take into account initial state later
52 lw = (2*(lmax_nsig+lmax_nstra))*numnod_l
53 IF (lw>0) THEN
54 ALLOCATE( rtmp(lw) )
55! --------------------------------
56 rtmp=zero
57C
58 CALL write_db(rtmp,lw)
59 len_am = len_am + lw
60 DEALLOCATE( rtmp )
61 END IF
62! --------------------------------
63 RETURN
#define my_real
Definition cppsort.cpp:32
integer lmax_nstra
Definition outmax_mod.F:63
integer lmax_nsig
Definition outmax_mod.F:62
subroutine write_db(a, n)
Definition write_db.F:140