OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
utable.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!|| st_utable_dum ../starter/source/user_interface/utable.F
25!||--- called by ------------------------------------------------------
26!|| starter0 ../starter/source/starter/starter0.F
27!||====================================================================
28 SUBROUTINE st_utable_dum(IERR)
29#include "implicit_f.inc"
30 INTEGER IERR
31 ierr=0
32 END
33!||====================================================================
34!|| get_u_numtable ../starter/source/user_interface/utable.F
35!||--- uses -----------------------------------------------------
36!|| table_glob_mod ../starter/share/modules1/table_glob_mod.F
37!|| table_mod ../starter/share/modules1/table_mod.F
38!||====================================================================
39 INTEGER FUNCTION get_u_numtable(TID)
41 USE table_mod
42#include "implicit_f.inc"
43#include "com04_c.inc"
44 TYPE(ttable) cur_table
45 INTEGER i,tid
46C need NTABLE
47C
49 DO i=1,ntable
50 IF(table(i)%NOTABLE==tid)THEN
52 RETURN
53 ENDIF
54 ENDDO
55 RETURN
56 END
57!||====================================================================
58!|| get_u_table ../starter/source/user_interface/utable.F
59!||--- calls -----------------------------------------------------
60!|| table_interp ../starter/source/tools/curve/table_tools.F
61!||--- uses -----------------------------------------------------
62!|| table_glob_mod ../starter/share/modules1/table_glob_mod.F
63!||====================================================================
64 SUBROUTINE get_u_table(ITABLE,XX,YY)
66C-----------------------------------------------
67C I m p l i c i t T y p e s
68C-----------------------------------------------
69#include "implicit_f.inc"
70C-----------------------------------------------
71C C o m m o n B l o c k s
72C-----------------------------------------------
73 INTEGER ITABLE
74 my_real,
75 . DIMENSION(:) :: xx
77 . yy
78C
79 CALL table_interp(table(itable),xx,yy)
80 RETURN
81 END
82!||====================================================================
83!|| get_u_vtable ../starter/source/user_interface/utable.F
84!||--- calls -----------------------------------------------------
85!|| table_vinterp ../starter/source/tools/curve/table_tools.F
86!||--- uses -----------------------------------------------------
87!|| table_glob_mod ../starter/share/modules1/table_glob_mod.F
88!||====================================================================
89 SUBROUTINE get_u_vtable(ITABLE,NEL0,IPOS,XX,YY,DYDX1)
91C-----------------------------------------------
92C I m p l i c i t T y p e s
93C-----------------------------------------------
94#include "implicit_f.inc"
95C-----------------------------------------------
96C D u m m y A r g u m e n t s
97C-----------------------------------------------
98 INTEGER ITABLE,NEL0
99 INTEGER, DIMENSION(:,:) :: IPOS
100 my_real,
101 . DIMENSION(:,:) :: xx
102 my_real
103 . yy(*), dydx1(*)
104C-----------------------------------------------
105C L o c a l V a r i a b l e s
106C-----------------------------------------------
107C
108 CALL table_vinterp(table(itable),nel0,nel0,ipos,xx,yy,dydx1)
109 RETURN
110 END
#define my_real
Definition cppsort.cpp:32
type(ttable), dimension(:), allocatable table
subroutine table_vinterp(table, dimx, nel, ipos, xx, yy, dydx1)
subroutine table_interp(table, xx, yy)
subroutine st_utable_dum(ierr)
Definition utable.F:29
subroutine get_u_table(itable, xx, yy)
Definition utable.F:65
subroutine get_u_vtable(itable, nel0, ipos, xx, yy, dydx1)
Definition utable.F:90
integer function get_u_numtable(tid)
Definition utable.F:40