Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SPLT_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: SPLT_ModInterfaces.F90,v 1.4 2008/12/06 08:44:51 mtcampbe Exp $
34 !
35 ! Copyright: (c) 2001 by the University of Illinois
36 !
37 !******************************************************************************
38 
40 
41  IMPLICIT NONE
42 
43  INTERFACE
44 
45  SUBROUTINE buildversionstring( versionString )
46  CHARACTER(*) :: versionstring
47  END SUBROUTINE buildversionstring
48 
49  SUBROUTINE copypatchdata( regionsNew,patchOld,splitDirection,iReg, &
50  l1off,l2off,l1cells,l2cells )
51  USE modbndpatch, ONLY : t_patch
52  USE moddatastruct, ONLY : t_region
53  INTEGER :: splitdirection, ireg, l1off, l2off, l1cells, l2cells
54  TYPE(t_region), POINTER :: regionsnew(:)
55  TYPE(t_patch), POINTER :: patchold
56  END SUBROUTINE copypatchdata
57 
58  SUBROUTINE rflo_getnodeoffset( region,iLev,iNodeOffset,ijNodeOffset )
59  USE moddatastruct, ONLY : t_region
60  INTEGER :: ilev, inodeoffset, ijnodeoffset
61  TYPE(t_region) :: region
62  END SUBROUTINE rflo_getnodeoffset
63 
64  SUBROUTINE rflo_getdimensdummynodes( region,iLev,idnbeg,idnend,jdnbeg,jdnend, &
65  kdnbeg,kdnend )
66  USE moddatastruct, ONLY : t_region
67  INTEGER :: ilev, idnbeg, idnend, jdnbeg, jdnend, kdnbeg, kdnend
68  TYPE(t_region) :: region
69  END SUBROUTINE rflo_getdimensdummynodes
70 
71  SUBROUTINE rflo_readregiontopology( global,regions )
72  USE moddatastruct, ONLY : t_region
73  USE modglobal, ONLY : t_global
74  TYPE(t_global), POINTER :: global
75  TYPE(t_region), POINTER :: regions(:)
76  END SUBROUTINE rflo_readregiontopology
77 
78  SUBROUTINE rflo_readgridregion( iReg,regions )
79  USE moddatastruct, ONLY : t_region
80  INTEGER :: ireg
81  TYPE(t_region), POINTER :: regions(:)
82  END SUBROUTINE rflo_readgridregion
83 
84  SUBROUTINE splitgrid( splitDirection,regionsOld,regionsNew )
85  USE moddatastruct, ONLY : t_region
86  INTEGER :: splitdirection
87  TYPE(t_region), POINTER :: regionsold(:), regionsnew(:)
88  END SUBROUTINE splitgrid
89 
90  SUBROUTINE splittopology( splitDirection,regionsOld,regionsNew )
91  USE moddatastruct, ONLY : t_region
92  INTEGER :: splitdirection
93  TYPE(t_region), POINTER :: regionsold(:), regionsnew(:)
94  END SUBROUTINE splittopology
95 
96  SUBROUTINE rflo_writegridregion( iReg,regions )
97  USE moddatastruct, ONLY : t_region
98  INTEGER :: ireg
99  TYPE(t_region), POINTER :: regions(:)
100  END SUBROUTINE rflo_writegridregion
101 
102  SUBROUTINE rflo_writeregiontopology( regions )
103  USE moddatastruct, ONLY : t_region
104  TYPE(t_region), POINTER :: regions(:)
105  END SUBROUTINE rflo_writeregiontopology
106 
107  END INTERFACE
108 
109 END MODULE splt_modinterfaces
110 
111 !******************************************************************************
112 !
113 ! RCS Revision history:
114 !
115 ! $Log: SPLT_ModInterfaces.F90,v $
116 ! Revision 1.4 2008/12/06 08:44:51 mtcampbe
117 ! Updated license.
118 !
119 ! Revision 1.3 2008/11/19 22:18:01 mtcampbe
120 ! Added Illinois Open Source License/Copyright
121 !
122 ! Revision 1.2 2004/12/03 03:33:20 wasistho
123 ! rflo_modinterfacessplit to splt_modinterfaces
124 !
125 ! Revision 1.1 2004/12/03 02:41:15 wasistho
126 ! added prefix
127 !
128 ! Revision 1.1 2003/03/20 22:31:12 haselbac
129 ! Initial revision
130 !
131 ! Revision 1.3 2002/09/27 00:57:11 jblazek
132 ! Changed makefiles - no makelinks needed.
133 !
134 ! Revision 1.2 2002/09/05 17:40:22 jblazek
135 ! Variable global moved into regions().
136 !
137 ! Revision 1.1 2002/07/12 21:50:07 jblazek
138 ! Added tool to split single grid into multiple regions.
139 !
140 !******************************************************************************
141 
142 
143 
144 
145 
146 
subroutine rflo_writegridregion(iReg, regions)
**********************************************************************Rocstar Simulation Suite Illinois Rocstar LLC All rights reserved ****Illinois Rocstar LLC IL **www illinoisrocstar com **sales illinoisrocstar com WITHOUT WARRANTY OF ANY **EXPRESS OR INCLUDING BUT NOT LIMITED TO THE WARRANTIES **OF FITNESS FOR A PARTICULAR PURPOSE AND **NONINFRINGEMENT IN NO EVENT SHALL THE CONTRIBUTORS OR **COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES OR OTHER WHETHER IN AN ACTION OF TORT OR **Arising OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE **USE OR OTHER DEALINGS WITH THE SOFTWARE **********************************************************************INTERFACE SUBROUTINE jdnbeg
**********************************************************************Rocstar Simulation Suite Illinois Rocstar LLC All rights reserved ****Illinois Rocstar LLC IL **www illinoisrocstar com **sales illinoisrocstar com WITHOUT WARRANTY OF ANY **EXPRESS OR INCLUDING BUT NOT LIMITED TO THE WARRANTIES **OF FITNESS FOR A PARTICULAR PURPOSE AND **NONINFRINGEMENT IN NO EVENT SHALL THE CONTRIBUTORS OR **COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES OR OTHER WHETHER IN AN ACTION OF TORT OR **Arising OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE **USE OR OTHER DEALINGS WITH THE SOFTWARE **********************************************************************INTERFACE SUBROUTINE idnend
subroutine rflo_getnodeoffset(region, iLev, iNodeOffset, ijNodeOffset)
**********************************************************************Rocstar Simulation Suite Illinois Rocstar LLC All rights reserved ****Illinois Rocstar LLC IL **www illinoisrocstar com **sales illinoisrocstar com WITHOUT WARRANTY OF ANY **EXPRESS OR INCLUDING BUT NOT LIMITED TO THE WARRANTIES **OF FITNESS FOR A PARTICULAR PURPOSE AND **NONINFRINGEMENT IN NO EVENT SHALL THE CONTRIBUTORS OR **COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES OR OTHER WHETHER IN AN ACTION OF TORT OR **Arising OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE **USE OR OTHER DEALINGS WITH THE SOFTWARE **********************************************************************INTERFACE SUBROUTINE jdnend
subroutine rflo_readgridregion(iReg, regions)
**********************************************************************Rocstar Simulation Suite Illinois Rocstar LLC All rights reserved ****Illinois Rocstar LLC IL **www illinoisrocstar com **sales illinoisrocstar com WITHOUT WARRANTY OF ANY **EXPRESS OR INCLUDING BUT NOT LIMITED TO THE WARRANTIES **OF FITNESS FOR A PARTICULAR PURPOSE AND **NONINFRINGEMENT IN NO EVENT SHALL THE CONTRIBUTORS OR **COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES OR OTHER WHETHER IN AN ACTION OF TORT OR **Arising OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE **USE OR OTHER DEALINGS WITH THE SOFTWARE **********************************************************************INTERFACE SUBROUTINE idnbeg
subroutine buildversionstring(versionString)
subroutine splittopology(splitDirection, regionsOld, regionsNew)
subroutine rflo_writeregiontopology(regions)
subroutine rflo_getdimensdummynodes(region, iLev, idnbeg, idnend, jdnbeg, jdnend, kdnbeg, kdnend)
subroutine splitgrid(splitDirection, regionsOld, regionsNew)
subroutine rflo_readregiontopology(global, regions)
subroutine copypatchdata(regionsNew, patchOld, splitDirection, iReg, l1Off, l2Off, l1Cells, l2Cells)
**********************************************************************Rocstar Simulation Suite Illinois Rocstar LLC All rights reserved ****Illinois Rocstar LLC IL **www illinoisrocstar com **sales illinoisrocstar com WITHOUT WARRANTY OF ANY **EXPRESS OR INCLUDING BUT NOT LIMITED TO THE WARRANTIES **OF FITNESS FOR A PARTICULAR PURPOSE AND **NONINFRINGEMENT IN NO EVENT SHALL THE CONTRIBUTORS OR **COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES OR OTHER WHETHER IN AN ACTION OF TORT OR **Arising OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE **USE OR OTHER DEALINGS WITH THE SOFTWARE **********************************************************************INTERFACE SUBROUTINE kdnbeg