Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RFLO_InterpolToFinerLevel.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: interpolate solution from coarser to finer grid.
26 !
27 ! Description: none.
28 !
29 ! Input: region = conservative variables of the finer grid.
30 !
31 ! Output: region = conservative variables of the coarser grid.
32 !
33 ! Notes: none.
34 !
35 !******************************************************************************
36 !
37 ! $Id: RFLO_InterpolToFinerLevel.F90,v 1.3 2008/12/06 08:44:27 mtcampbe Exp $
38 !
39 ! Copyright: (c) 2001 by the University of Illinois
40 !
41 !******************************************************************************
42 
43 SUBROUTINE rflo_interpoltofinerlevel( region )
44 
45  USE moddatatypes
46  USE moddatastruct, ONLY : t_region
47  USE modinterfaces, ONLY :
48  USE moderror
49  IMPLICIT NONE
50 
51 ! ... parameters
52  TYPE(t_region) :: region
53 
54 ! ... loop variables
55 
56 
57 ! ... local variables
58 
59 !******************************************************************************
60 
61  CALL registerfunction( region%global,'RFLO_InterpolToFinerLevel',&
62  'RFLO_InterpolToFinerLevel.F90' )
63 
64 
65 
66  CALL deregisterfunction( region%global )
67 
68 END SUBROUTINE rflo_interpoltofinerlevel
69 
70 !******************************************************************************
71 !
72 ! RCS Revision history:
73 !
74 ! $Log: RFLO_InterpolToFinerLevel.F90,v $
75 ! Revision 1.3 2008/12/06 08:44:27 mtcampbe
76 ! Updated license.
77 !
78 ! Revision 1.2 2008/11/19 22:17:38 mtcampbe
79 ! Added Illinois Open Source License/Copyright
80 !
81 ! Revision 1.1 2004/11/29 20:51:39 wasistho
82 ! lower to upper case
83 !
84 ! Revision 1.9 2003/11/20 16:40:39 mdbrandy
85 ! Backing out RocfluidMP changes from 11-17-03
86 !
87 ! Revision 1.5 2003/05/15 02:57:04 jblazek
88 ! Inlined index function.
89 !
90 ! Revision 1.4 2002/09/05 17:40:21 jblazek
91 ! Variable global moved into regions().
92 !
93 ! Revision 1.3 2002/02/21 23:25:06 jblazek
94 ! Blocks renamed as regions.
95 !
96 ! Revision 1.2 2002/01/23 03:51:25 jblazek
97 ! Added low-level time-stepping routines.
98 !
99 ! Revision 1.1 2002/01/16 22:03:35 jblazek
100 ! Added time-stepping routines.
101 !
102 !******************************************************************************
103 
104 
105 
106 
107 
108 
109 
subroutine registerfunction(global, funName, fileName)
Definition: ModError.F90:449
subroutine rflo_interpoltofinerlevel(region)
subroutine deregisterfunction(global)
Definition: ModError.F90:469