OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
voln22.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/.
23!||====================================================================
24!|| voln22 ../engine/source/interfaces/int22/voln22.F
25!||--- called by ------------------------------------------------------
26!|| sforc3 ../engine/source/elements/solid/solide/sforc3.F
27!||--- uses -----------------------------------------------------
28!|| elbufdef_mod ../common_source/modules/mat_elem/elbufdef_mod.F90
29!|| i22bufbric_mod ../common_source/modules/interfaces/cut-cell-search_mod.F
30!|| i22tri_mod ../common_source/modules/interfaces/cut-cell-search_mod.F
31!||====================================================================
32 SUBROUTINE voln22(
33 1 VOLN, IAD22, IXS, LFT,
34 2 LLT, JALE, JEUL)
35C-----------------------------------------------
36C D e s c r i p t i o n
37C-----------------------------------------------
38C Interface Type22 (/INTER/TYPE22) is an FSI coupling method based on cut cell method.
39C This experimental cut cell method is not completed, abandoned, and is not an official option.
40C
41C this subroutines update VOLN for cut cells.
42C Main cells have extended values of volume due
43C to secnd cell merging. This extension data is
44C stored in cut cell buffer and is now used here
45C to update VOLN(*)
46C-----------------------------------------------
47C M o d u l e s
48C-----------------------------------------------
50 USE i22tri_mod
51 USE elbufdef_mod
52C-----------------------------------------------
53C I m p l i c i t T y p e s
54C-----------------------------------------------
55#include "implicit_f.inc"
56C-----------------------------------------------
57C C o m m o n B l o c k s
58C-----------------------------------------------
59#include "inter22.inc"
60C-----------------------------------------------
61C D u m m y A r g u m e n t s
62C-----------------------------------------------
63 INTEGER, INTENT(INOUT) :: LFT
64 INTEGER, INTENT(INOUT) :: LLT
65 INTEGER, INTENT(INOUT) :: JALE
66 INTEGER, INTENT(INOUT) :: JEUL
67 my_real,INTENT(INOUT) :: voln(*)
68 my_real,INTENT(IN) :: iad22(*)
69 INTEGER,INTENT(IN) :: IXS(NIXS,*)
70C-----------------------------------------------
71C L o c a l V a r i a b l e s
72C-----------------------------------------------
73 INTEGER :: I, II, IB, NCELL, IPOS, MCELL, NIN , NSecnds, IBV, ICELLv, NumSecnd,ISECND
74 my_real :: VAR, AREAM, VOLM, VOLsecnds
75C-----------------------------------------------
76C P r e - C o n d i t i o n s
77C-----------------------------------------------
78 IF(int22==0)RETURN
79C-----------------------------------------------
80C S o u r c e L i n e s
81C-----------------------------------------------
82 nin = 1
83
84 IF(jeul+jale/=0)THEN
85 DO i=lft,llt
86
87 ib = nint(iad22(i))
88 IF(ib==0)cycle
89 ncell = brick_list(nin,ib)%NBCUT
90 mcell = brick_list(nin,ib)%MainID
91 voln(i) = em20*brick_list(nin,ib)%UncutVOL !!!ZERO !in case of no main cell
92 IF(mcell == 0)cycle
93
94 IF(brick_list(nin,ib)%POLY(mcell)%Vnew>zero)THEN
95 voln(i) = brick_list(nin,ib)%Vnew_SCell
96 ENDIF
97
98 ENDDO
99 ENDIF
100
101C-----------------------------------------------
102 RETURN
103 END SUBROUTINE voln22
#define my_real
Definition cppsort.cpp:32
type(brick_entity), dimension(:,:), allocatable, target brick_list
subroutine voln22(voln, iad22, ixs, lft, llt, jale, jeul)
Definition voln22.F:35