Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RFLO_CopyMatrixDummy.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: copy a matrix from the boundary cells to the dummy cells.
26 !
27 ! Description: file contains the following subroutines:
28 !
29 ! - RFLO_copyMatrixPatches = copy for patches
30 ! - RFLO_copyMatrixEdges = copy for edge cells
31 ! - RFLO_copyMatrixCorners = copy for corner cells
32 !
33 ! Input: iLev = grid level
34 ! region = dimensions of current region
35 ! mat = data to be copied
36 !
37 ! Output: mat = data copied to dummy cells.
38 !
39 ! Notes: it is assumed that the first dimension of the matrix is to be
40 ! copied completely. No averaging is done. Thus, these routines are
41 ! primarily intended to copy geometrical quantities rather than
42 ! flow variables. All edge and corner cells are copied, regardless
43 ! of their connection to other regions. Routines are used now to copy
44 ! the spectral radii.
45 !
46 !******************************************************************************
47 !
48 ! $Id: RFLO_CopyMatrixDummy.F90,v 1.3 2008/12/06 08:44:26 mtcampbe Exp $
49 !
50 ! Copyright: (c) 2001 by the University of Illinois
51 !
52 !******************************************************************************
53 
54 SUBROUTINE rflo_copymatrixpatches( iLev,region,mat )
55 
56  USE moddatatypes
57  USE modbndpatch, ONLY : t_patch
58  USE moddatastruct, ONLY : t_region
61  USE moderror
62  USE modparameters
63  IMPLICIT NONE
64 
65 #include "Indexing.h"
66 
67 ! ... parameters
68  TYPE(t_region) :: region
69 
70  INTEGER :: ilev
71 
72  REAL(RFREAL), POINTER :: mat(:,:)
73 
74 ! ... loop variables
75  INTEGER :: ipatch, i, j, k, idum
76 
77 ! ... local variables
78  INTEGER :: ibeg, iend, jbeg, jend, kbeg, kend, idir, jdir, kdir
79  INTEGER :: icoff, ijcoff, ijkcell, ijkdum, bctype
80 
81  TYPE(t_patch), POINTER :: patch
82 
83 !******************************************************************************
84 
85  CALL registerfunction( region%global,'RFLO_copyMatrixPatches',&
86  'RFLO_CopyMatrixDummy.F90' )
87 
88 ! loop over patches (all but inter-region and periodic boundaries)
89 
90  CALL rflo_getcelloffset( region,ilev,icoff,ijcoff )
91 
92  DO ipatch=1,region%nPatches
93  patch => region%levels(ilev)%patches(ipatch)
94  bctype = patch%bcType
95  IF ((bctype<bc_regionconf .OR. bctype>bc_regionconf+bc_range) .AND.&
96  (bctype<bc_regionint .OR. bctype>bc_regionint +bc_range) .AND.&
97  (bctype<bc_regnonconf .OR. bctype>bc_regnonconf+bc_range) .AND.&
98  (bctype<bc_tra_peri .OR. bctype>bc_tra_peri +bc_range) .AND.&
99  (bctype<bc_rot_peri .OR. bctype>bc_rot_peri +bc_range)) THEN
100  CALL rflo_getpatchindices( region,patch,ilev, &
101  ibeg,iend,jbeg,jend,kbeg,kend )
103  DO idum=1,region%nDumCells
104  DO k=kbeg,kend
105  DO j=jbeg,jend
106  DO i=ibeg,iend
107  ijkcell = indijk(i,j,k,icoff,ijcoff)
108  ijkdum = indijk(i-idum*idir,j-idum*jdir,k-idum*kdir,icoff,ijcoff)
109  mat(:,ijkdum) = mat(:,ijkcell)
110  ENDDO ! i
111  ENDDO ! j
112  ENDDO ! k
113  ENDDO ! idum
114  ENDIF ! bcType
115  ENDDO ! iPatch
116 
117 ! finalize
118 
119  CALL deregisterfunction( region%global )
120 
121 END SUBROUTINE rflo_copymatrixpatches
122 
123 ! #############################################################################
124 ! #############################################################################
125 
126 SUBROUTINE rflo_copymatrixedges( iLev,region,mat )
127 
128  USE moddatatypes
129  USE moddatastruct, ONLY : t_region
132  USE moderror
133  USE modparameters
134  IMPLICIT NONE
135 
136 #include "Indexing.h"
137 
138 ! ... parameters
139  TYPE(t_region) :: region
140 
141  INTEGER :: ilev
142 
143  REAL(RFREAL), POINTER :: mat(:,:)
144 
145 ! ... loop variables
146  INTEGER :: i, j, k, iedge
147 
148 ! ... local variables
149  INTEGER :: ipcbeg, ipcend, jpcbeg, jpcend, kpcbeg, kpcend
150  INTEGER :: ibeg, iend, jbeg, jend, kbeg, kend
151  INTEGER :: icoff, ijcoff, ijkcell, ijkdum
152 
153 !******************************************************************************
154 
155  CALL registerfunction( region%global,'RFLO_copyMatrixEdges',&
156  'RFLO_CopyMatrixDummy.F90' )
157 
158 ! loop over edge cells without source region
159 ! or with multiple source regions
160 
161  CALL rflo_getdimensphys( region,ilev,ipcbeg,ipcend, &
162  jpcbeg,jpcend,kpcbeg,kpcend )
163  CALL rflo_getcelloffset( region,ilev,icoff,ijcoff )
164 
165  DO iedge=1,12
166  CALL rflo_getedgecellsindices( region,ilev,iedge, &
167  ibeg,iend,jbeg,jend,kbeg,kend )
168  DO k=kbeg,kend
169  DO j=jbeg,jend
170  DO i=ibeg,iend
171  IF (iedge == 1) ijkcell = indijk(ipcbeg,jpcbeg,k,icoff,ijcoff)
172  IF (iedge == 2) ijkcell = indijk(ipcbeg,j,kpcend,icoff,ijcoff)
173  IF (iedge == 3) ijkcell = indijk(ipcbeg,jpcend,k,icoff,ijcoff)
174  IF (iedge == 4) ijkcell = indijk(ipcbeg,j,kpcbeg,icoff,ijcoff)
175  IF (iedge == 5) ijkcell = indijk(ipcend,jpcbeg,k,icoff,ijcoff)
176  IF (iedge == 6) ijkcell = indijk(ipcend,j,kpcend,icoff,ijcoff)
177  IF (iedge == 7) ijkcell = indijk(ipcend,jpcend,k,icoff,ijcoff)
178  IF (iedge == 8) ijkcell = indijk(ipcend,j,kpcbeg,icoff,ijcoff)
179  IF (iedge == 9) ijkcell = indijk(i,jpcbeg,kpcbeg,icoff,ijcoff)
180  IF (iedge == 10) ijkcell = indijk(i,jpcbeg,kpcend,icoff,ijcoff)
181  IF (iedge == 11) ijkcell = indijk(i,jpcend,kpcbeg,icoff,ijcoff)
182  IF (iedge == 12) ijkcell = indijk(i,jpcend,kpcend,icoff,ijcoff)
183  ijkdum = indijk(i,j,k,icoff,ijcoff)
184  mat(:,ijkdum) = mat(:,ijkcell)
185  ENDDO ! i
186  ENDDO ! j
187  ENDDO ! k
188  ENDDO ! iedge
189 
190 ! finalize
191 
192  CALL deregisterfunction( region%global )
193 
194 END SUBROUTINE rflo_copymatrixedges
195 
196 ! #############################################################################
197 ! #############################################################################
198 
199 SUBROUTINE rflo_copymatrixcorners( iLev,region,mat )
200 
201  USE moddatatypes
202  USE moddatastruct, ONLY : t_region
207  USE moderror
208  USE modparameters
209  IMPLICIT NONE
210 
211 #include "Indexing.h"
212 
213 ! ... parameters
214  TYPE(t_region) :: region
215 
216  INTEGER :: ilev
217 
218  REAL(RFREAL), POINTER :: mat(:,:)
219 
220 ! ... loop variables
221  INTEGER :: i, j, k, icorn
222 
223 ! ... local variables
224  INTEGER :: ipcbeg, ipcend, jpcbeg, jpcend, kpcbeg, kpcend
225  INTEGER :: ibeg, iend, jbeg, jend, kbeg, kend
226  INTEGER :: icoff, ijcoff, ijkcell, ijkdum
227 
228 !******************************************************************************
229 
230  CALL registerfunction( region%global,'RFLO_copyMatrixCorners',&
231  'RFLO_CopyMatrixDummy.F90' )
232 
233 ! loop over corner cells without source region
234 ! or with multiple source regions
235 
236  CALL rflo_getdimensphys( region,ilev,ipcbeg,ipcend, &
237  jpcbeg,jpcend,kpcbeg,kpcend )
238  CALL rflo_getcelloffset( region,ilev,icoff,ijcoff )
239 
240  DO icorn=1,8
241  CALL rflo_getcornercellsindices( region,ilev,icorn, &
242  ibeg,iend,jbeg,jend,kbeg,kend )
243  DO k=kbeg,kend
244  DO j=jbeg,jend
245  DO i=ibeg,iend
246  IF (icorn == 1) ijkcell = indijk(ipcbeg,jpcbeg,kpcbeg,icoff,ijcoff)
247  IF (icorn == 2) ijkcell = indijk(ipcbeg,jpcbeg,kpcend,icoff,ijcoff)
248  IF (icorn == 3) ijkcell = indijk(ipcbeg,jpcend,kpcend,icoff,ijcoff)
249  IF (icorn == 4) ijkcell = indijk(ipcbeg,jpcend,kpcbeg,icoff,ijcoff)
250  IF (icorn == 5) ijkcell = indijk(ipcend,jpcbeg,kpcbeg,icoff,ijcoff)
251  IF (icorn == 6) ijkcell = indijk(ipcend,jpcbeg,kpcend,icoff,ijcoff)
252  IF (icorn == 7) ijkcell = indijk(ipcend,jpcend,kpcend,icoff,ijcoff)
253  IF (icorn == 8) ijkcell = indijk(ipcend,jpcend,kpcbeg,icoff,ijcoff)
254  ijkdum = indijk(i,j,k,icoff,ijcoff)
255  mat(:,ijkdum) = mat(:,ijkcell)
256  ENDDO ! i
257  ENDDO ! j
258  ENDDO ! k
259  ENDDO ! icorn
260 
261 ! finalize
262 
263  CALL deregisterfunction( region%global )
264 
265 END SUBROUTINE rflo_copymatrixcorners
266 
267 !******************************************************************************
268 !
269 ! RCS Revision history:
270 !
271 ! $Log: RFLO_CopyMatrixDummy.F90,v $
272 ! Revision 1.3 2008/12/06 08:44:26 mtcampbe
273 ! Updated license.
274 !
275 ! Revision 1.2 2008/11/19 22:17:37 mtcampbe
276 ! Added Illinois Open Source License/Copyright
277 !
278 ! Revision 1.1 2004/11/29 20:51:38 wasistho
279 ! lower to upper case
280 !
281 ! Revision 1.16 2003/11/20 16:40:39 mdbrandy
282 ! Backing out RocfluidMP changes from 11-17-03
283 !
284 ! Revision 1.12 2003/05/15 02:57:03 jblazek
285 ! Inlined index function.
286 !
287 ! Revision 1.11 2003/02/03 19:20:47 jblazek
288 ! Added treatment of edge and corner cells for one processor.
289 !
290 ! Revision 1.10 2002/09/27 00:57:10 jblazek
291 ! Changed makefiles - no makelinks needed.
292 !
293 ! Revision 1.9 2002/09/05 17:40:21 jblazek
294 ! Variable global moved into regions().
295 !
296 ! Revision 1.8 2002/07/12 21:50:07 jblazek
297 ! Added tool to split single grid into multiple regions.
298 !
299 ! Revision 1.7 2002/07/05 23:20:46 jblazek
300 ! Corrected bug in perfgasDependentVars.F90; did some cosmetics.
301 !
302 ! Revision 1.6 2002/03/18 23:11:33 jblazek
303 ! Finished multiblock and MPI.
304 !
305 ! Revision 1.5 2002/02/21 23:25:06 jblazek
306 ! Blocks renamed as regions.
307 !
308 ! Revision 1.4 2002/02/01 00:00:24 jblazek
309 ! Edge and corner cells defined for each level.
310 !
311 ! Revision 1.3 2002/01/31 20:56:30 jblazek
312 ! Added basic boundary conditions.
313 !
314 ! Revision 1.2 2002/01/28 23:55:22 jblazek
315 ! Added flux computation (central scheme).
316 !
317 ! Revision 1.1 2002/01/23 03:51:25 jblazek
318 ! Added low-level time-stepping routines.
319 !
320 !******************************************************************************
321 
322 
323 
324 
325 
326 
327 
328 
329 
subroutine rflo_getedgecellsindices(region, iLev, iedge, iebeg, ieend, jebeg, jeend, kebeg, keend)
**********************************************************************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 ibeg
subroutine rflo_getpatchdirection(patch, idir, jdir, kdir)
j indices k indices k
Definition: Indexing.h:6
**********************************************************************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 kpcbeg
subroutine registerfunction(global, funName, fileName)
Definition: ModError.F90:449
subroutine rflo_getpatchindices(region, patch, iLev, ibeg, iend, jbeg, jend, kbeg, kend)
**********************************************************************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 jpcbeg
**********************************************************************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 ipcend
subroutine rflo_copymatrixpatches(iLev, region, mat)
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 jdir
subroutine rflo_getdimensdummy(region, iLev, idcbeg, idcend, jdcbeg, jdcend, kdcbeg, kdcend)
Definition: patch.h:74
**********************************************************************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 knode iend
subroutine rflo_copymatrixcorners(iLev, region, mat)
**********************************************************************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 ipcbeg
subroutine rflo_copymatrixedges(iLev, region, mat)
blockLoc i
Definition: read.cpp:79
**********************************************************************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 idir
subroutine rflo_getcelloffset(region, iLev, iCellOffset, ijCellOffset)
subroutine rflo_getcornercellsindices(region, iLev, icorner, icbeg, icend, jcbeg, jcend, kcbeg, kcend)
j indices j
Definition: Indexing.h:6
**********************************************************************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 jpcend
subroutine volumehexa(xyzNodes, faceVecs, volume)
**********************************************************************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 knode jend
**********************************************************************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 kdir
**********************************************************************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 knode jbeg
**********************************************************************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 knode kbeg
subroutine deregisterfunction(global)
Definition: ModError.F90:469
subroutine rflo_getdimensphys(region, iLev, ipcbeg, ipcend, jpcbeg, jpcend, kpcbeg, kpcend)