Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ModInterfacesPeriodic.F90
Go to the documentation of this file.
1 ! *********************************************************************
2 ! * Rocstar Simulation Suite *
3 ! * Copyright@2015, Illinois Rocstar LLC. All rights reserved. *
4 ! * *
5 ! * Illinois Rocstar LLC *
6 ! * Champaign, IL *
7 ! * www.illinoisrocstar.com *
8 ! * sales@illinoisrocstar.com *
9 ! * *
10 ! * License: See LICENSE file in top level of distribution package or *
11 ! * http://opensource.org/licenses/NCSA *
12 ! *********************************************************************
13 ! *********************************************************************
14 ! * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, *
15 ! * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES *
16 ! * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND *
17 ! * NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR *
18 ! * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *
19 ! * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, *
20 ! * Arising FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE *
21 ! * USE OR OTHER DEALINGS WITH THE SOFTWARE. *
22 ! *********************************************************************
23 !******************************************************************************
24 !
25 ! Purpose: set explicit interfaces to subroutines and functions.
26 !
27 ! Description: none
28 !
29 ! Notes: none.
30 !
31 !******************************************************************************
32 !
33 ! $Id: ModInterfacesPeriodic.F90,v 1.7 2008/12/06 08:44:18 mtcampbe Exp $
34 !
35 ! Copyright: (c) 2001 by the University of Illinois
36 !
37 !******************************************************************************
38 
40 
41  IMPLICIT NONE
42 
43  INTERFACE
44 
45 ! =============================================================================
46 ! periodic flows
47 ! =============================================================================
48 
49  SUBROUTINE peri_allocatememory( region )
50  USE moddatastruct, ONLY : t_region
51  TYPE(t_region) :: region
52  END SUBROUTINE peri_allocatememory
53 
54  SUBROUTINE peri_buildversionstring( versionString )
55  CHARACTER(*) :: versionstring
56  END SUBROUTINE peri_buildversionstring
57 
58  SUBROUTINE peri_sourceterms( region )
59  USE moddatastruct, ONLY : t_region
60  TYPE(t_region) :: region
61  END SUBROUTINE peri_sourceterms
62 
63  SUBROUTINE peri_initsolution( regions,iReg )
64  USE moddatastruct, ONLY : t_region
65  TYPE(t_region), POINTER :: regions(:)
66  INTEGER :: ireg
67  END SUBROUTINE peri_initsolution
68 
69  SUBROUTINE peri_printuserinput( region )
70  USE moddatastruct, ONLY : t_region
71  TYPE(t_region) :: region
72  END SUBROUTINE peri_printuserinput
73 
74  SUBROUTINE peri_solutionupdate( region )
75  USE moddatastruct, ONLY : t_region
76  TYPE(t_region) :: region
77  END SUBROUTINE peri_solutionupdate
78 
79  SUBROUTINE peri_userinput( regions )
80  USE moddatastruct, ONLY : t_region
81  TYPE(t_region), POINTER :: regions(:)
82  END SUBROUTINE peri_userinput
83 
84 #ifdef RFLU
85 ! =============================================================================
86 ! Rocflu-specific routines
87 ! =============================================================================
88 
89  SUBROUTINE peri_rflu_deallocatememory( region )
90  USE moddatastruct, ONLY : t_region
91  TYPE(t_region), POINTER :: region
92  END SUBROUTINE peri_rflu_deallocatememory
93 #endif
94 
95  END INTERFACE
96 
97 END MODULE modinterfacesperiodic
98 
99 !******************************************************************************
100 !
101 ! RCS Revision history:
102 !
103 ! $Log: ModInterfacesPeriodic.F90,v $
104 ! Revision 1.7 2008/12/06 08:44:18 mtcampbe
105 ! Updated license.
106 !
107 ! Revision 1.6 2008/11/19 22:17:30 mtcampbe
108 ! Added Illinois Open Source License/Copyright
109 !
110 ! Revision 1.5 2004/12/01 00:08:52 wasistho
111 ! added BuildVersionString
112 !
113 ! Revision 1.4 2004/06/18 15:47:14 wasistho
114 ! correct the location of endif RFLU
115 !
116 ! Revision 1.3 2004/06/17 23:07:04 wasistho
117 ! added PERI_RFLU_DeallocateMemory
118 !
119 ! Revision 1.2 2003/04/05 02:03:15 wasistho
120 ! regions to region in PERI_solutionUpdate
121 !
122 ! Revision 1.1 2003/03/29 03:29:13 wasistho
123 ! install ROCPERI
124 !
125 !
126 !******************************************************************************
127 
128 
129 
130 
131 
132 
subroutine peri_sourceterms(region)
subroutine peri_buildversionstring(versionString)
subroutine peri_userinput(regions)
subroutine peri_allocatememory(region)
subroutine peri_rflu_deallocatememory(region)
subroutine peri_solutionupdate(region)
subroutine peri_initsolution(regions, iReg)
subroutine peri_printuserinput(region)