Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PERI_ModInterfaces.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 $
34 !
35 ! Copyright: (c) 2001 by the University of Illinois
36 !
37 !******************************************************************************
38 
40 
41  IMPLICIT NONE
42 
43  INTERFACE
44 
45 ! =============================================================================
46 ! Interfaces to external code
47 ! =============================================================================
48 
49  SUBROUTINE peri_checkparaminput( regions )
50  USE moddatastruct, ONLY : t_region
51  TYPE(t_region), POINTER :: regions(:)
52  END SUBROUTINE peri_checkparaminput
53 
54  SUBROUTINE peri_cnlforceterm( region )
55  USE moddatastruct, ONLY : t_region
56  TYPE(t_region) :: region
57  END SUBROUTINE peri_cnlforceterm
58 
59  SUBROUTINE peri_derivedinputvalues( regions )
60  USE moddatastruct, ONLY : t_region
61  TYPE(t_region), POINTER :: regions(:)
62  END SUBROUTINE peri_derivedinputvalues
63 
64  SUBROUTINE peri_initinputvalues( regions )
65  USE moddatastruct, ONLY : t_region
66  TYPE(t_region), POINTER :: regions(:)
67  END SUBROUTINE peri_initinputvalues
68 
69  SUBROUTINE peri_readinputfile( regions )
70  USE moddatastruct, ONLY : t_region
71  TYPE(t_region), POINTER :: regions(:)
72  END SUBROUTINE peri_readinputfile
73 
74  SUBROUTINE peri_readperisection( regions )
75  USE moddatastruct, ONLY : t_region
76  TYPE(t_region), POINTER :: regions(:)
77  END SUBROUTINE peri_readperisection
78 
79  SUBROUTINE peri_cocnlinitsolution( region )
80  USE moddatastruct, ONLY : t_region
81  TYPE(t_region) :: region
82  END SUBROUTINE peri_cocnlinitsolution
83 
84  SUBROUTINE peri_cocprinitsolution( region )
85  USE moddatastruct, ONLY : t_region
86  TYPE(t_region) :: region
87  END SUBROUTINE peri_cocprinitsolution
88 
89  SUBROUTINE peri_cocprslowterms( region )
90  USE moddatastruct, ONLY : t_region
91  TYPE(t_region) :: region
92  END SUBROUTINE peri_cocprslowterms
93 
94  SUBROUTINE peri_copgradupdate( region )
95  USE moddatastruct, ONLY : t_region
96  TYPE(t_region) :: region
97  END SUBROUTINE peri_copgradupdate
98 
99  END INTERFACE
100 
101 END MODULE peri_modinterfaces
102 
103 !******************************************************************************
104 !
105 ! RCS Revision history:
106 !
107 ! $Log: PERI_ModInterfaces.F90,v $
108 ! Revision 1.6 2008/12/06 08:44:36 mtcampbe
109 ! Updated license.
110 !
111 ! Revision 1.5 2008/11/19 22:17:49 mtcampbe
112 ! Added Illinois Open Source License/Copyright
113 !
114 ! Revision 1.4 2004/06/08 23:52:31 wasistho
115 ! changed nomenclature
116 !
117 !
118 !******************************************************************************
119 
120 
121 
122 
123 
124 
subroutine peri_cocprslowterms(region)
subroutine peri_readinputfile(regions)
subroutine peri_cocnlinitsolution(region)
subroutine peri_cnlforceterm(region)
subroutine peri_cocprinitsolution(region)
subroutine peri_copgradupdate(region)
subroutine peri_readperisection(regions)
subroutine peri_initinputvalues(regions)
subroutine peri_checkparaminput(regions)
subroutine peri_derivedinputvalues(regions)