Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SPEC_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: SPEC_ModInterfaces.F90,v 1.5 2008/12/06 08:44:40 mtcampbe Exp $
34 !
35 ! Copyright: (c) 2001-2003 by the University of Illinois
36 !
37 !******************************************************************************
38 
40 
41  IMPLICIT NONE
42 
43  INTERFACE
44 
45  SUBROUTINE spec_checkuserinput(regions)
46  USE moddatastruct, ONLY: t_region
47  TYPE(t_region), DIMENSION(:), POINTER :: regions
48  END SUBROUTINE spec_checkuserinput
49 
50  SUBROUTINE spec_derivedinputvalues(regions)
51  USE moddatastruct, ONLY: t_region
52  TYPE(t_region), DIMENSION(:), POINTER :: regions
53  END SUBROUTINE spec_derivedinputvalues
54 
55  SUBROUTINE spec_eqeulcorrpatch(pRegion,pPatch,iSpec)
56  USE moddatastruct, ONLY : t_region
57  USE modbndpatch, ONLY: t_patch
58  TYPE(t_region), POINTER :: pregion
59  TYPE(t_patch), POINTER :: ppatch
60  INTEGER, INTENT(IN) :: ispec
61  END SUBROUTINE spec_eqeulcorrpatch
62 
63  SUBROUTINE spec_initinputvalues(regions)
64  USE moddatastruct, ONLY: t_region
65  TYPE(t_region), DIMENSION(:), POINTER :: regions
66  END SUBROUTINE spec_initinputvalues
67 
68  SUBROUTINE spec_initinputvaluesspectype(region,iSpecType)
69  USE moddatastruct, ONLY: t_region
70  INTEGER, INTENT(IN) :: ispectype
71  TYPE(t_region) :: region
72  END SUBROUTINE spec_initinputvaluesspectype
73 
74  SUBROUTINE spec_readinputfile(regions)
75  USE moddatastruct, ONLY: t_region
76  TYPE(t_region), DIMENSION(:), POINTER :: regions
77  END SUBROUTINE spec_readinputfile
78 
79  SUBROUTINE spec_readspecsection(regions)
80  USE moddatastruct, ONLY: t_region
81  TYPE(t_region), DIMENSION(:), POINTER :: regions
82  END SUBROUTINE spec_readspecsection
83 
84  SUBROUTINE spec_readspectypesection(regions,iSpecType)
85  USE moddatastruct, ONLY: t_region
86  INTEGER :: ispectype
87  TYPE(t_region), DIMENSION(:), POINTER :: regions
88  END SUBROUTINE spec_readspectypesection
89 
90  END INTERFACE
91 
92 END MODULE spec_modinterfaces
93 
94 !******************************************************************************
95 !
96 ! RCS Revision history:
97 !
98 ! $Log: SPEC_ModInterfaces.F90,v $
99 ! Revision 1.5 2008/12/06 08:44:40 mtcampbe
100 ! Updated license.
101 !
102 ! Revision 1.4 2008/11/19 22:17:52 mtcampbe
103 ! Added Illinois Open Source License/Copyright
104 !
105 ! Revision 1.3 2004/07/30 22:47:37 jferry
106 ! Implemented Equilibrium Eulerian method for Rocflu
107 !
108 ! Revision 1.2 2003/11/25 21:08:33 haselbac
109 ! Added interfaces
110 !
111 ! Revision 1.1.1.1 2001/12/03 21:44:04 jblazek
112 ! Import of RocfluidMP
113 !
114 !******************************************************************************
115 
116 
117 
118 
119 
120 
subroutine spec_checkuserinput(regions)
subroutine spec_derivedinputvalues(regions)
subroutine spec_readspectypesection(regions, iSpecType)
subroutine spec_initinputvaluesspectype(region, iSpecType)
subroutine spec_readinputfile(regions)
subroutine spec_readspecsection(regions)
subroutine spec_eqeulcorrpatch(pRegion, pPatch, iSpec)
subroutine spec_initinputvalues(regions)