Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RFLU_ModInterfacesCommon.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 common subroutines and functions for
26 ! Rocflu.
27 !
28 ! Description: None
29 !
30 ! Notes:
31 ! 1. The subroutines contained in this interface file are common to at least
32 ! two Rocflu modules in the sense that these modules contain subroutines
33 ! with these names, but the actual source is NOT common.
34 !
35 ! ******************************************************************************
36 !
37 ! $Id: RFLU_ModInterfacesCommon.F90,v 1.6 2008/12/06 08:44:22 mtcampbe Exp $
38 !
39 ! Copyright: (c) 2003-2004 by the University of Illinois
40 !
41 ! ******************************************************************************
42 
44 
45  IMPLICIT NONE
46 
47  INTERFACE
48 
49  SUBROUTINE rflu_allocatememory(pRegion)
50  USE moddatastruct, ONLY: t_region
51  TYPE(t_region), POINTER :: pregion
52  END SUBROUTINE rflu_allocatememory
53 
54  SUBROUTINE rflu_allocatememorywrapper(pRegion)
55  USE moddatastruct, ONLY: t_region
56  TYPE(t_region), POINTER :: pregion
57  END SUBROUTINE rflu_allocatememorywrapper
58 
59  SUBROUTINE rflu_deallocatememory(pRegion)
60  USE moddatastruct, ONLY: t_region
61  TYPE(t_region), POINTER :: pregion
62  END SUBROUTINE rflu_deallocatememory
63 
64  SUBROUTINE rflu_deallocatememorywrapper(pRegion)
65  USE moddatastruct, ONLY: t_region
66  TYPE(t_region), POINTER :: pregion
67  END SUBROUTINE rflu_deallocatememorywrapper
68 
69  SUBROUTINE rflu_printheader(global)
70  USE modglobal, ONLY: t_global
71  TYPE(t_global), POINTER :: global
72  END SUBROUTINE rflu_printheader
73 
74  END INTERFACE
75 
76 END MODULE rflu_modinterfacescommon
77 
78 ! ******************************************************************************
79 !
80 ! RCS Revision history:
81 !
82 ! $Log: RFLU_ModInterfacesCommon.F90,v $
83 ! Revision 1.6 2008/12/06 08:44:22 mtcampbe
84 ! Updated license.
85 !
86 ! Revision 1.5 2008/11/19 22:17:33 mtcampbe
87 ! Added Illinois Open Source License/Copyright
88 !
89 ! Revision 1.4 2004/10/19 19:28:04 haselbac
90 ! Adapted interface of RFLU_AllocateMemoryWrapper
91 !
92 ! Revision 1.3 2004/03/19 21:19:21 haselbac
93 ! Removed interfaces for alloc/dealloc routines
94 !
95 ! Revision 1.2 2004/02/26 21:02:01 haselbac
96 ! Added/deleted entries for memory allocation due to PLAG integration
97 !
98 ! Revision 1.1 2003/04/10 14:37:10 haselbac
99 ! Initial revision
100 !
101 ! ******************************************************************************
102 
103 
104 
105 
106 
107 
subroutine rflu_allocatememory(pRegion)
subroutine rflu_allocatememorywrapper(pRegion)
subroutine rflu_deallocatememory(pRegion)
subroutine rflu_printheader(global)
subroutine rflu_deallocatememorywrapper(pRegion)