OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
w_disp0_vel0_cload.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/.
23C
24!||====================================================================
25!|| w_disp0_vel0_cload ../starter/source/restart/ddsplit/w_disp0_vel0_cload.F
26!||--- called by ------------------------------------------------------
27!|| ddsplit ../starter/source/restart/ddsplit/ddsplit.F
28!||--- calls -----------------------------------------------------
29!||====================================================================
30 SUBROUTINE w_disp0_vel0_cload(DISP0,CEP ,PROC ,NCLOAD_L,LEN_AM,
31 . OFF ,LEN_CEP ,NCLOAD)
32C-----------------------------------------------
33C I m p l i c i t T y p e s
34C-----------------------------------------------
35#include "implicit_f.inc"
36C-----------------------------------------------
37C D u m m y A r g u m e n t s
38C-----------------------------------------------
39 INTEGER, INTENT(IN) :: OFF,NCLOAD_L,PROC,LEN_CEP,NCLOAD
40 INTEGER, INTENT(INOUT) :: LEN_AM
41 INTEGER, INTENT(IN) :: CEP(LEN_CEP)
42 my_real, INTENT(IN) :: disp0(6,ncload)
43C-----------------------------------------------
44C L o c a l V a r i a b l e s
45C-----------------------------------------------
46 INTEGER I, J, NB_L
48 . disp0tmp(6,ncload_l)
49C-----------------------------------------------
50 nb_l = 0
51C
52 DO i = 1, ncload
53 IF(cep(i+off)==proc) THEN
54 nb_l = nb_l + 1
55 DO j = 1, 6
56 disp0tmp(j,nb_l) = disp0(j,i)
57 END DO
58 END IF
59 END DO
60 CALL write_db(disp0tmp,ncload_l*6)
61 len_am = len_am + ncload_l*6
62C
63 RETURN
64 END
65
#define my_real
Definition cppsort.cpp:32
subroutine w_disp0_vel0_cload(disp0, cep, proc, ncload_l, len_am, off, len_cep, ncload)
subroutine write_db(a, n)
Definition write_db.F:140