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