Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RFLU_PrintFlowInfoWrapper.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: Wrapper for writing information on flow solution.
26 !
27 ! Description: None.
28 !
29 ! Input:
30 ! pRegion Pointer to region
31 !
32 ! Output: None.
33 !
34 ! Notes: None.
35 !
36 !******************************************************************************
37 !
38 ! $Id: RFLU_PrintFlowInfoWrapper.F90,v 1.4 2008/12/06 08:44:12 mtcampbe Exp $
39 !
40 ! Copyright: (c) 2003 by the University of Illinois
41 !
42 !******************************************************************************
43 
44 SUBROUTINE rflu_printflowinfowrapper(pRegion)
45 
46  USE modglobal, ONLY: t_global
47  USE moddatatypes
48  USE modparameters
49  USE moderror
50  USE moddatastruct, ONLY: t_region
51  USE modmpi
52 
54 
55 #ifdef SPEC
57 #endif
58 
59  IMPLICIT NONE
60 
61 ! ******************************************************************************
62 ! Declarations and definitions
63 ! ******************************************************************************
64 
65 ! ==============================================================================
66 ! Local variables
67 ! ==============================================================================
68 
69  TYPE(t_global), POINTER :: global
70  CHARACTER(CHRLEN) :: rcsidentstring
71 
72 ! ==============================================================================
73 ! Arguments
74 ! ==============================================================================
75 
76  TYPE(t_region), POINTER :: pregion
77 
78 ! ******************************************************************************
79 ! Start
80 ! ******************************************************************************
81 
82  rcsidentstring = '$RCSfile: RFLU_PrintFlowInfoWrapper.F90,v $ $Revision: 1.4 $'
83 
84  global => pregion%global
85 
86  CALL registerfunction(global,'RFLU_PrintFlowInfoWrapper',&
87  'RFLU_PrintFlowInfoWrapper.F90')
88 
89 ! ******************************************************************************
90 ! Print flow info
91 ! ******************************************************************************
92 
93 ! ==============================================================================
94 ! Mixture
95 ! ==============================================================================
96 
97  CALL rflu_printflowinfo(pregion)
98 
99 ! ==============================================================================
100 ! Physical modules
101 ! ==============================================================================
102 
103 #ifdef SPEC
104  IF ( global%specUsed .EQV. .true. ) THEN
105  CALL spec_rflu_printflowinfo(pregion)
106  END IF ! global%specUsed
107 #endif
108 
109 ! ******************************************************************************
110 ! End
111 ! ******************************************************************************
112 
113  CALL deregisterfunction(global)
114 
115 END SUBROUTINE rflu_printflowinfowrapper
116 
117 
118 ! ******************************************************************************
119 !
120 ! RCS Revision history:
121 !
122 ! $Log: RFLU_PrintFlowInfoWrapper.F90,v $
123 ! Revision 1.4 2008/12/06 08:44:12 mtcampbe
124 ! Updated license.
125 !
126 ! Revision 1.3 2008/11/19 22:17:25 mtcampbe
127 ! Added Illinois Open Source License/Copyright
128 !
129 ! Revision 1.2 2004/07/28 15:29:19 jferry
130 ! created global variable for spec use
131 !
132 ! Revision 1.1 2003/11/25 21:02:58 haselbac
133 ! Initial revision
134 !
135 ! ******************************************************************************
136 
137 
138 
139 
140 
141 
142 
subroutine registerfunction(global, funName, fileName)
Definition: ModError.F90:449
subroutine rflu_printflowinfo(pRegion)
subroutine spec_rflu_printflowinfo(pRegion)
subroutine deregisterfunction(global)
Definition: ModError.F90:469
subroutine rflu_printflowinfowrapper(pRegion)